diff options
Diffstat (limited to 'config/enderio/SAGMillRecipes_User.xml')
-rw-r--r-- | config/enderio/SAGMillRecipes_User.xml | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/config/enderio/SAGMillRecipes_User.xml b/config/enderio/SAGMillRecipes_User.xml new file mode 100644 index 0000000000..82a2bc160c --- /dev/null +++ b/config/enderio/SAGMillRecipes_User.xml @@ -0,0 +1,107 @@ +<!-- +This is the user configurable SAG Mill recipe file. This file will not be modified or removed by EnderIO. + +Adding new Recipes: +For details of how to add a new recipe please see the documentation at the top of SAGMillRecipes_Core.xml. + +Removing Recipes: +To disable all recipes within a group, in this example Forestry, include the following in this file: + +<recipeGroup name="Forestry" enabled="false"/> + +To disable individual recipes, simply provide an invalid recipe for them: + +<recipeGroup name="Applied Energistics"> + <recipe name="CertusQuartzOre"/> +</recipeGroup> + +To change an existing recipe, just add the recipe to this file using the same recipe group and recipe name as +found in the core file. + +--> + +<SAGMillRecipes> + +<!-- Disables all recipes in the group 'Vanilla' +<recipeGroup name="Vanilla" enabled="false"/> +--> + +<!-- Uncomment this block to change the default TE obsidian -> dust recipe to the railcraft recipe. + <recipeGroup name="Thermal Expansion"> + + <recipe name="Obsidian" energyCost="400"> + <input> + <itemStack itemID="49" /> + </input> + <output> + <itemStack modID="Railcraft" itemName="tile.railcraft.cube" itemMeta="4" number="1" /> + </output> + <output> + <itemStack oreDictionary="dustObsidian" number="1" chance="0.15" /> + </output> + <output> + <itemStack oreDictionary="dustObsidian" number="1" chance="0.025" /> + </output> + </recipe> + +</recipeGroup> +--> + +<!-- Disables the glass recipes in the group 'Vanilla' +<recipeGroup name="Vanilla"> + <recipe name="Glass"/> +</recipeGroup> +--> + + +<!-- Modify a core recipe defination, in this case, make glass give diamonds. +<recipeGroup name="Vanilla"> + <recipe name="Glass" energyCost="120"> + <input> + <itemStack itemID="20" /> + </input> + <output> + <itemStack itemID="264" /> + </output> + </recipe> +</recipeGroup> +--> + +<!-- Adding a new recipe to a new group +<recipeGroup name="CrazyPantsGroup"> + <recipe name="SolarToGlass" energyCost="120"> + <input> + <itemStack modID="EnderIO" itemName="enderIO:blockSolarPanel"/> + </input> + <output> + <itemStack itemID="20" /> + </output> + </recipe> +</recipeGroup> +--> + +<!-- Adding a new grinding ball + <grindingBalls> + <grindingBall id="Diamond" grindingMultiplier="1.5" chanceMultiplier="2" powerMultiplier="0.5" durationRF="50000"> + <itemStack modID="minecraft" itemName="diamond"/> + </grindingBall> + </grindingBalls> + --> + +<!-- - Removing an existing grinding ball: + <grindingBalls> + <grindingBall id="Flint" remove="true" /> + </grindingBalls> + --> + + <!-- - Modifiying the excludes list: (removing glowstone, adding sand) + <grindingBalls> + <excludes> + <itemStack modID="minecraft" itemName="glowstone" remove="true" /> + <itemStack modID="minecraft" itemName="sand" /> + </excludes> + </grindingBalls> + --> + + +</SAGMillRecipes> |