Skip to content

Extended How to Use

Matthew Seal edited this page Jul 19, 2020 · 5 revisions

Extended How to Use

Beyond the basic how-to-use, this page outlines some neat features that allow for more in-depth integration of terrain-type movement rules.

Gearing Up

Say you want to be able to keep up with your friend Stuart Little from the How-to-use page in his native environment. Well you'll need to design some new gear in Defs/ThingDefs_Items/SandPowerArmor.xml.

<?xml version="1.0" encoding="utf-8" ?>
<Defs>
  <ThingDef ParentName="ArmorMachineableBase">
    <defName>Apparel_SandDrillerPowerArmor</defName>
    <label>sand-driller plate armor</label>
    <description>Augmented power armor with built-in sand-jets for fast traversal through sand.</description>
    </statBases>
    <equippedStatOffsets>
      <MoveSpeed>-0.3</MoveSpeed>
      <SandDrillingSpeed>3.5</SandDrillingSpeed>
    </equippedStatOffsets>
  </ThingDef>
</Defs>

This will let you keep up with your buddy and slaughter some raiders together!

Clone this wiki locally