[BNW] Which XML file to edit culture victory thereshold

Arkatakor

King
Joined
Mar 11, 2006
Messages
619
Location
Stockholm, Sweden
Since I play mods that extend into the future, culture victories come too soon. I'd like to double the amount of culture required for a civ to be influential over another civ. Anyone know which value in which XML do I need to edit?
 
If I am not mistaken these from table <Defines>, found at
C:\Program Files (x86)\Steam\SteamApps\common\Sid Meier's Civilization V\assets\DLC\Expansion2\Gameplay\XML/GlobalDefines.xml
determine the BNW culture-victory levels, but they are not hard values they are % relationships between a player's total accumulated Tourism and the other player's total accumulated Culture.

Code:
  <Row Name="CULTURE_LEVEL_EXOTIC">
   <Value>10</Value>
  </Row>
  <Row Name="CULTURE_LEVEL_FAMILIAR">
   <Value>30</Value>
  </Row>
  <Row Name="CULTURE_LEVEL_POPULAR">
   <Value>60</Value>
  </Row>
  <Row Name="CULTURE_LEVEL_INFLUENTIAL">
   <Value>100</Value>
  </Row>
  <Row Name="CULTURE_LEVEL_DOMINANT">
   <Value>200</Value>
  </Row>
 
Thanks LeeS; thats exactly what I was looking for. Doubling those numbers should achieve what i'm trying to get at (I play with future worlds and someone nearly won a cultural victory as soon as I entered the information era).
 
Top Bottom