[R&F] Civ Specific Wonders??

Nahimi

Chieftain
Joined
Feb 13, 2018
Messages
17
Does anyone have enough modding ability to create an immersion mod which stops civs from building wonders that do not reflect the historical truth. Rome building the Statue of Liberty...

Or maybe someone could tell me what xml file I should modify to do myself?
 
Who will built it? One civ only?

Create a new trait for the civ you want and add the same trait to the wonder you want, that way the only civ that can built it is that one.

You can see my mod, I do it all the time.

Example

Spoiler :

Code:
<GameInfo>
   <Types>
      <Row Type="TRAIT_CIVILIZATION_MYWONDER" Kind="KIND_TRAIT" />
    </Types>
    <CivilizationTraits>
      <Row CivilizationType="CIVILIZATION_MYCIV" TraitType="TRAIT_CIVILIZATION_MYWONDER" />
    </CivilizationTraits>
    <Traits>
      <Row TraitType="TRAIT_CIVILIZATION_MYWONDER" Name="LOC_BUILDING_MYWONDER_NAME" Description="LOC_BUILDING_MYWONDER_DESCRIPTION" />
    </Traits>
    <Buildings>
      <Update>
        <Where BuildingType="BUILDING_MYWONDER" />
        <Set TraitType="TRAIT_CIVILIZATION_MYWONDER" />
      </Update>
    </Buildings>
  </GameInfo>
Where myciv its you civ, example AMERICA
And Mywonder is your wonder, example STATUE_OF_LIBERTY
 
Last edited:
Back
Top Bottom