-
Notifications
You must be signed in to change notification settings - Fork 3
Extended How to Use
Matthew Seal edited this page Jul 19, 2020
·
5 revisions
Beyond the basic how-to-use, this page outlines some neat features that allow for more in-depth integration of terrain-type movement rules.
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!