Hello, my knowledge of modding through XML is basic and I was wondering if anyone could tell me where my mistake is.
I'm trying to rename the fountain of youth and edit what the tile tield is. The tile yield is fine but the name still appears in game as fountain of youth. Any idea where that is messed up in my XML?
I'm also having issues with removing the altitude training promotion from the new Mt. Kilimanjaro natural wonder (but didn't have issues with removing youth's promotion).
Help me please!
Spoiler :
<?xml version="1.0" encoding="utf-8"?>
<GameData>
<Features>
<Update>
<Where Type="FEATURE_FOUNTAIN_YOUTH"/>
<Set InBorderHappiness="3" AdjacentUnitFreePromotion="NULL" Help="NULL"/>
</Update>
<Update>
<Where Type="FEATURE_EL_DORADO"/>
<Set InBorderHappiness="3" FirstFinderGold="0" Help="NULL"/>
</Update>
<Update>
<Where Type="FEATURE_MT_KILIMANJARO"/>
<AdjacentUnitFreePromotion="NULL" Help="NULL"/>
</Update>
<Update>
<Set Description="TXT_KEY_FEATURE_ANGEL_FALLS" InBorderHappiness="2">
<Where TYPE="FEATURE_FOUNTAIN_YOUTH"/>
</Update>
</Features>
<Language_en_US>
<Row Tag="TXT_KEY_FEATURE_ANGEL_FALLS">
<Text>Angel Falls</Text>
</Row>
<Row Tag="TXT_KEY_CIV5_FEATURES_ANGEL_FALLS_TEXT">
<Text>
The world's highest uninterrupted waterfall, with a height of 3,212 ft and a plnuge of 2,648 ft.
The waterfall drops over the edge of the Auyantepui mountain in the Canaima National Park.
</Text>
</Row>
</Language_en_US>
<Feature_YieldChanges>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<Row FeatureType="FEATURE_FOUNTAIN_YOUTH">
<YieldType>YIELD_FOOD</YieldType>
<Yield>4</Yield>
</Row>
</Feature_YieldChanges>
</GameData>
<GameData>
<Features>
<Update>
<Where Type="FEATURE_FOUNTAIN_YOUTH"/>
<Set InBorderHappiness="3" AdjacentUnitFreePromotion="NULL" Help="NULL"/>
</Update>
<Update>
<Where Type="FEATURE_EL_DORADO"/>
<Set InBorderHappiness="3" FirstFinderGold="0" Help="NULL"/>
</Update>
<Update>
<Where Type="FEATURE_MT_KILIMANJARO"/>
<AdjacentUnitFreePromotion="NULL" Help="NULL"/>
</Update>
<Update>
<Set Description="TXT_KEY_FEATURE_ANGEL_FALLS" InBorderHappiness="2">
<Where TYPE="FEATURE_FOUNTAIN_YOUTH"/>
</Update>
</Features>
<Language_en_US>
<Row Tag="TXT_KEY_FEATURE_ANGEL_FALLS">
<Text>Angel Falls</Text>
</Row>
<Row Tag="TXT_KEY_CIV5_FEATURES_ANGEL_FALLS_TEXT">
<Text>
The world's highest uninterrupted waterfall, with a height of 3,212 ft and a plnuge of 2,648 ft.
The waterfall drops over the edge of the Auyantepui mountain in the Canaima National Park.
</Text>
</Row>
</Language_en_US>
<Feature_YieldChanges>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<Row FeatureType="FEATURE_FOUNTAIN_YOUTH">
<YieldType>YIELD_FOOD</YieldType>
<Yield>4</Yield>
</Row>
</Feature_YieldChanges>
</GameData>
I'm trying to rename the fountain of youth and edit what the tile tield is. The tile yield is fine but the name still appears in game as fountain of youth. Any idea where that is messed up in my XML?
I'm also having issues with removing the altitude training promotion from the new Mt. Kilimanjaro natural wonder (but didn't have issues with removing youth's promotion).
Help me please!
