mirror of
https://github.com/FalloutCollaborationProject/FCP-Power-Armor.git
synced 2026-07-27 17:03:15 -07:00
Updated ThingDefs_PowerArmorStation.xml to define the station as a work table, add relevant recipes, and enable bill tab. Added a patch to include the power armor station as a recipe user for all power armor paintjob recipes, allowing these recipes to be performed at the station.
26 lines
640 B
XML
26 lines
640 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<Patch>
|
|
|
|
<!-- Add Power Armor Station as a recipe user for all power armor paintjob recipes -->
|
|
|
|
<Operation Class="PatchOperationFindMod">
|
|
<mods>
|
|
<li>Fallout Core - Power Armor</li>
|
|
</mods>
|
|
<match Class="PatchOperationSequence">
|
|
<operations>
|
|
|
|
<!-- Add station to all existing paintjob recipes -->
|
|
<li Class="PatchOperationAdd">
|
|
<xpath>/Defs/RecipeDef[recipeUsers/li[text()="FCP_Production_Armor_Workbench"]]/recipeUsers</xpath>
|
|
<value>
|
|
<li>FCP_Building_PowerArmorStation</li>
|
|
</value>
|
|
</li>
|
|
|
|
</operations>
|
|
</match>
|
|
</Operation>
|
|
|
|
</Patch>
|