Hi everyone,
I just start modding with Civ V. For the beginning, I decided to create a building : the slave market. The mod is correctly generated by ModBuddy, correctly loaded by Civ V and ... there isn't any slave market in the game ! Neither in the techtree nor in the civilopedia. It must be very simple but I'm a newbie.
Here is the XML file :
The dds file (it's a png for the forum)

The 4 dds files got the "Import into VFS" option set to true ; in the Actions property menu, I put "OnModActivated > Update Database > My_XML_File" & in the Content property "InGameUIAddin > My_XML_File". All files (XML and DDS) have been added using ModBuddy (not the explorer). Do anyone have an idea ?
Thanks !
I just start modding with Civ V. For the beginning, I decided to create a building : the slave market. The mod is correctly generated by ModBuddy, correctly loaded by Civ V and ... there isn't any slave market in the game ! Neither in the techtree nor in the civilopedia. It must be very simple but I'm a newbie.

Spoiler :
Code:
<?xml version="1.0" encoding="utf-8"?>
<!-- Created by ModBuddy on 19/04/2016 13:43:38 -->
<GameData>
<!-- FICHIER IMAGE -->
<IconTextureAtlases>
<Row>
<Atlas>PERSO_BUILDINGS</Atlas>
<IconSize>256</IconSize>
<Filename>Art/PersoBuildings256.dds</Filename>
<IconsPerRow>8</IconsPerRow>
<IconsPerColumn>8</IconsPerColumn>
</Row>
<Row>
<Atlas>PERSO_BUILDINGS</Atlas>
<IconSize>128</IconSize>
<Filename>Art/PersoBuildings128.dds</Filename>
<IconsPerRow>8</IconsPerRow>
<IconsPerColumn>8</IconsPerColumn>
</Row>
<Row>
<Atlas>PERSO_BUILDINGS</Atlas>
<IconSize>64</IconSize>
<Filename>ART/PersoBuildings.dds</Filename>
<IconsPerRow>8</IconsPerRow>
<IconsPerColumn>8</IconsPerColumn>
</Row>
<Row>
<Atlas>PERSO_BUILDINGS</Atlas>
<IconSize>45</IconSize>
<Filename>ART/PersoBuildings.dds</Filename>
<IconsPerRow>8</IconsPerRow>
<IconsPerColumn>8</IconsPerColumn>
</Row>
</IconTextureAtlases>
<!-- BATIMENT -->
<Buildings>
<Type>BUILDING_SLAVERY</Type>
<BuildingClass>BUILDINGCLASS_SLAVERY</BuildingClass>
<Cost>180</Cost>
<Help>TXT_KEY_BUILDING_SLAVERY_STRATEGY</Help>
<Description>TXT_KEY_BUILDING_SLAVERY</Description>
<Civilopedia>TXT_KEY_PEDIA_BUILDING_SLAVERY</Civilopedia>
<Strategy>TXT_KEY_BUILDING_SLAVERY_STRATEGY</Strategy>
<ArtDefineTag>ART_DEF_BUILDING_BANK</ArtDefineTag>
<SpecialistType>SPECIALIST_MERCHANT</SpecialistType>
<SpecialistCount>1</SpecialistCount>
<MinAreaSize>-1</MinAreaSize>
<ConquestProb>50</ConquestProb>
<HurryCostModifier>25</HurryCostModifier>
<IconAtlas>PERSO_BUILDINGS</IconAtlas>
<PortraitIndex>0</PortraitIndex>
</Buildings>
<!--<Building_ClassesNeededInCity>
<Row>
<BuildingType>BUILDING_SLAVERY</BuildingType>
<BuildingClassType>BUILDINGCLASS_MARKET</BuildingClassType>
</Row>
</Building_ClassesNeededInCity>-->
<!-- BONUS FIXES DU BATIMENT -->
<Building_YieldChanges>
<Row>
<BuildingType>BUILDING_SLAVERY</BuildingType>
<YieldType>YIELD_PRODUCTION</YieldType>
<Yield>2</Yield>
</Row>
</Building_YieldChanges>
<!-- BONUS PROPORTIONNELS DU BATIMENT -->
<Building_YieldModifiers>
<Row>
<BuildingType>BUILDING_SLAVERY</BuildingType>
<YieldType>YIELD_GOLD</YieldType>
<Yield>25</Yield>
</Row>
</Building_YieldModifiers>
<!-- CLASSES DE BATIMENTS -->
<BuildingClasses>
<Row>
<Type>BUILDINGCLASS_SLAVERY</Type>
<DefaultBuilding>BUILDING_SLAVERY</DefaultBuilding>
<Description>TXT_KEY_BUILDING_SLAVERY</Description>
</Row>
</BuildingClasses>
<!-- MESSAGES -->
<Language_FR_FR>
<Row Tag="TXT_KEY_BUILDING_SLAVERY">
<Text>Marché aux esclaves|Marchés aux esclaves</Text>
<Gender>masculine</Gender>
<Plurality>1|2</Plurality>
</Row>
<Row Tag="TXT_KEY_BUILDING_SLAVERY_STRATEGY">
<Text>Le marché aux esclaves accroît la production et l'or généré par votre ville.</Text>
</Row>
<Row Tag="TXT_KEY_PEDIA_BUILDING_SLAVERY">
<Text>L'esclavage était monnaie courante durant l'antiquité et rares sont les peuples à ne pas l'avoir pratiqué. Le commerce des esclaves était souvent lucratif et permettait aux empires d'accroître leur production.</Text>
</Row>
</Language_FR_FR>
</GameData>
The dds file (it's a png for the forum)

The 4 dds files got the "Import into VFS" option set to true ; in the Actions property menu, I put "OnModActivated > Update Database > My_XML_File" & in the Content property "InGameUIAddin > My_XML_File". All files (XML and DDS) have been added using ModBuddy (not the explorer). Do anyone have an idea ?

Thanks !