• Civilization 7 has been announced. For more info please check the forum here .

Sumerian Phalanx - Implementing in my VP mod

AlphaKappa

Chieftain
Joined
Jul 19, 2013
Messages
32
Hi, I'm trying to implement the Sumerian Phalanx unit (Spearman replacement) in my Vox Populi mod. This is a unique unit from the Wonders of the Ancient World DLC.

I've got the unit model for it but the only snag is I don't know how to identify this unit's Icon and Flag atlas graphics. Any pros know how I can figure that out? Thanks!
 
Last edited:
Go into the DLC file in your local game install and look for the database entries for it there

steamapps/common/Sid Meier’ socialization/assets/
 
I've looked there but the XML files within don't seem to contain any icon or flag Atlas definitions
 
I would really like to know where the XML files for the Sumerian Phalanx are too because they are not in the DLC folder and i have checked all of them.
 
I would really like to know where the XML files for the Sumerian Phalanx are too because they are not in the DLC folder and i have checked all of them.
"Steam\ steamapps\ common\ Sid Meier's Civilization V\ Assets\ DLC\ DLC_06\ Scenarios\ WonderScenario\ TechTreeUpdate.xml", row 530

Spoiler code :
Code:
<Row>
            <Class>UNITCLASS_SPEARMAN</Class>
            <Type>UNIT_SUMERIAN_PHALANX</Type>
            <PrereqTech>TECH_MINING</PrereqTech>
            <Combat>8</Combat>
            <Cost>56</Cost>
            <Moves>2</Moves>
            <CombatClass>UNITCOMBAT_MELEE</CombatClass>
            <Domain>DOMAIN_LAND</Domain>
            <DefaultUnitAI>UNITAI_COUNTER</DefaultUnitAI>
            <Description>TXT_KEY_UNIT_SUMERIAN_PHALANX</Description>
            <Civilopedia>TXT_KEY_CIV5_SUMERIAN_PHALANX_TEXT</Civilopedia>
            <Strategy>TXT_KEY_UNIT_SUMERIAN_PHALANX_STRATEGY</Strategy>
            <Help>TXT_KEY_UNIT_SUMERIAN_PHALANX_HELP</Help>
            <MilitarySupport>true</MilitarySupport>
            <MilitaryProduction>true</MilitaryProduction>
            <Pillage>true</Pillage>
            <ObsoleteTech>TECH_CIVIL_SERVICE</ObsoleteTech>
            <GoodyHutUpgradeUnitClass>UNITCLASS_PIKEMAN</GoodyHutUpgradeUnitClass>
            <AdvancedStartCost>15</AdvancedStartCost>
            <XPValueAttack>3</XPValueAttack>
            <XPValueDefense>3</XPValueDefense>
            <Conscription>2</Conscription>
            <UnitArtInfo>ART_DEF_UNIT_U_SUMERIAN_PHALANX</UnitArtInfo>
            <UnitFlagAtlas>WONDER_UNIT_FLAG_ATLAS</UnitFlagAtlas>
            <UnitFlagIconOffset>0</UnitFlagIconOffset>
            <IconAtlas>WONDER_UNIT_ATLAS</IconAtlas>
            <PortraitIndex>0</PortraitIndex>
        </Row>
 
Top Bottom