Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
INSERT OR IGNORE INTO Modifiers
(ModifierId, ModifierType, SubjectRequirementSetId)
VALUES ('ORACLE_PLATI_GREAT_SOVEREIGN_POINTS', 'MODIFIER_SINGLE_CITY_DISTRICTS_ADJUST_GREAT_PERSON_POINTS', 'DISTRICT_IS_GOVERNMENT');
INSERT OR IGNORE INTO ModifierArguments
(ModifierId, Name, Value)
VALUES ('ORACLE_PLATI_GREAT_SOVEREIGN_POINTS', 'GreatPersonClassType',
'GREAT_PERSON_CLASS_GreatSovereigns'),
('ORACLE_PLATI_GREAT_SOVEREIGN_POINTS', 'Amount',
2);
INSERT OR IGNORE INTO BuildingModifiers
(BuildingType, ModifierId)
VALUES ('BUILDING_ORACLE', 'ORACLE_PLATI_GREAT_SOVEREIGN_POINTS');
Of course, how the original modder wants to define the entries if up to Plati to decide.
Not gonna list setting up the custom Requirement like your post above bc of space constraints, but you'll get the idea how to code it properly if you know SQL ;-)
Source: Code Snippet from JNR's Great Explorer mod, just changed to adapt for Great Sovereigns (the same could be changed for Great Entertainers from Plati's mod as well)