Jabarto
Emperor
I'm making a mod that replaces the Greek "Hellenic League" trait with a custom one. Thing is, Firaxis seems to have taken great pains to ensure that modders have to claw through hell to make even the most rudimentary mods function. So rather than spend yet another hour staring at my XML files, I'm just going to post them here and see if someone more knowledgeable than I can isolate the problem. I really would appreciate any help.
Spoiler :
Code:
<GameData>
<Leader_Traits>
<Update>
<Set TraitType="TRAIT_GREEK_PHILOSOPHY"/>
<Where LeaderType="LEADER_ALEXANDER"/>
</Update>
</Leader_Traits>
</GameData>
Spoiler :
Code:
<GameData>
<Traits>
<Row>
<Type>TRAIT_GREEK_PHILOSOPHY</Type>
<Description>TXT_KEY_TRAIT_GREEK_PHILOSOPHY</Description>
<ShortDescription>TXT_KEY_TRAIT_GREEK_PHILOSOPHY_SHORT</ShortDescription>
<PolicyCostModifier>-20</PolicyCostModifier>
</Row>
</Traits>
</GameData>
Spoiler :
Code:
<GameData>
<Language_en_US>
<Row Tag="TXT_KEY_TRAIT_GREEK_PHILOSOPHY">
<Text>Reduces the culture cost of policies by 20%</Text>
</Row>
<Row Tag="TXT_KEY_TRAIT_GREEK_PHILOSOPHY_SHORT">
<Text>Greek Philosophy</Text>
</Row>
</Language_en_US>
</GameData>