-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3518 from SaltyKarl/SpacerPack_again
Spacer pack again
- Loading branch information
Showing
4 changed files
with
167 additions
and
3 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
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
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,37 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Patch> | ||
|
||
<!-- ================== Damages ================== --> | ||
|
||
<Operation Class="PatchOperationAttributeSet"> | ||
<xpath>Defs/DamageDef[defName="dvd_SkipBolt"]</xpath> | ||
<attribute>ParentName</attribute> | ||
<value>Bullet</value> | ||
</Operation> | ||
|
||
<Operation Class="PatchOperationAttributeSet"> | ||
<xpath>Defs/DamageDef[defName="dvd_RipperBomb"]</xpath> | ||
<attribute>ParentName</attribute> | ||
<value>Bomb</value> | ||
</Operation> | ||
|
||
<Operation Class="PatchOperationReplace"> | ||
<xpath>Defs/DamageDef[defName="dvd_RipperBomb"]/defaultArmorPenetration</xpath> | ||
<value> | ||
<defaultArmorPenetration>62</defaultArmorPenetration> | ||
</value> | ||
</Operation> | ||
|
||
<Operation Class="PatchOperationReplace"> | ||
<xpath>Defs/DamageDef[defName="dvd_RipperBomb"]/armorCategory</xpath> | ||
<value> | ||
<armorCategory>Blunt</armorCategory> | ||
</value> | ||
</Operation> | ||
|
||
<!-- Get rid of the unused vanilla projectile to suppress an error. --> | ||
<Operation Class="PatchOperationRemove"> | ||
<xpath>Defs/ThingDef[defName="dvd_Projectile_RipperRack"]</xpath> | ||
</Operation> | ||
|
||
</Patch> |
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,36 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Patch> | ||
|
||
<!-- ================== Hediff ================== --> | ||
|
||
<Operation Class="PatchOperationReplace"> | ||
<xpath>Defs/HediffDef[defName="dvd_RipperMechanites"]/stages/li[label="limited"]/statOffsets</xpath> | ||
<value> | ||
<statOffsets> | ||
<ArmorRating_Sharp>-3</ArmorRating_Sharp> | ||
<ArmorRating_Blunt>-5</ArmorRating_Blunt> | ||
</statOffsets> | ||
</value> | ||
</Operation> | ||
|
||
<Operation Class="PatchOperationReplace"> | ||
<xpath>Defs/HediffDef[defName="dvd_RipperMechanites"]/stages/li[label="moderate"]/statOffsets</xpath> | ||
<value> | ||
<statOffsets> | ||
<ArmorRating_Sharp>-7</ArmorRating_Sharp> | ||
<ArmorRating_Blunt>-10</ArmorRating_Blunt> | ||
</statOffsets> | ||
</value> | ||
</Operation> | ||
|
||
<Operation Class="PatchOperationReplace"> | ||
<xpath>Defs/HediffDef[defName="dvd_RipperMechanites"]/stages/li[label="extensive"]/statOffsets</xpath> | ||
<value> | ||
<statOffsets> | ||
<ArmorRating_Sharp>-15</ArmorRating_Sharp> | ||
<ArmorRating_Blunt>-20</ArmorRating_Blunt> | ||
</statOffsets> | ||
</value> | ||
</Operation> | ||
|
||
</Patch> |