rimworld-animations-patch_m.../Patches/BodyParts_Humanoid.xml

32 lines
831 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<Patch>
<!-- Moves genitals to the legs -->
<Operation Class="PatchOperationConditional">
<xpath>Defs/BodyDef/corePart/parts/li[def = "Genitals"]/groups</xpath>
<match Class="PatchOperationReplace">
<xpath>Defs/BodyDef/corePart/parts/li[def = "Genitals"]/groups</xpath>
<value>
<groups>
<li>Legs</li>
<li>GenitalsBPG</li>
</groups>
</value>
</match>
</Operation>
<!-- Moves anus to the legs -->
<Operation Class="PatchOperationConditional">
<xpath>Defs/BodyDef/corePart/parts/li[def = "Anus"]/groups</xpath>
<match Class="PatchOperationReplace">
<xpath>Defs/BodyDef/corePart/parts/li[def = "Anus"]/groups</xpath>
<value>
<groups>
<li>Legs</li>
<li>AnusBPG</li>
</groups>
</value>
</match>
</Operation>
</Patch>