Advertisement
Guest User

Untitled

a guest
Jan 12th, 2020
547
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.69 KB | None | 0 0
  1. <configs>
  2. <append xpath="/recipes">
  3. <!-- Raw Recipes -->
  4. <recipe name="Titanium" count="1" craft_area="forge" material_based="true" tags="learnable">
  5. <ingredient name="resourceForgedSteel" count="100"/>
  6. <ingredient name="unit_lead" count="2500"/>
  7. <ingredient name="unit_clay" count="2000"/>
  8. </recipe>
  9. <!-- Titanium Recipes -->
  10. <recipe name="Titanium Pickaxe" count="1" craft_area="workbench">
  11. <ingredient name="Titanium" count="20" />
  12. <ingredient name="resourceCoal" count="1000" />
  13. <ingredient name="resourceRawDiamond" count="5" />
  14. <ingredient name="resourceWood" count="800" />
  15. <effect_group>
  16. <passive_effect name="CraftingIngredientCount" level="2,6" operation="perc_add" value=".5,3" tags="resourceForgedIron,resourceCoal,resourceRawDiamond"/>
  17. </effect_group>
  18. </recipe>
  19.  
  20. <recipe name="Titanium Fireaxe" count="1" craft_area="workbench" tags="learnable">
  21. <ingredient name="Titanium" count="10" />
  22. <ingredient name="resourceForgedSteel" count="100" />
  23. <ingredient name="resourceWood" count="800" />
  24. <effect_group>
  25. <passive_effect name="CraftingIngredientCount" level="2,6" operation="perc_add" value=".5,3" tags="resourceForgedIron"/>
  26. </effect_group>
  27. </recipe>
  28.  
  29. <recipe name="Titanium Sledgehammer" count="1" craft_area="workbench" tags="learnable">
  30. <ingredient name="Titanium" count="6" />
  31. <ingredient name="resourceForgedSteel" count="60" />
  32. <ingredient name="resourceWood" count="800" />
  33. <effect_group>
  34. <passive_effect name="CraftingIngredientCount" level="2,6" operation="perc_add" value=".5,3" tags="resourceForgedIron"/>
  35. </effect_group>
  36. </recipe>
  37.  
  38. <!-- ModificationPlus Recipes -->
  39.  
  40. <recipe name="Advanced Small Fuel Tank" count="1" craft_area="workbench" material_based="true" tags="learnable">
  41. <ingredient name="resourceScrapPolymers" count="1000"/>
  42. <ingredient name="ammoGasCan" count="5000"/>
  43. <ingredient name="resourceForgedIron" count="250"/>
  44. <ingredient name="modFuelTankLargeSchematic" count="1"/>
  45. </recipe>
  46.  
  47. <recipe name="Advanced Medium Fuel Tank" count="1" craft_area="workbench" material_based="true" tags="learnable">
  48. <ingredient name="resourceForgedSteel" count="3000"/>
  49. <ingredient name="ammoGasCan" count="15000"/>
  50. <ingredient name="resourceForgedIron" count="600"/>
  51. <ingredient name="Advanced Small Fuel Tank" count="1"/>
  52. </recipe>
  53.  
  54. <recipe name="Advanced Large Fuel Tank" count="1" craft_area="workbench" material_based="true" tags="learnable">
  55. <ingredient name="resourceForgedSteel" count="8000"/>
  56. <ingredient name="ammoGasCan" count="30000"/>
  57. <ingredient name="resourceForgedIron" count="1200"/>
  58. <ingredient name="Advanced Medium Fuel Tank" count="1"/>
  59. </recipe>
  60.  
  61. <!-- AutomaticLife Recipes -->
  62.  
  63. <recipe name="Automatic Wrench" count="1" craft_area="workbench" tags="learnable">
  64. <ingredient name="Titanium" count="20"/>
  65. <ingredient name="resourceMechanicalParts" count="600"/>
  66. <ingredient name="resourceElectricParts" count="500"/>
  67. <ingredient name="Titanium Alloy Red" count="100" />
  68. <effect_group>
  69. <passive_effect name="CraftingIngredientCount" level="2,6" operation="perc_add" value=".5,2.5" tags="resourceForgedSteel,resourceMechanicalParts,resourceElectricParts"/>
  70. </effect_group>
  71. </recipe>
  72.  
  73. <recipe name="Titanium Alloy Red" count="1" craft_area="workbench" tags="perkSalvageOperations">
  74. <ingredient name="Titanium" count="1"/>
  75. <ingredient name="modDyeRed" count="10"/>
  76. <ingredient name="resourceForgedIron" count="50"/>
  77. <ingredient name="resourceClayLump" count="200" />
  78. <effect_group>
  79. <passive_effect name="CraftingIngredientCount" level="2,6" operation="perc_add" value=".5,2.5" tags="resourceForgedSteel,resourceMechanicalParts,resourceElectricParts"/>
  80. </effect_group>
  81. </recipe>
  82.  
  83. <recipe name="Titanium Alloy Gold" count="1" craft_area="workbench" tags="perkSalvageOperations">
  84. <ingredient name="Titanium" count="1"/>
  85. <ingredient name="modDyeYellow" count="10"/>
  86. <ingredient name="resourceForgedIron" count="50"/>
  87. <ingredient name="resourceClayLump" count="200" />
  88. <effect_group>
  89. <passive_effect name="CraftingIngredientCount" level="2,6" operation="perc_add" value=".5,2.5" tags="resourceForgedSteel,resourceMechanicalParts,resourceElectricParts"/>
  90. </effect_group>
  91. </recipe>
  92.  
  93. <recipe name="Advanced Nailgun" count="1" craft_area="workbench" tags="learnable">
  94. <ingredient name="Titanium" count="1"/>
  95. <ingredient name="resourceMechanicalParts" count="600"/>
  96. <ingredient name="gunToolNailgun" count="q"/>
  97. <ingredient name="Titanium Alloy Gold" count="5" />
  98. <effect_group>
  99. <passive_effect name="CraftingIngredientCount" level="2,6" operation="perc_add" value=".5,2.5" tags="resourceForgedSteel,resourceMechanicalParts,resourceElectricParts"/>
  100. </effect_group>
  101. </recipe>
  102.  
  103. </append>
  104. </configs>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement