From f908b0a9765b851f234c3374fd12479eea0470d9 Mon Sep 17 00:00:00 2001 From: n7huntsman Date: Thu, 5 Dec 2024 17:30:35 -0500 Subject: [PATCH] Patch Mantis Race --- LoadFolders.xml | 1 + .../Patches/Mantis Race/Bodies_Mantis.xml | 107 ++++++++++++++ .../Patches/Mantis Race/PawnKind_Mantis.xml | 43 ++++++ .../Patches/Mantis Race/Race_Mantis.xml | 133 ++++++++++++++++++ .../Patches/Mantis Race/Scenarios.xml | 15 ++ SupportedThirdPartyMods.md | 1 + 6 files changed, 300 insertions(+) create mode 100644 ModPatches/Mantis Race/Patches/Mantis Race/Bodies_Mantis.xml create mode 100644 ModPatches/Mantis Race/Patches/Mantis Race/PawnKind_Mantis.xml create mode 100644 ModPatches/Mantis Race/Patches/Mantis Race/Race_Mantis.xml create mode 100644 ModPatches/Mantis Race/Patches/Mantis Race/Scenarios.xml diff --git a/LoadFolders.xml b/LoadFolders.xml index c211b615b9..53e5e9c07e 100644 --- a/LoadFolders.xml +++ b/LoadFolders.xml @@ -287,6 +287,7 @@
  • ModPatches/MH Military Tiers
  • ModPatches/Machines of War
  • ModPatches/Makeshift Melee Weapons
  • +
  • ModPatches/Mantis Race
  • ModPatches/Mantodean Insectoid Race
  • ModPatches/Marilyn the Mincho Worshipper Witch
  • ModPatches/Martens - Nature's Most Adorable Assassins
  • diff --git a/ModPatches/Mantis Race/Patches/Mantis Race/Bodies_Mantis.xml b/ModPatches/Mantis Race/Patches/Mantis Race/Bodies_Mantis.xml new file mode 100644 index 0000000000..c050918105 --- /dev/null +++ b/ModPatches/Mantis Race/Patches/Mantis Race/Bodies_Mantis.xml @@ -0,0 +1,107 @@ + + + + + + + + + Defs/BodyDef[defName="Mantis"]/corePart/groups + +
  • CoveredByNaturalArmor
  • +
    +
    + + + Defs/BodyDef[defName="Mantis"]/corePart/parts/li[def="Neck"]/groups + +
  • CoveredByNaturalArmor
  • +
    +
    + + + Defs/BodyDef[defName="Mantis"]/corePart/parts/li[def="Neck"]/parts/li[def="Head"]/groups + +
  • CoveredByNaturalArmor
  • +
    +
    + + + Defs/BodyDef[defName="Mantis"]/corePart/parts/li[def="Neck"]/parts/li[def="Head"]/parts/li[def="Antenna"]/groups + +
  • CoveredByNaturalArmor
  • +
    +
    + + + Defs/BodyDef[defName="Mantis"]/corePart/parts/li[def="Neck"]/parts/li[def="Head"]/parts/li[def="Jaw"]/groups + +
  • CoveredByNaturalArmor
  • +
    +
    + + + Defs/BodyDef[defName="Mantis"]/corePart/parts/li[def="Neck"]/parts/li[def="Head"]/parts/li[def="Nose"]/groups + +
  • CoveredByNaturalArmor
  • +
    +
    + + + Defs/BodyDef[defName="Mantis"]/corePart/parts/li[def="Neck"]/parts/li[def="Head"]/parts/li[def="Ear"]/groups + +
  • CoveredByNaturalArmor
  • +
    +
    + + + Defs/BodyDef[defName="Mantis"]/corePart/parts/li[def="Shoulder"]/groups + +
  • CoveredByNaturalArmor
  • +
    +
    + + + Defs/BodyDef[defName="Mantis"]/corePart/parts/li[def="Shoulder"]/parts/li[def="Arm"]/groups + +
  • CoveredByNaturalArmor
  • +
    +
    + + + Defs/BodyDef[defName="Mantis"]/corePart/parts/li[def="Shoulder"]/parts/li[def="Arm"]/parts/li[def="Hand"]/groups + +
  • CoveredByNaturalArmor
  • +
    +
    + + + Defs/BodyDef[defName="Mantis"]/corePart/parts/li[def="Shoulder"]/parts/li[def="Arm"]/parts/li[def="Hand"]/parts/li[def="BodyPart_LTF_RightClaws"]/groups + +
  • CoveredByNaturalArmor
  • +
    +
    + + + Defs/BodyDef[defName="Mantis"]/corePart/parts/li[def="Leg"]/groups + +
  • CoveredByNaturalArmor
  • +
    +
    + + + Defs/BodyDef[defName="Mantis"]/corePart/parts/li[def="Leg"]/parts/li[def="Foot"]/groups + +
  • CoveredByNaturalArmor
  • +
    +
    + + + Defs/BodyDef[defName="Mantis"]/corePart/parts/li[def="Leg"]/parts/li[def="Foot"]/parts/li[def="Toe"]/groups + +
  • CoveredByNaturalArmor
  • +
    +
    + + +
    \ No newline at end of file diff --git a/ModPatches/Mantis Race/Patches/Mantis Race/PawnKind_Mantis.xml b/ModPatches/Mantis Race/Patches/Mantis Race/PawnKind_Mantis.xml new file mode 100644 index 0000000000..c8a6a7a254 --- /dev/null +++ b/ModPatches/Mantis Race/Patches/Mantis Race/PawnKind_Mantis.xml @@ -0,0 +1,43 @@ + + + + + + Defs/PawnKindDef[@Name="MantisCivBase"] + +
  • + + 3 + 4 + +
  • +
    +
    + + + + Defs/PawnKindDef[@Name="MantisMilBase"] + +
  • + + 4 + 6 + +
  • +
    +
    + + + + Defs/PawnKindDef[defName="MantisSpaceSoldier"] + +
  • + + 6 + 8 + +
  • +
    +
    + +
    \ No newline at end of file diff --git a/ModPatches/Mantis Race/Patches/Mantis Race/Race_Mantis.xml b/ModPatches/Mantis Race/Patches/Mantis Race/Race_Mantis.xml new file mode 100644 index 0000000000..a066156cd6 --- /dev/null +++ b/ModPatches/Mantis Race/Patches/Mantis Race/Race_Mantis.xml @@ -0,0 +1,133 @@ + + + + + Defs/AlienRace.ThingDef_AlienRace[defName="Alien_Mantis"] + +
  • + Humanoid +
  • +
    +
    + + + Defs/AlienRace.ThingDef_AlienRace[defName="Alien_Mantis"]/statBases/MeleeDodgeChance + + 1.05 + 1.05 + 1.05 + 1 + 1 + + + + + Defs/AlienRace.ThingDef_AlienRace[defName="Alien_Mantis"]/tools + + +
  • + + +
  • Blunt
  • + + 1.2 + 1.33 + LeftHand + + +
  • + Stun + 14 +
  • +
    +
    + 0.175 + +
  • + + +
  • Blunt
  • + + 1.2 + 1.33 + RightHand + + +
  • + Stun + 14 +
  • +
    +
    + 0.175 + +
  • + + +
  • Cut
  • + + 18 + 1.33 + LeftHandClawsGroup + 6.85 + 10.35 + +
  • + + +
  • Cut
  • + + 18 + 1.33 + RightHandClawsGroup + 6.85 + 10.35 + +
  • + + +
  • Bite
  • + + 9 + 1.5 + Teeth + 0.24 + 0.5 + +
  • + + +
  • Blunt
  • + + 2.8 + 4.49 + HeadAttackTool + 0.2 + true + 0.95 + +
    +
    +
    + + + Defs/AlienRace.ThingDef_AlienRace[defName="Alien_Mantis"]/comps + +
  • + CombatExtended.CompPawnGizmo +
  • +
  • + 500 + true + 600 + 5 + 0.5 +
  • +
  • +
  • + CombatExtended.CompAmmoGiver +
  • +
    +
    + +
    \ No newline at end of file diff --git a/ModPatches/Mantis Race/Patches/Mantis Race/Scenarios.xml b/ModPatches/Mantis Race/Patches/Mantis Race/Scenarios.xml new file mode 100644 index 0000000000..bab42c150d --- /dev/null +++ b/ModPatches/Mantis Race/Patches/Mantis Race/Scenarios.xml @@ -0,0 +1,15 @@ + + + + + Defs/ScenarioDef[defName="MantissTribeScenario"]/scenario/parts + +
  • + StartingThing_Defined + Ammo_12Gauge_Buck + 60 +
  • +
    +
    + +
    \ No newline at end of file diff --git a/SupportedThirdPartyMods.md b/SupportedThirdPartyMods.md index bfbcb26473..66f04d54a4 100644 --- a/SupportedThirdPartyMods.md +++ b/SupportedThirdPartyMods.md @@ -310,6 +310,7 @@ Logann Race | Logistics_Mechanoid | Machines of War | Makeshift Melee Weapons | +Mantis Race | Marilyn the Mincho Worshipper Witch | Mass Effect - Playable Geth | Martens - Nature's Most Adorable Assassins |