Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patches - Spacer Shields #3207

Merged
merged 5 commits into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions LoadFolders.xml
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,7 @@
<li IfModActive="Rottweiler.SimplyMoreMelee, Mlie.SimplyMoreMelee">ModPatches/Simply More Melee</li>
<li IfModActive="PunkyRoo.SlimeRancher">ModPatches/Slime Rancher</li>
<li IfModActive="Ayameduki.HARSolark">ModPatches/Solark Race</li>
<li IfModActive="LTS.PS">ModPatches/Spacer Shields</li>
<li IfModActive="Mlie.SpaceWorms">ModPatches/Spaceworm</li>
<li IfModActive="HALO.RSF, Mlie.RimworldSpartanFoundry">ModPatches/Spartan Foundry</li>
<li IfModActive="Mlie.SpidercampsHorses">ModPatches/Spidercamp&apos;s Horses</li>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,240 @@
<?xml version="1.0" encoding="utf-8"?>
<Patch>

<!--Replace ThingClass-->
<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[@Name="LTS_Apparel_BasePowerShield"]/thingClass</xpath>
<value>
<thingClass>CombatExtended.Apparel_Shield</thingClass>
</value>
</Operation>

<!--Replace Parent-->
<Operation Class="PatchOperationAttributeSet">
<xpath>Defs/ThingDef[@Name="LTS_Apparel_BasePowerShield"]</xpath>
<attribute>ParentName</attribute>
<value>ArmorSmithableBase</value>
</Operation>

<!--Replace Apparel Layer & BodyPart Group -->
<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[@Name="LTS_Apparel_BasePowerShield"]/apparel/layers</xpath>
<value>
<layers>
<li>Shield</li>
</layers>
</value>
</Operation>

<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[@Name="LTS_Apparel_BasePowerShield"]/apparel/bodyPartGroups</xpath>
<value>
<bodyPartGroups>
<li>LeftShoulder</li>
</bodyPartGroups>
</value>
</Operation>

<!--Replace graphicClass -->
<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[defName="LTS_Apparel_Shield_Power" or defName="LTS_Apparel_Shield_Energy"]/graphicData/graphicClass</xpath>
<value>
<graphicClass>Graphic_Multi</graphicClass>
</value>
</Operation>

<!--Remove VFE Shield Stuff-->
<Operation Class="PatchOperationRemove">
<xpath>Defs/ThingDef[@Name="LTS_Apparel_BasePowerShield"]/tools</xpath>
</Operation>

<Operation Class="PatchOperationRemove">
<xpath>Defs/ThingDef[defName="LTS_Apparel_Shield_Power" or defName="LTS_Apparel_Shield_Energy"]/comps/li[@Class="VFECore.CompProperties_Shield"]</xpath>
</Operation>

<!--Add apparel node if not exist-->
<Operation Class="PatchOperationConditional">
<xpath>Defs/ThingDef[defName="LTS_Apparel_Shield_Power"]/apparel</xpath>
<nomatch Class="PatchOperationAdd">
<xpath>Defs/ThingDef[defName="LTS_Apparel_Shield_Power"]</xpath>
<value>
<apparel />
</value>
</nomatch>
</Operation>

<Operation Class="PatchOperationConditional">
<xpath>Defs/ThingDef[defName="LTS_Apparel_Shield_Energy"]/apparel</xpath>
<nomatch Class="PatchOperationAdd">
<xpath>Defs/ThingDef[defName="LTS_Apparel_Shield_Energy"]</xpath>
<value>
<apparel />
</value>
</nomatch>
</Operation>

<!--Add renderNodeProperties-->
<Operation Class="PatchOperationAdd">
<xpath>Defs/ThingDef[defName="LTS_Apparel_Shield_Power"]/apparel</xpath>
<value>
<renderNodeProperties>
<li>
<nodeClass>CombatExtended.PawnRenderNode_Apparel</nodeClass>
<workerClass>CombatExtended.PawnRenderNodeWorker_Drafted</workerClass>
<texPath>Things/Apparel/PowerShield/PowerShield</texPath>
<shaderTypeDef>CutoutComplex</shaderTypeDef>
<parentTagDef>ApparelBody</parentTagDef>
<drawData>
<scale>1</scale>
<defaultData>
<layer>91</layer>
</defaultData>
<dataEast>
<layer>-5</layer>
<offset>(-0.1, 0, -0.1)</offset>
</dataEast>
<dataNorth>
<layer>-5</layer>
<offset>(-0.3, 0, 0.3)</offset>
</dataNorth>
<dataSouth>
<offset>(0.3, 0, -0.1)</offset>
</dataSouth>
<dataWest>
<offset>(0.1, 0, -0.1)</offset>
</dataWest>
</drawData>
</li>
</renderNodeProperties>
</value>
</Operation>

<Operation Class="PatchOperationAdd">
<xpath>Defs/ThingDef[defName="LTS_Apparel_Shield_Energy"]/apparel</xpath>
<value>
<renderNodeProperties>
<li>
<nodeClass>CombatExtended.PawnRenderNode_Apparel</nodeClass>
<workerClass>CombatExtended.PawnRenderNodeWorker_Drafted</workerClass>
<texPath>Things/Apparel/EnergyShield/EnergyShield</texPath>
<shaderTypeDef>CutoutComplex</shaderTypeDef>
<parentTagDef>ApparelBody</parentTagDef>
<drawData>
<scale>1</scale>
<defaultData>
<layer>91</layer>
</defaultData>
<dataEast>
<layer>-5</layer>
<offset>(-0.1, 0, 0.3)</offset>
</dataEast>
<dataNorth>
<layer>-5</layer>
<offset>(-0.3, 0, 0.3)</offset>
</dataNorth>
<dataSouth>
<offset>(0.3, 0, -0.1)</offset>
</dataSouth>
<dataWest>
<offset>(0.1, 0, -0.1)</offset>
</dataWest>
</drawData>
</li>
</renderNodeProperties>
</value>
</Operation>

<!--Add CE Shield Stuff-->
<Operation Class="PatchOperationAddModExtension">
<xpath>Defs/ThingDef[@Name="LTS_Apparel_BasePowerShield"]</xpath>
<value>
<li Class="CombatExtended.ShieldDefExtension">
<shieldCoverage>
<li>Hands</li>
<li>Arms</li>
<li>Shoulders</li>
<li>Torso</li>
<li>Neck</li>
</shieldCoverage>
</li>
</value>
</Operation>

<!--Add Bulk-->
<Operation Class="PatchOperationAdd">
<xpath>Defs/ThingDef[defName="LTS_Apparel_Shield_Power"]/statBases</xpath>
<value>
<Bulk>20</Bulk>
<WornBulk>12</WornBulk>
</value>
</Operation>

<Operation Class="PatchOperationAdd">
<xpath>Defs/ThingDef[defName="LTS_Apparel_Shield_Energy"]/statBases</xpath>
<value>
<Bulk>4</Bulk>
<WornBulk>2</WornBulk>
</value>
</Operation>

<!--Replace Stat Offsets-->
<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[defName="LTS_Apparel_Shield_Power"]/equippedStatOffsets</xpath>
<value>
<equippedStatOffsets>
<ReloadSpeed>-0.35</ReloadSpeed>
<MeleeHitChance>-4</MeleeHitChance>
<ShootingAccuracyPawn>-0.4</ShootingAccuracyPawn>
<AimingAccuracy>-0.2</AimingAccuracy>
<Suppressability>-0.6</Suppressability>
<MeleeCritChance>-0.25</MeleeCritChance>
<MeleeParryChance>1.0</MeleeParryChance>
</equippedStatOffsets>
</value>
</Operation>

<!--Replace Armor Thickness-->
<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[defName="LTS_Apparel_Shield_Power"]/statBases/ArmorRating_Sharp</xpath>
<value>
<ArmorRating_Sharp>24</ArmorRating_Sharp>
</value>
</Operation>

<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[defName="LTS_Apparel_Shield_Power"]/statBases/ArmorRating_Blunt</xpath>
<value>
<ArmorRating_Blunt>48</ArmorRating_Blunt>
</value>
</Operation>

<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[defName="LTS_Apparel_Shield_Energy"]/statBases/ArmorRating_Sharp</xpath>
<value>
<ArmorRating_Sharp>8</ArmorRating_Sharp>
</value>
</Operation>

<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[defName="LTS_Apparel_Shield_Energy"]/statBases/ArmorRating_Blunt</xpath>
<value>
<ArmorRating_Blunt>12</ArmorRating_Blunt>
</value>
</Operation>

<!--Adjust shield bubble value-->
<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[defName="LTS_Apparel_Shield_Energy"]/comps/li[@Class="VFECore.CompProperties_ShieldBubble"]/EnergyShieldEnergyMax</xpath>
<value>
<EnergyShieldEnergyMax>265</EnergyShieldEnergyMax> <!-- about 2.65x from base value -->
</value>
</Operation>

<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[defName="LTS_Apparel_Shield_Energy"]/comps/li[@Class="VFECore.CompProperties_ShieldBubble"]/EnergyShieldRechargeRate</xpath>
<value>
<EnergyShieldRechargeRate>1.2</EnergyShieldRechargeRate> <!-- about 6 hours for 265hp full recharge -->
</value>
</Operation>

</Patch>
1 change: 1 addition & 0 deletions SupportedThirdPartyMods.md
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,7 @@ Simple Ogre Race |
Simply More Melee |
Slime Rancher |
Solark Race |
Spacer Shields |
Space Worms (Continued) |
Spartan Foundry |
Spidercamp's Horses |
Expand Down
Loading