Advertisement
JasonMcRay

Untitled

Aug 23rd, 2014
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1. <!--
  2. This is the user configurable SAG Mill recipe file. This file will not be modified or removed by EnderIO.
  3.  
  4. Adding new Recipes:
  5. For details of how to add a new recipe please see the documentation at the top of SAGMillRecipes_Core.xml.
  6.  
  7. Removing Recipes:
  8. To disable all recipes within a group, in this example Forestry, include the following in this file:
  9.  
  10. <recipeGroup name="Forestry" enabled="false"/>
  11.  
  12. To disable individual recipes, simply provide an invalid recipe for them:
  13.  
  14. <recipeGroup name="Applied Energistics">
  15. <recipe name="CertusQuartzOre"/>
  16. </recipeGroup>
  17.  
  18. To change an existing recipe, just add the recipe to this file using the same recipe group and recipe name as
  19. found in the core file.
  20.  
  21. -->
  22.  
  23. <SAGMillRecipes>
  24.  
  25. <!-- Disables all recipes in the group 'Vanilla'
  26. <recipeGroup name="Vanilla" enabled="false"/>
  27. -->
  28.  
  29. <!-- Uncomment this block to change the default TE obsidian -> dust recipe to the railcraft recipe.
  30. <recipeGroup name="Thermal Expansion">
  31.  
  32. <recipe name="Obsidian" energyCost="400">
  33. <input>
  34. <itemStack itemID="49" />
  35. </input>
  36. <output>
  37. <itemStack modID="Railcraft" itemName="tile.railcraft.cube" itemMeta="4" number="1" />
  38. </output>
  39. <output>
  40. <itemStack oreDictionary="dustObsidian" number="1" chance="0.15" />
  41. </output>
  42. <output>
  43. <itemStack oreDictionary="dustObsidian" number="1" chance="0.025" />
  44. </output>
  45. </recipe>
  46.  
  47. </recipeGroup>
  48. -->
  49.  
  50. <!-- Disables the glass recipes in the group 'Vanilla'
  51. <recipeGroup name="Vanilla">
  52. <recipe name="Glass"/>
  53. </recipeGroup>
  54. -->
  55.  
  56.  
  57. <!-- Modify a core recipe defination, in this case, make glass give diamonds.
  58. <recipeGroup name="Vanilla">
  59. <recipe name="Glass" energyCost="120">
  60. <input>
  61. <itemStack itemID="20" />
  62. </input>
  63. <output>
  64. <itemStack itemID="264" />
  65. </output>
  66. </recipe>
  67. </recipeGroup>
  68. -->
  69.  
  70. <recipeGroup name="infitech">
  71. <recipe name="Wither Skulls" energyCost="120">
  72. <input>
  73. <itemStack modID="infitech" itemName="blockWithering" itemMeta="1"/>
  74. </input>
  75. <output>
  76. <itemStack modID="minecraft" itemName="dragon_egg" number="1"/>
  77. <itemStack modID="minecraft" itemName="skull" itemMeta="1" number="1" />
  78. <itemStack modID="minecraft" itemName="skull" itemMeta="1" number="1" chance="0.15"/>
  79. </output>
  80. </recipe>
  81. </recipeGroup>
  82.  
  83. <recipeGroup name="exnihilo">
  84. <recipe name="iron gravel" energyCost="360">
  85. <input>
  86. <itemStack modID="exnihilo" itemName="iron_gravel"/>
  87. </input>
  88. <output>
  89. <itemStack oreDictionary="dustIron" number="2" />
  90. <itemStack oreDictionary="dustTin" number="1" chance="0.05" />
  91. <itemStack oreDictionary="dustNickel" number="1" chance="0.1"/>
  92. <itemStack modID="minecraft" itemName="gravel" chance="0.15"/>
  93. </output>
  94. </recipe>
  95. </recipeGroup>
  96. </SAGMillRecipes>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement