how to change pedia

elctry4u

Chieftain
Joined
Jan 9, 2006
Messages
1
how do you change the pedia so that you can get more hammers for instance from iron or more food from wheat. thanks, dave.
 
elctry4u said:
how do you change the pedia so that you can get more hammers for instance from iron or more food from wheat. thanks, dave.

That's not going to be in the pedia. It will be in the Assets/XML files. From work I can't locate the exact files, but changing the pedia will just change the description, not the absolute values.
 
assets/xml/terrain/civ4bonusinfo.xml
change this:
<BonusInfo>
<Type>BONUS_IRON</Type>
...
<YieldChanges>
<iYieldChange>0</iYieldChange>
<iYieldChange>1</iYieldChange>
<iYieldChange>0</iYieldChange>
</YieldChanges>
to
<BonusInfo>
<Type>BONUS_IRON</Type>
...
<YieldChanges>
<iYieldChange>0</iYieldChange> food
<iYieldChange>2</iYieldChange>hammers
<iYieldChange>0</iYieldChange>commerce/gold
</YieldChanges>
 
Back
Top Bottom