ThunderMohawk
Chieftain
- Joined
- Sep 16, 2012
- Messages
- 19
Hello. So I have tried to make a building and am hoping for some help. I read a guide and got templates. So I tried to make a "TOWN CENTER." This is what I got. It didn't appear which isn't too surprising but I'm confused as to how to get it up and working. Thanks for any help. Oh, also I noticed there are certain settings you don't have to include like prereqTech and building types needed. But I would like for this building to need Pottery(just to test the option). And I'm unsure if taking away teh building type and class needed part will screw things up so I'll leave that.
Code:
<GameData>
<BuildingClasses>
<Row>
<Type>BUILDINGCLASS_TOWN_CENTER</Type>
<DefaultBuilding>BUILDING_TOWN_CENTER</DefaultBuilding>
<Description>TXT_KEY_BUILDING_TOWN_CENTER</Description>
</Row>
</BuildingClasses>
<Buildings>
<Row>
<Type>BUILDING_TOWN_CENTER</Type>
<BuildingClass>BUILDINGCLASS_TOWN_CENTER</BuildingClass>
<Cost>80</Cost>
<GoldMaintenance>2</GoldMaintenance>
<Description>TXT_KEY_BUILDING_TOWN_CENTER</Description>
<Civilopedia>TXT_KEY_CIV5_BUILDINGS_TOWN_CENTER_TEXT</Civilopedia>
<Strategy>TXT_KEY_BUILDING_TOWN_CENTER_STRATEGY</Strategy>
<PrereqTech>TECH_POTTERY</PrereqTech>
<Help>TXT_KEY_BUILDING_TOWN_CENTER_HELP</Help>
<ArtDefineTag>ART_DEF_BUILDING_TOWN_CENTER</ArtDefineTag>
<MinAreaSize>-1</MinAreaSize>
<Happiness>2</Happiness>
<ConquestProb>66</ConquestProb>
<HurryCostModifier>25</HurryCostModifier>
<NeverCapture>true</NeverCapture>
<IconAtlas>BW_ATLAS_1</IconAtlas>
<PortraitIndex>19</PortraitIndex>
</Row>
</Buildings>
<Building_ClassesNeededInCity>
<Row>
<BuildingType>BUILDING_TOWN_CENTER</BuildingType>
<BuildingClassType>BUILDINGCLASS_MONUMENT</BuildingClassType>
</Row>
</Building_ClassesNeededInCity>
<Building_YieldChanges>
<Row>
<BuildingType>BUILDING_TOWN_CENTER</BuildingType>
<YieldType>YIELD_GOLD</YieldType>
<Yield>2</Yield>
</Row>
</Building_YieldChanges>
<Building_Flavors>
<Row>
<BuildingType>BUILDING_TOWN_CENTER</BuildingType>
<FlavorType>FLAVOR_HAPPINESS</FlavorType>
<Flavor>10</Flavor>
</Row>
</Building_Flavors>
<Language_en_US>
<Row Tag="TXT_KEY_BUILDING_TOWN_CENTER">
<Text>The TOWN_CENTER</Text>
</Row>
<Row Tag="TXT_KEY_BUILDING_TOWN_CENTER_HELP">
<Text>The Town Center adds +2 [ICON_HAPPINESS] Happiness, and +2[ICON_GOLD] Gold.</Text>
</Row>
<Row Tag="TXT_KEY_BUILDING_TOWN_CENTER_STRATEGY">
<Text>
The Town Center provides a boost to your [ICON_HAPPINESS] Happiness and [ICON_GOLD]
Gold.
</Text>
</Row>
<Row Tag="TXT_KEY_BUILDING_TOWN_CENTER_Text">
<Text>
The Town Center is located in the center of a town or city. It is used for a variety of tasks such as economic and political affairs.
</Text>
</Row>
</Language_en_US>
</GameData>