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

Patch - Victorian Era Apparels! #3645

Merged
merged 6 commits into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all 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 @@ -619,6 +619,7 @@
<li IfModActive="flangopink.VanillaXCOMPlasmaWeapons">ModPatches/Vanilla XCOM Plasma Weapons</li>
<li IfModActive="flangopink.VanillaXCOMWeapons">ModPatches/Vanilla XCOM Weapons</li>
<li IfModActive="KavaCaligula.VFClassicMechs">ModPatches/Vehicle Framework Expanded - Classic Mechs</li>
<li IfModActive="Gunmar.VictorianEraApparels">ModPatches/Victorian Era Apparels</li>
<li IfModActive="Mlie.VulpineRacePack">ModPatches/Vulpine Pack</li>
<li IfModActive="VsEdit.ods.wwiigerman.uniforms">ModPatches/WWII German Uniforms</li>
<li IfModActive="TheWingedGuy.WWII.Soviet.Faction">ModPatches/WWII Soviet Faction</li>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,222 @@
<?xml version="1.0" encoding="utf-8"?>
<Patch>

<!-- ======= Apparel ======= -->

<Operation Class="PatchOperationAdd">
<xpath>Defs/ThingDef[
defName="Gunmar_Apparel_DressA" or
defName="Gunmar_Apparel_DressB" or
defName="Gunmar_Apparel_Maid" or
defName="Gunmar_Apparel_Maidb" or
defName="Gunmar_Apparel_WalkingDress" or
defName="Gunmar_Apparel_RidingHabit" or
defName="Gunmar_Apparel_SimpleDress"
]/statBases</xpath>
<value>
<Bulk>5</Bulk>
<WornBulk>2</WornBulk>
</value>
</Operation>

<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[
defName="Gunmar_Apparel_DressA" or
defName="Gunmar_Apparel_DressB" or
defName="Gunmar_Apparel_Maid" or
defName="Gunmar_Apparel_Maidb" or
defName="Gunmar_Apparel_WalkingDress" or
defName="Gunmar_Apparel_SimpleDress"
]/statBases/StuffEffectMultiplierArmor</xpath>
<value>
<StuffEffectMultiplierArmor>3</StuffEffectMultiplierArmor>
</value>
</Operation>

<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[defName="Gunmar_Apparel_RidingHabit"]/statBases/StuffEffectMultiplierArmor</xpath>
<value>
<StuffEffectMultiplierArmor>3.25</StuffEffectMultiplierArmor>
</value>
</Operation>

<Operation Class="PatchOperationAdd">
<xpath>Defs/ThingDef[defName="Gunmar_Apparel_DressCoat"]/statBases</xpath>
<value>
<Bulk>5</Bulk>
<WornBulk>1</WornBulk>
</value>
</Operation>

<Operation Class="PatchOperationAdd">
<xpath>Defs/ThingDef[
defName="Gunmar_Apparel_Frock_Coat" or
defName="Gunmar_Apparel_Smoking_Jacket" or
defName="Gunmar_Apparel_Soldier_Coat" or
defName="Gunmar_Apparel_Hussar_Jacket"
]/statBases</xpath>
<value>
<Bulk>7.5</Bulk>
<WornBulk>1</WornBulk>
</value>
</Operation>

<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[
defName="Gunmar_Apparel_DressCoat" or
defName="Gunmar_Apparel_Frock_Coat" or
defName="Gunmar_Apparel_Smoking_Jacket" or
defName="Gunmar_Apparel_Soldier_Coat" or
defName="Gunmar_Apparel_Hussar_Jacket"
]/statBases/StuffEffectMultiplierArmor</xpath>
<value>
<StuffEffectMultiplierArmor>5</StuffEffectMultiplierArmor>
</value>
</Operation>

<Operation Class="PatchOperationAdd">
<xpath>Defs/ThingDef[defName="Gunmar_Apparel_Waistcoat"]/statBases</xpath>
<value>
<Bulk>3</Bulk>
<WornBulk>1</WornBulk>
</value>
</Operation>

<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[defName="Gunmar_Apparel_Waistcoat"]/statBases/StuffEffectMultiplierArmor</xpath>
<value>
<StuffEffectMultiplierArmor>2.5</StuffEffectMultiplierArmor>
</value>
</Operation>

<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[defName="Gunmar_Apparel_BpWaistcoat"]/statBases/Mass</xpath>
<value>
<Mass>6</Mass>
</value>
</Operation>

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

<Operation Class="PatchOperationRemove">
<xpath>Defs/ThingDef[defName="Gunmar_Apparel_BpWaistcoat"]/equippedStatOffsets/MoveSpeed</xpath>
</Operation>

<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[defName="Gunmar_Apparel_BpWaistcoat"]/statBases/StuffEffectMultiplierArmor</xpath>
<value>
<StuffEffectMultiplierArmor>3</StuffEffectMultiplierArmor>
</value>
</Operation>

<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[defName="Gunmar_Apparel_BpWaistcoat"]/stuffCategories</xpath>
<value>
<stuffCategories>
<li>Steeled</li>
</stuffCategories>
</value>
</Operation>

<!-- ======= Headgear ======= -->

<Operation Class="PatchOperationAdd">
<xpath>Defs/ThingDef[
defName="Gunmar_Apparel_FeatheredHat" or
defName="Gunmar_Apparel_MaidHead" or
defName="Gunmar_Apparel_MaidHeadb" or
defName="Gunmar_Apparel_BoaterHat" or
defName="Gunmar_Apparel_TopHat"
]/statBases</xpath>
<value>
<Bulk>2</Bulk>
<WornBulk>0</WornBulk>
</value>
</Operation>

<Operation Class="PatchOperationAdd">
<xpath>Defs/ThingDef[
defName="Gunmar_Apparel_Slouch_Hat" or
defName="Gunmar_Apparel_Shako_Hat" or
defName="Gunmar_Apparel_Soldier_Helmet"
]/statBases</xpath>
<value>
<Bulk>2</Bulk>
<WornBulk>1</WornBulk>
</value>
</Operation>

<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[
defName="Gunmar_Apparel_FeatheredHat" or
defName="Gunmar_Apparel_MaidHead" or
defName="Gunmar_Apparel_MaidHeadb" or
defName="Gunmar_Apparel_BoaterHat" or
defName="Gunmar_Apparel_TopHat"
]/statBases/StuffEffectMultiplierArmor</xpath>
<value>
<StuffEffectMultiplierArmor>3</StuffEffectMultiplierArmor>
</value>
</Operation>

<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[defName="Gunmar_Apparel_Slouch_Hat" or defName="Gunmar_Apparel_Shako_Hat"]/statBases/StuffEffectMultiplierArmor</xpath>
<value>
<StuffEffectMultiplierArmor>3</StuffEffectMultiplierArmor>
</value>
</Operation>

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

<Operation Class="PatchOperationAdd">
<xpath>Defs/ThingDef[defName="Gunmar_Apparel_Metal_Helmet"]/statBases</xpath>
<value>
<Bulk>3</Bulk>
<WornBulk>1</WornBulk>
</value>
</Operation>

<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[defName="Gunmar_Apparel_Metal_Helmet"]/statBases/StuffEffectMultiplierArmor</xpath>
<value>
<StuffEffectMultiplierArmor>4</StuffEffectMultiplierArmor>
</value>
</Operation>

<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[defName="Gunmar_Apparel_Metal_Helmet"]/stuffCategories</xpath>
<value>
<stuffCategories>
<li>Steeled</li>
</stuffCategories>
</value>
</Operation>

<Operation Class="PatchOperationAdd">
<xpath>Defs/ThingDef[defName="Gunmar_Apparel_Glasses" or defName="Gunmar_Apparel_Monocle"]/statBases</xpath>
<value>
<Bulk>0.5</Bulk>
</value>
</Operation>

<Operation Class="PatchOperationReplace">
<xpath>Defs/ThingDef[defName="Gunmar_Apparel_Glasses" or defName="Gunmar_Apparel_Monocle"]/apparel/layers</xpath>
<value>
<layers>
<li>StrappedHead</li>
</layers>
</value>
</Operation>

</Patch>
1 change: 1 addition & 0 deletions SupportedThirdPartyMods.md
Original file line number Diff line number Diff line change
Expand Up @@ -596,6 +596,7 @@ VFE Pirates unofficial add-on: Warcasket Melee Armory Continued |
VFE - Mechanoids : Drones |
VGP Fabrics |
VGP Garden Drinks |
Victorian Era Apparels! |
VRE Android Factions |
Vulpine Race Pack |
Wall Mounted Turrets (Continued) |
Expand Down
Loading