nightstorms
Chieftain
- Joined
- Aug 23, 2009
- Messages
- 9
I searched the forum for "remove unit from game" but I could not find what I was looking for, if it is even possible.
I installed the SDK, thinking it would be like a WYSIWYG-editor but instead it seems it's just another XML-editor. So I went back to UltraEdit. But, my issue is I am trying to remove the XCOM unit from the game. This is my first time modding Civ 5 so I am kind of fumbling a bit, please bear with me.
I've tried different codes, and this is my latest which I thought would work. I've also tried withough the update-tags for all the categories except the bottom one. Is it not possible to just rem-out the lines like this?
I installed the SDK, thinking it would be like a WYSIWYG-editor but instead it seems it's just another XML-editor. So I went back to UltraEdit. But, my issue is I am trying to remove the XCOM unit from the game. This is my first time modding Civ 5 so I am kind of fumbling a bit, please bear with me.
I've tried different codes, and this is my latest which I thought would work. I've also tried withough the update-tags for all the categories except the bottom one. Is it not possible to just rem-out the lines like this?
Code:
<?xml version="1.0" encoding="utf-8"?>
<GameData>
<Update>
<!-- <Row>
<Class>UNITCLASS_XCOM_SQUAD</Class>
<Type>UNIT_XCOM_SQUAD</Type>
<PrereqTech>TECH_NANOTECHNOLOGY</PrereqTech>
<Combat>110</Combat>
<Cost>400</Cost>
<FaithCost>800</FaithCost>
<RequiresFaithPurchaseEnabled>true</RequiresFaithPurchaseEnabled>
<Moves>2</Moves>
<CombatClass>UNITCOMBAT_GUN</CombatClass>
<Domain>DOMAIN_LAND</Domain>
<DefaultUnitAI>UNITAI_PARADROP</DefaultUnitAI>
<Description>TXT_KEY_UNIT_XCOM_SQUAD</Description>
<Civilopedia>TXT_KEY_CIV5_XCOM_SQUAD_TEXT</Civilopedia>
<Strategy>TXT_KEY_UNIT_XCOM_SQUAD_STRATEGY</Strategy>
<Help>TXT_KEY_UNIT_HELP_XCOM_SQUAD</Help>
<MilitarySupport>true</MilitarySupport>
<MilitaryProduction>true</MilitaryProduction>
<Pillage>true</Pillage>
<AdvancedStartCost>50</AdvancedStartCost>
<XPValueAttack>3</XPValueAttack>
<XPValueDefense>3</XPValueDefense>
<UnitArtInfo>ART_DEF_UNIT_XCOM_SQUAD</UnitArtInfo>
<UnitFlagAtlas>EXPANSION2_UNIT_FLAG_ATLAS</UnitFlagAtlas>
<UnitFlagIconOffset>15</UnitFlagIconOffset>
<IconAtlas>EXPANSION2_UNIT_ATLAS</IconAtlas>
<PortraitIndex>15</PortraitIndex>
<MoveRate>QUADRUPED</MoveRate>
</Row> -->
</Update>
<Update>
<!-- <Row> -->
<!-- <UnitType>UNIT_PARATROOPER</UnitType> -->
<!-- <UnitClassType>UNITCLASS_XCOM_SQUAD</UnitClassType> -->
<!-- </Row> -->
<!-- <Row>
<UnitType>UNIT_XCOM_SQUAD</UnitType>
<UnitAIType>UNITAI_PARADROP</UnitAIType>
</Row> -->
<!-- <Row>
<UnitType>UNIT_XCOM_SQUAD</UnitType>
<FlavorType>FLAVOR_OFFENSE</FlavorType>
<Flavor>16</Flavor>
</Row>
<Row>
<UnitType>UNIT_XCOM_SQUAD</UnitType>
<FlavorType>FLAVOR_DEFENSE</FlavorType>
<Flavor>12</Flavor>
</Row>
<Row>
<UnitType>UNIT_XCOM_SQUAD</UnitType>
<FlavorType>FLAVOR_AIR</FlavorType>
<Flavor>8</Flavor>
</Row>
<Row>
<UnitType>UNIT_XCOM_SQUAD</UnitType>
<FlavorType>FLAVOR_RECON</FlavorType>
<Flavor>4</Flavor>
</Row> -->
<!-- <Row>
<UnitType>UNIT_XCOM_SQUAD</UnitType>
<PromotionType>PROMOTION_EXTENDED_PARADROP</PromotionType>
</Row> -->
</Update>
<Update>
<!-- <Row>
<Type>UNITCLASS_XCOM_SQUAD</Type>
<Description>TXT_KEY_UNIT_XCOM_SQUAD</Description>
<DefaultUnit>UNIT_XCOM_SQUAD</DefaultUnit>
</Row> -->
</Update>
<Language_en_US>
<Update>
<Where Tag="TXT_KEY_TECH_NANOTECHNOLOGY_HELP"/>
<Set Text=Allows you to build the [COLOR_POSITIVE_TEXT]SS Stasis Chamber[ENDCOLOR], one of the Spaceship parts necessary to win a [COLOR_POSITIVE_TEXT]Science Victory[ENDCOLOR]./>
</Update>
</Language_en_US>
</GameData>