Regis Hastur
Chieftain
I could need some help and hope to get any 
My mod is "simple". I just want to add Airbases as improvement. But I'm not sure what I have to change. Best thing to start should be CIV5Improvements.xml I thought.
I grabbed the code of a Fort, put it into a file in Modbuddy and altered it to this:
Ok but now it gets tricky for me. I have made some simple progs with C. But I am always confused if more than one file comes along. Where do I see now where I have to look for the rest I have to alter? Where to put the graphic?
What is the "reference"-thing in the column for? Or The <IconAtlas>
Where do I find <ArtDefineTag>; <Civilopedia>; <Describtion>
There must be a file on the top pointing to all those files? Which is it?
So as you see ... I don't get the BIG PICTURE and can't find a place where it is explained.

My mod is "simple". I just want to add Airbases as improvement. But I'm not sure what I have to change. Best thing to start should be CIV5Improvements.xml I thought.
I grabbed the code of a Fort, put it into a file in Modbuddy and altered it to this:
Code:
<GameData>
<Table name="Improvements">
<Column name="ImprovementAirUnits" type="boolean" reference="Improvements(Type)" default="false"/>
</Table>
<Improvements>
<Row>
<Type>IMPROVEMENT_AIRBASE</Type>
<Description>TXT_KEY_IMPROVEMENT_AIRBASE</Description>
<Civilopedia>TXT_KEY_CIV5_IMPROVEMENTS_AIRBASE_TEXT</Civilopedia>
<ArtDefineTag>ART_DEF_IMPROVEMENT_AIRBASE</ArtDefineTag>
<DestroyedWhenPillaged>true</DestroyedWhenPillaged>
<BuildableOnResources>true</BuildableOnResources>
<DefenseModifier>15</DefenseModifier>
<OutsideBorders>true</OutsideBorders>
<PortraitIndex>24</PortraitIndex>
<IconAtlas>TERRAIN_ATLAS</IconAtlas>
</Row>
</Improvements>
</GameData>
Ok but now it gets tricky for me. I have made some simple progs with C. But I am always confused if more than one file comes along. Where do I see now where I have to look for the rest I have to alter? Where to put the graphic?
What is the "reference"-thing in the column for? Or The <IconAtlas>
Where do I find <ArtDefineTag>; <Civilopedia>; <Describtion>
There must be a file on the top pointing to all those files? Which is it?
So as you see ... I don't get the BIG PICTURE and can't find a place where it is explained.