Ateleiotos
Chieftain
- Joined
- Nov 4, 2010
- Messages
- 5
I'm trying to add an early era process for converting Production into Food and the xml I have isn't working. It's not showing up in the tech tree nor in the city build window. I'm hoping it's something simple in the code that I missed and not some quirk of the game that prevents a new process from being added.
Also, I don't know the icon atlases at all and I'm hoping someone can point me to a food icon of the appropriate size for use with this new process.
Thank you!
Code:
[SIZE="2"]<GameData>
<Processes>
<Row>
<Type>PROCESS_FOOD</Type>
<Description>TXT_KEY_PROCESS_FOOD</Description>
<Help>TXT_KEY_PROCESS_FOOD_HELP</Help>
<Strategy>TXT_KEY_PROCESS_FOOD_STRATEGY</Strategy>
<TechPrereq>TECH_POTTERY</TechPrereq>
<PortaitIndex>7</PortaitIndex>
<IconAtlas>CITIZEN_ATLAS</IconAtlas>
</Row>
</Processes>
<Process_ProductionYields>
<Row>
<ProcessType>PROCESS_FOOD</ProcessType>
<YieldType>YIELD_FOOD</YieldType>
<Yield>25</Yield>
</Row>
</Process_ProductionYields>
<Language_en_US>
<Row Tag="TXT_KEY_PROCESS_FOOD">
<Text>Food</Text>
</Row>
<Row Tag="TXT_KEY_PROCESS_FOOD_STRATEGY">
<Text>Process Food Strategy</Text>
</Row>
<Row Tag="TXT_KEY_PROCESS_FOOD_HELP">
<Text>Converts [ICON_PRODUCTION] production into food.</Text>
</Row>
</Language_en_US>
</GameData>[/SIZE]
Also, I don't know the icon atlases at all and I'm hoping someone can point me to a food icon of the appropriate size for use with this new process.
Thank you!