Noisy Pants
Refugee
I changed how much materials required and how much would be produced then put it in the mod folder. It works but I have two craft options for bullet tips.
Code:
<set xpath="/recipes/recipe[@name='resourceBulletTip']/@count">50
<!--<recipe name="resourceBulletTip" count="1" craft_area="forge" craft_tool="toolAndDieSet" material_based="true" tags="learnable">-->
<ingredient name="unit_lead" count="2"/>
<ingredient name="unit_clay" count="1"/>
</set>
Code:
<remove xpath="/recipes/recipe[@name='resourceBulletTip']"></remove>
<append xpath="/recipes">
<recipe name="resourceBulletTip" count="100" craft_area="forge" craft_tool="toolAndDieSet" material_based="true" tags="learnable">
<ingredient name="unit_lead" count="1"/>
<ingredient name="unit_clay" count="1"/>
</recipe>
</append>
Last edited by a moderator: