-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Partial patch for the old Android Tiers
- Loading branch information
1 parent
1532bba
commit f1cd2e5
Showing
6 changed files
with
748 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
92 changes: 92 additions & 0 deletions
92
ModPatches/Android Tiers/Patches/Android Tiers/PawnkindDefs/PawnKinds_Android.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Patch> | ||
|
||
<Operation Class="PatchOperationAddModExtension"> | ||
<xpath>Defs/PawnKindDef[ | ||
defName="AndroidT1RaiderFactionSpecific" or | ||
defName="AndroidT2RaiderFactionSpecific" or | ||
defName="AndroidT2CollectiveTrader" or | ||
defName="AndroidT1CollectiveSoldier" or | ||
defName="AndroidT2CollectiveSoldier" | ||
]</xpath> | ||
<value> | ||
<li Class="CombatExtended.LoadoutPropertiesExtension"> | ||
<primaryMagazineCount> | ||
<min>2</min> | ||
<max>3</max> | ||
</primaryMagazineCount> | ||
<sidearms> | ||
<li> | ||
<generateChance>0.5</generateChance> | ||
<sidearmMoney> | ||
<min>20</min> | ||
<max>120</max> | ||
</sidearmMoney> | ||
<weaponTags> | ||
<li>CE_Sidearm_Melee</li> | ||
</weaponTags> | ||
</li> | ||
</sidearms> | ||
</li> | ||
</value> | ||
</Operation> | ||
|
||
<Operation Class="PatchOperationAddModExtension"> | ||
<xpath>Defs/PawnKindDef[ | ||
defName="AndroidT3RaiderFactionSpecific" or | ||
defName="AndroidT4RaiderFactionSpecific" or | ||
defName="AndroidT3CollectiveSoldier" or | ||
defName="AndroidT4CollectiveSoldier" or | ||
defName="AndroidT4CollectiveLeader" | ||
]</xpath> | ||
<value> | ||
<li Class="CombatExtended.LoadoutPropertiesExtension"> | ||
<primaryMagazineCount> | ||
<min>4</min> | ||
<max>6</max> | ||
</primaryMagazineCount> | ||
<sidearms> | ||
<li> | ||
<generateChance>0.25</generateChance> | ||
<sidearmMoney> | ||
<min>20</min> | ||
<max>120</max> | ||
</sidearmMoney> | ||
<weaponTags> | ||
<li>CE_Sidearm_Melee</li> | ||
</weaponTags> | ||
</li> | ||
<li> | ||
<generateChance>0.075</generateChance> | ||
<sidearmMoney> | ||
<min>80</min> | ||
<max>160</max> | ||
</sidearmMoney> | ||
<weaponTags> | ||
<li>CE_FlareLauncher</li> | ||
</weaponTags> | ||
<magazineCount> | ||
<min>1</min> | ||
<max>1</max> | ||
</magazineCount> | ||
</li> | ||
<li> | ||
<generateChance>0.125</generateChance> | ||
<sidearmMoney> | ||
<min>10</min> | ||
<max>100</max> | ||
</sidearmMoney> | ||
<weaponTags> | ||
<li>GrenadeDestructive</li> | ||
</weaponTags> | ||
<magazineCount> | ||
<min>1</min> | ||
<max>1</max> | ||
</magazineCount> | ||
</li> | ||
</sidearms> | ||
</li> | ||
</value> | ||
</Operation> | ||
|
||
</Patch> |
16 changes: 16 additions & 0 deletions
16
ModPatches/Android Tiers/Patches/Android Tiers/ScenarioDefs/Scenarios_Androids.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Patch> | ||
|
||
<!-- === Add ammo to scenario === --> | ||
<Operation Class="PatchOperationAdd"> | ||
<xpath>Defs/ScenarioDef[defName="AndroidTiers_RiseOfMachines"]/scenario/parts</xpath> | ||
<value> | ||
<li Class="ScenPart_StartingThing_Defined"> | ||
<def>StartingThing_Defined</def> | ||
<thingDef>Ammo_6x24mmCharged</thingDef> | ||
<count>300</count> | ||
</li> | ||
</value> | ||
</Operation> | ||
|
||
</Patch> |
Oops, something went wrong.