-
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.
- Loading branch information
1 parent
c219c06
commit 1d25adc
Showing
9 changed files
with
210 additions
and
198 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
23 changes: 0 additions & 23 deletions
23
ModPatches/O21 Outland - Core/Patches/O21 Outland - Core/Apparel_Outland.xml
This file was deleted.
Oops, something went wrong.
119 changes: 0 additions & 119 deletions
119
ModPatches/O21 Outland - Core/Patches/O21 Outland - Core/Buildings_Security.xml
This file was deleted.
Oops, something went wrong.
43 changes: 0 additions & 43 deletions
43
ModPatches/O21 Outland - Core/Patches/O21 Outland - Core/ThingDef_Projectiles.xml
This file was deleted.
Oops, something went wrong.
96 changes: 96 additions & 0 deletions
96
ModPatches/Outland - Core/Patches/Outland - Core/Apparel_Outland.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,96 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Patch> | ||
|
||
<!-- Cloak --> | ||
<Operation Class="PatchOperationReplace"> | ||
<xpath>Defs/ThingDef[defName="Outland_ShoulderCloak"]/statBases/StuffEffectMultiplierArmor</xpath> | ||
<value> | ||
<StuffEffectMultiplierArmor>5</StuffEffectMultiplierArmor> | ||
<Bulk>3.5</Bulk> | ||
<WornBulk>1.5</WornBulk> | ||
</value> | ||
</Operation> | ||
|
||
<!-- Heavy Tribalwear & Padding --> | ||
<Operation Class="PatchOperationReplace"> | ||
<xpath>Defs/ThingDef[defName="Outland_HeavyTribalPadding" or defName="Outland_HeavyTribalwear"]/statBases/StuffEffectMultiplierArmor</xpath> | ||
<value> | ||
<StuffEffectMultiplierArmor>6</StuffEffectMultiplierArmor> | ||
<Bulk>3.5</Bulk> | ||
<WornBulk>1.5</WornBulk> | ||
</value> | ||
</Operation> | ||
|
||
<!-- Tribal Hood --> | ||
<Operation Class="PatchOperationReplace"> | ||
<xpath>Defs/ThingDef[defName="Outland_TribalHood"]/statBases/StuffEffectMultiplierArmor</xpath> | ||
<value> | ||
<StuffEffectMultiplierArmor>2</StuffEffectMultiplierArmor> | ||
</value> | ||
</Operation> | ||
|
||
<!-- Tribal Robe --> | ||
<Operation Class="PatchOperationReplace"> | ||
<xpath>Defs/ThingDef[defName="Outland_TribalRobe"]/statBases/StuffEffectMultiplierArmor</xpath> | ||
<value> | ||
<Bulk>5</Bulk> | ||
<WornBulk>2</WornBulk> | ||
<StuffEffectMultiplierArmor>4.75</StuffEffectMultiplierArmor> | ||
</value> | ||
</Operation> | ||
|
||
<!-- War Mask and War Veil --> | ||
|
||
<Operation Class="PatchOperationAdd"> | ||
<xpath>Defs/ThingDef[@Name="OutlandTribalMask"]/equippedStatOffsets</xpath> | ||
<value> | ||
<Suppressability>-0.25</Suppressability> | ||
</value> | ||
</Operation> | ||
|
||
<Operation Class="PatchOperationReplace"> | ||
<xpath>Defs/ThingDef[@Name="OutlandTribalMask"]/statBases/StuffEffectMultiplierArmor</xpath> | ||
<value> | ||
<StuffEffectMultiplierArmor>10</StuffEffectMultiplierArmor> | ||
</value> | ||
</Operation> | ||
|
||
<!-- Tribal Backpack & Heavy Backpack --> | ||
<Operation Class="PatchOperationRemove"> | ||
<xpath>Defs/TabulaRasa.ExtendedApparelDef[defName="Outland_Backpack" or defName="Outland_BackpackHeavy"]/carryCapBuff</xpath> | ||
</Operation> | ||
|
||
<Operation Class="PatchOperationAdd"> | ||
<xpath>Defs/TabulaRasa.ExtendedApparelDef[defName="Outland_Backpack"]/statBases</xpath> | ||
<value> | ||
<Bulk>3</Bulk> | ||
</value> | ||
</Operation> | ||
|
||
<Operation Class="PatchOperationAdd"> | ||
<xpath>Defs/TabulaRasa.ExtendedApparelDef[defName="Outland_Backpack"]</xpath> | ||
<value> | ||
<equippedStatOffsets> | ||
<CarryBulk>15</CarryBulk> | ||
</equippedStatOffsets> | ||
</value> | ||
</Operation> | ||
|
||
<!-- Equivalent to a modern backpack, but twice the weight and bulk. --> | ||
<Operation Class="PatchOperationAdd"> | ||
<xpath>Defs/TabulaRasa.ExtendedApparelDef[defName="Outland_BackpackHeavy"]/statBases</xpath> | ||
<value> | ||
<Bulk>6</Bulk> | ||
</value> | ||
</Operation> | ||
|
||
<Operation Class="PatchOperationAdd"> | ||
<xpath>Defs/TabulaRasa.ExtendedApparelDef[defName="Outland_BackpackHeavy"]</xpath> | ||
<value> | ||
<equippedStatOffsets> | ||
<CarryBulk>30</CarryBulk> | ||
</equippedStatOffsets> | ||
</value> | ||
</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
Oops, something went wrong.