initial
This commit is contained in:
487
.minecraft/config/enderio/AlloySmelterRecipes_Core.xml
Normal file
487
.minecraft/config/enderio/AlloySmelterRecipes_Core.xml
Normal file
@@ -0,0 +1,487 @@
|
||||
<!--
|
||||
IMPORTANT:
|
||||
This is the core recipe file. Modifying this file will have no effect. It will be rewritten by EnderIO and all
|
||||
modifications made to it will be lost. To add or modify recipes please use 'AlloySmelterRecipes_User.xml'.
|
||||
|
||||
Please refer to the documentation in 'SAGMillRecipes_Core.xml or _User.xml' for details on the format used. Recipes for
|
||||
the alloy smelter have multiple inputs (up to three) and a single output. Multiple output tags can be used as long as
|
||||
they are for the same item. This allows 'chance' outputs, for example, if you wanted to output some 4 bronze ingots
|
||||
with a 50% chance of a fifth, you would use:
|
||||
|
||||
<recipe name="Smelted Bronze" energyCost="750" >
|
||||
<input>
|
||||
<itemStack oreDictionary="ingotCopper" number="1" />
|
||||
</input>
|
||||
<input>
|
||||
<itemStack oreDictionary="ingotTon" number="3" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotBronze" number="4" exp="0.5" />
|
||||
<itemStack oreDictionary="ingotBronze" number="1" exp="0.5" chance="0.5" />
|
||||
</output>
|
||||
</recipe>
|
||||
|
||||
The 'exp' value ranges from 0-1. Some examples values from a vanilla furnace are:
|
||||
gold=1
|
||||
iron=0.7
|
||||
food=0.35
|
||||
sand/cobble/wood=0.1
|
||||
|
||||
Recipes can also be added using forge IMC messages. For example, in the init method of a mod:
|
||||
|
||||
String recipe =
|
||||
"<recipeGroup name=\"cheaty\" >" +
|
||||
"<recipe name=\"foo\" energyCost=\"2400\" >" +
|
||||
"<input>" +
|
||||
"<itemStack modID=\"minecraft\" itemName=\"dirt\" />" +
|
||||
"</input>" +
|
||||
"<output>" +
|
||||
"<itemStack modID=\"minecraft\" itemName=\"diamond\" />" +
|
||||
"</output>" +
|
||||
"</recipe>" +
|
||||
"</recipeGroup>";
|
||||
FMLInterModComms.sendMessage("EnderIO", "recipe:alloysmelter", recipe);
|
||||
|
||||
Item Information and data dumps:
|
||||
|
||||
To write all registered items to config/modObjectsRegistery.txt include:
|
||||
|
||||
<dumpRegistry modObjects="true" />
|
||||
|
||||
To write the contents of the ore dictionary to config/oreDictionaryRegistery.txt include:
|
||||
|
||||
<dumpRegistery oreDictionary="true" />
|
||||
|
||||
To show ore dictionary and/or registered names, in the EnderCore config set:
|
||||
|
||||
addRegistryNameTooltip=true
|
||||
addOreDictionaryTooltips=true
|
||||
|
||||
-->
|
||||
|
||||
<AlloySmelterRecipes>
|
||||
|
||||
<recipeGroup name="EnderIO" > <!-- Required for EnderIO to function correctly. -->
|
||||
<recipe name="Electrical Steel" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="iron_ingot" />
|
||||
<itemStack oreDictionary="dustCoal" />
|
||||
<itemStack oreDictionary="itemSilicon" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="0" exp="0.5" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Energetic Alloy" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="redstone" />
|
||||
<itemStack modID="minecraft" itemName="gold_ingot" />
|
||||
<itemStack modID="minecraft" itemName="glowstone_dust" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="1" exp="0.7" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Vibrant Alloy" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="1" /> <!-- Energetic Alloy -->
|
||||
<itemStack modID="minecraft" itemName="ender_pearl" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="2" exp="1" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Redstone Alloy" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="redstone" />
|
||||
<itemStack modID="EnderIO" itemName="itemMaterial" itemMeta="0" /> <!-- Silicon -->
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="3" exp="0.5" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Conductive Iron" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="redstone" />
|
||||
<itemStack modID="minecraft" itemName="iron_ingot" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="4" exp="0.5" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Pulsating Iron" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="iron_ingot" />
|
||||
<itemStack modID="minecraft" itemName="ender_pearl" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="5" exp="0.7" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Dark Steel" energyCost="20000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="iron_ingot" />
|
||||
<itemStack oreDictionary="dustCoal" />
|
||||
<itemStack modID="minecraft" itemName="obsidian" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="6" exp="0.5" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Soularium" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="soul_sand" />
|
||||
<itemStack modID="minecraft" itemName="gold_ingot" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="7" exp="0.7" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="End Steel" energyCost="20000">
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="end_stone" />
|
||||
<itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="6" />
|
||||
<itemStack modID="minecraft" itemName="obsidian" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="8" exp="0.7" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Fused Quartz" energyCost="5000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="quartz" number="4" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" exp="0.5" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Fused Glass" energyCost="2500" >
|
||||
<input>
|
||||
<itemStack oreDictionary="sand" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="1" exp="0.2" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Enlightened Fused Quartz" energyCost="5000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="quartz" number="4" />
|
||||
<itemStack modID="minecraft" itemName="glowstone_dust" number="4" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="2" exp="0.5" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Enlightened Fused Quartz 2" energyCost="5000" >
|
||||
<input>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" />
|
||||
<itemStack modID="minecraft" itemName="glowstone_dust" number="4" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="2" exp="0.5" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Enlightened Fused Glass" energyCost="2500" >
|
||||
<input>
|
||||
<itemStack oreDictionary="sand" />
|
||||
<itemStack modID="minecraft" itemName="glowstone_dust" number="4" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="3" exp="0.2" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Enlightened Fused Glass 2" energyCost="2500" >
|
||||
<input>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="1" />
|
||||
<itemStack modID="minecraft" itemName="glowstone_dust" number="4" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="3" exp="0.2" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Fused Quartz from Block" energyCost="5000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="quartz_block" number="1" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" exp="0.5" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Enlightened Fused Quartz from Block" energyCost="5000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="quartz_block" number="1" />
|
||||
<itemStack modID="minecraft" itemName="glowstone_dust" number="4" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="2" exp="0.5" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Enlightened Fused Quartz from Block 2" energyCost="5000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="quartz_block" number="1" />
|
||||
<itemStack modID="minecraft" itemName="glowstone" number="1" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="2" exp="0.5" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Enlightened Fused Quartz from Block 3" energyCost="5000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="quartz" number="4" />
|
||||
<itemStack modID="minecraft" itemName="glowstone" number="1" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="2" exp="0.5" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Enlightened Fused Quartz from Block 4" energyCost="5000" >
|
||||
<input>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" />
|
||||
<itemStack modID="minecraft" itemName="glowstone" number="1" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="2" exp="0.5" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Dark Fused Quartz" energyCost="5000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="quartz" number="4" />
|
||||
<itemStack oreDictionary="dyeBlack" number="4" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="4" exp="0.5" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Dark Fused Quartz from Block" energyCost="5000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="quartz_block" number="1" />
|
||||
<itemStack oreDictionary="dyeBlack" number="4" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="4" exp="0.5" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Dark Fused Quartz from Block 2" energyCost="5000" >
|
||||
<input>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" />
|
||||
<itemStack oreDictionary="dyeBlack" number="4" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="4" exp="0.5" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Dark Fused Glass" energyCost="2500" >
|
||||
<input>
|
||||
<itemStack oreDictionary="sand" />
|
||||
<itemStack oreDictionary="dyeBlack" number="4" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="5" exp="0.2" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Dark Fused Glass 2" energyCost="2500" >
|
||||
<input>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="1" />
|
||||
<itemStack oreDictionary="dyeBlack" number="4" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="5" exp="0.2" />
|
||||
</output>
|
||||
</recipe>
|
||||
</recipeGroup>
|
||||
|
||||
<recipeGroup name="Thermal Expansion" >
|
||||
<recipe name="Electrum Ingot" energyCost="2000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="ingotGold" />
|
||||
<itemStack oreDictionary="ingotSilver" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotElectrum" number="2" exp="0.25" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Invar Ingot" energyCost="3000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="ingotNickel" />
|
||||
<itemStack oreDictionary="ingotIron" number="2" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotInvar" number="3" exp="0.25" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Hardened Glass" energyCost="4000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustObsidian" number="4" />
|
||||
<itemStack oreDictionary="ingotLead" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="ThermalExpansion" itemName="Glass" number="2" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Bronze" energyCost="4000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="ingotCopper" number="3" />
|
||||
<itemStack oreDictionary="ingotTin" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotBronze" number="4" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Enderium Base" energyCost="4000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="ingotTin" number="2" />
|
||||
<itemStack oreDictionary="ingotSilver" />
|
||||
<itemStack oreDictionary="ingotPlatinum" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotEnderiumBase" number="4" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Enderium" energyCost="50000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="ingotEnderiumBase" number="2" />
|
||||
<itemStack modID="ThermalFoundation" itemName="material" itemMeta="512" />
|
||||
<itemStack modID="minecraft" itemName="ender_pearl" number="2" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotEnderium" number="2" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Fluxed Electrum" energyCost="32000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="ingotElectrum" number="2" />
|
||||
<itemStack modID="minecraft" itemName="redstone" number="4" />
|
||||
<itemStack modID="ThermalFoundation" itemName="material" itemMeta="512" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotElectrumFlux" number="2" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Signalum" energyCost="32000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="ingotCopper" number="3" />
|
||||
<itemStack oreDictionary="ingotSilver" />
|
||||
<itemStack modID="minecraft" itemName="redstone" number="10" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotSignalum" number="4" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Lumium from dust" energyCost="32000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="ingotTin" number="3" />
|
||||
<itemStack oreDictionary="ingotSilver" />
|
||||
<itemStack modID="minecraft" itemName="glowstone_dust" number="4" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotLumium" number="4" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Lumium" energyCost="32000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="ingotTin" number="3" />
|
||||
<itemStack oreDictionary="ingotSilver" />
|
||||
<itemStack modID="minecraft" itemName="glowstone" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotLumium" number="4" />
|
||||
</output>
|
||||
</recipe>
|
||||
</recipeGroup>
|
||||
|
||||
<recipeGroup name="Endergy" >
|
||||
<recipe name="Crude Steel" energyCost="5000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="gravel" />
|
||||
<itemStack oreDictionary="itemClay" />
|
||||
<itemStack oreDictionary="cobblestone" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotCrudeSteel" number="1" exp="0.1" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Crystalline Alloy" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="ingotGold" />
|
||||
<itemStack oreDictionary="itemPulsatingPowder" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotCrystallineAlloy" number="1" exp="0.5" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Melodic Alloy" energyCost="20000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="ingotEndSteel" />
|
||||
<itemStack oreDictionary="pearlEnderEye" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotMelodicAlloy" number="1" exp="1" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Stellar Alloy" energyCost="20000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="itemNetherStar" />
|
||||
<itemStack oreDictionary="ingotMelodicAlloy" />
|
||||
<itemStack oreDictionary="itemClay" number="4" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotStellarAlloy" number="2" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Crystalline Pink Slime" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="slimeballPink" number="2" />
|
||||
<itemStack oreDictionary="itemPulsatingPowder" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotCrystallinePinkSlime" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Energetic Silver" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="ingotSilver" />
|
||||
<itemStack oreDictionary="dustRedstone" />
|
||||
<itemStack oreDictionary="dustGlowstone" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotEnergeticSilver" number="1" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Vivid Alloy" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="ingotEnergeticSilver" number="1" />
|
||||
<itemStack oreDictionary="pearlEnder" number="1" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotVividAlloy" number="1" />
|
||||
</output>
|
||||
</recipe>
|
||||
</recipeGroup>
|
||||
|
||||
<vanillaFurnaceRecipes enabled="true" />
|
||||
|
||||
</AlloySmelterRecipes>
|
||||
|
||||
<!-- This is an optional Steel Recipe, append one or both of these to a group in the 'AlloySmelterRecipes_User.xml'
|
||||
|
||||
<recipe name="Steel" energyCost="8000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="ingotIron" number="1" />
|
||||
<itemStack oreDictionary="dustCoal" number="2" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotSteel" number="1" />
|
||||
</output>
|
||||
</recipe>
|
||||
|
||||
<recipe name="Steel - Charcoal" energyCost="8000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="ingotIron" number="1" />
|
||||
<itemStack modID="minecraft" itemName="coal" itemMeta="1" number="4" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotSteel" number="1" />
|
||||
</output>
|
||||
</recipe>
|
||||
|
||||
-->
|
||||
260
.minecraft/config/enderio/AlloySmelterRecipes_User.xml
Normal file
260
.minecraft/config/enderio/AlloySmelterRecipes_User.xml
Normal file
@@ -0,0 +1,260 @@
|
||||
<!--
|
||||
Custom recipes that will not be over written by Ender IO are added here. Examples of recipes can be found in the
|
||||
AlloySmelterRecipes_Core.xml and general format documentation in the SAGMillRecipes_Core/User.
|
||||
|
||||
As well as adding custom recipes to the operation of the Alloy Smelter, a vanilla furnace recipe can be controlled.
|
||||
It can be disabled completely by simply adding this line:
|
||||
|
||||
<vanillaFurnaceRecipes enabled="false" />
|
||||
|
||||
It is also possible to selectively disable vanilla furnace recipes. The following example disables the smelting of iron
|
||||
ingots, ender pearls, and any form of iron ore registered in the ore dictionary.
|
||||
|
||||
<vanillaFurnaceRecipes>
|
||||
|
||||
<exclude>
|
||||
<itemStack modID="minecraft" itemName="iron_ingot" />
|
||||
<itemStack modID="minecraft" itemName="ender_pearl" />
|
||||
<itemStack oreDictionary="oreIron" />
|
||||
</exclude>
|
||||
|
||||
</vanillaFurnaceRecipes>
|
||||
|
||||
Add this line to disable the creation of TE alloys using the Alloy Smelter.
|
||||
|
||||
<recipeGroup name="Thermal Expansion" enabled="false" />
|
||||
|
||||
-->
|
||||
|
||||
<AlloySmelterRecipes>
|
||||
<vanillaFurnaceRecipes enabled="false" />
|
||||
<recipeGroup name="EnderIO" enabled="false" />
|
||||
<recipeGroup name="Thermal Expansion" enabled="false" />
|
||||
<recipeGroup name="Endergy" enabled="false" />
|
||||
|
||||
<!-- GT New Horizons Recipes
|
||||
-->
|
||||
<recipeGroup name="GTNewHorizons" >
|
||||
<!-- <recipe name="Electrical Steel" energyCost="500000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustSteel" />
|
||||
<itemStack oreDictionary="dustCoal" />
|
||||
<itemStack oreDictionary="dustSilicon" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotElectricalSteel" number="1" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Energetic Alloy" energyCost="1500000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustTungstenSteel" />
|
||||
<itemStack oreDictionary="dustGold" />
|
||||
<itemStack oreDictionary="dustConductiveIron" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotEnergeticAlloy" number="1" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Vibrant Alloy" energyCost="2000000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustEnergeticAlloy" />
|
||||
<itemStack oreDictionary="dustEnderEye" />
|
||||
<itemStack oreDictionary="dustChrome" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotVibrantAlloy" number="1" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Redstone Alloy" energyCost="500000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustRedstone" />
|
||||
<itemStack oreDictionary="dustSilicon" />
|
||||
<itemStack oreDictionary="dustCoal" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotRedstoneAlloy" number="1" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Conductive Iron" energyCost="1000000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustRedstoneAlloy" />
|
||||
<itemStack oreDictionary="dustIron" />
|
||||
<itemStack oreDictionary="dustTitanium" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotConductiveIron" number="1" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Pulsating Iron" energyCost="1000000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustIron" />
|
||||
<itemStack oreDictionary="dustEnderPearl" />
|
||||
<itemStack oreDictionary="dustRedstone" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotPulsatingIron" number="1" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Dark Steel" energyCost="2000000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustElectricalSteel" />
|
||||
<itemStack oreDictionary="dustCoal" />
|
||||
<itemStack oreDictionary="dustObsidian" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotDarkSteel" number="1" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Soularium" energyCost="1000000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="soul_sand" />
|
||||
<itemStack oreDictionary="dustGold" />
|
||||
<itemStack oreDictionary="dustAsh" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotSoularium" number="1" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Enderium Base" energyCost="2000000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustTin" number="2" />
|
||||
<itemStack oreDictionary="dustSilver" />
|
||||
<itemStack oreDictionary="dustPlatinum" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotEnderiumBase" number="4" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Enderium" energyCost="3000000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustEnderiumBase" number="2" />
|
||||
<itemStack oreDictionary="dustThaumium" />
|
||||
<itemStack oreDictionary="dustEnderPearl" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack oreDictionary="ingotEnderium" number="2" />
|
||||
</output>
|
||||
</recipe>
|
||||
-->
|
||||
<recipe name="Fused Quartz 1" energyCost="20000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustCertusQuartz" />
|
||||
<itemStack oreDictionary="dustNetherQuartz" />
|
||||
<itemStack oreDictionary="dustGlass" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" number="3" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Fused Quartz 2" energyCost="20000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustQuartzite" />
|
||||
<itemStack oreDictionary="dustNetherQuartz" />
|
||||
<itemStack oreDictionary="dustGlass" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" number="3" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Fused Quartz 3" energyCost="20000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustQuartzite" />
|
||||
<itemStack oreDictionary="dustCertusQuartz" />
|
||||
<itemStack oreDictionary="dustGlass" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" number="3" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Fused Quartz 4" energyCost="20000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustNetherQuartz" />
|
||||
<itemStack oreDictionary="dustNetherQuartz" />
|
||||
<itemStack oreDictionary="dustGlass" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" number="3" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Fused Quartz 5" energyCost="20000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustCertusQuartz" />
|
||||
<itemStack oreDictionary="dustCertusQuartz" />
|
||||
<itemStack oreDictionary="dustGlass" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" number="3" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Fused Quartz 6" energyCost="20000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustCertusQuartzite" />
|
||||
<itemStack oreDictionary="dustCertusQuartzite" />
|
||||
<itemStack oreDictionary="dustGlass" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" number="3" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Fused Quartz 7" energyCost="20000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustQuartzite" />
|
||||
<itemStack oreDictionary="dustQuartzite" />
|
||||
<itemStack oreDictionary="dustGlass" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" number="3" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Fused Glass clear" energyCost="15000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustGlass" />
|
||||
<itemStack oreDictionary="dustGlass" />
|
||||
<itemStack oreDictionary="dustGlass" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="1" number="3" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Enlightened Fused Quartz 2" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" />
|
||||
<itemStack oreDictionary="dustGlowstone" number="2" />
|
||||
<itemStack oreDictionary="dustGlowstone" number="2" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="2" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Enlightened Fused Glass 2" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="1" />
|
||||
<itemStack oreDictionary="dustGlowstone" number="2" />
|
||||
<itemStack oreDictionary="dustGlowstone" number="2" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="3" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Dark Fused Quartz" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" />
|
||||
<itemStack oreDictionary="dyeBlack" number="2" />
|
||||
<itemStack oreDictionary="dyeBlack" number="2" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="4" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Dark Fused Glass" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="1" />
|
||||
<itemStack oreDictionary="dyeBlack" number="2" />
|
||||
<itemStack oreDictionary="dyeBlack" number="2" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="5" />
|
||||
</output>
|
||||
</recipe>
|
||||
</recipeGroup>
|
||||
</AlloySmelterRecipes>
|
||||
27
.minecraft/config/enderio/EnchanterRecipes_User.xml
Normal file
27
.minecraft/config/enderio/EnchanterRecipes_User.xml
Normal file
@@ -0,0 +1,27 @@
|
||||
<!-- An example of how to add the enchantments from Thaumcraft.
|
||||
|
||||
<enchantment name="enchantment.potency" costPerLevel="5" >
|
||||
<itemStack modID="Thaumcraft" itemName="ItemShard" itemMeta="1" />
|
||||
</enchantment>
|
||||
|
||||
<enchantment name="enchantment.frugal" costPerLevel="5" >
|
||||
<itemStack modID="Thaumcraft" itemName="ItemShard" itemMeta="4" />
|
||||
</enchantment>
|
||||
|
||||
<enchantment name="enchantment.wandfortune" costPerLevel="5" >
|
||||
<itemStack modID="Thaumcraft" itemName="blockCustomPlant" itemMeta="1" />
|
||||
</enchantment>
|
||||
|
||||
<enchantment name="enchantment.haste" costPerLevel="5" >
|
||||
<itemStack modID="Thaumcraft" itemName="blockMetalDevice" itemMeta="8" />
|
||||
</enchantment>
|
||||
|
||||
<enchantment name="enchantment.repair" costPerLevel="15" >
|
||||
<itemStack modID="Thaumcraft" itemName="BlockJarNodeItem" />
|
||||
</enchantment>
|
||||
|
||||
-->
|
||||
|
||||
<enchaterRecipes>
|
||||
|
||||
</enchaterRecipes>
|
||||
1132
.minecraft/config/enderio/EnderIO.cfg
Normal file
1132
.minecraft/config/enderio/EnderIO.cfg
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
||||
<!--
|
||||
Entries in this file take precedence over the values in the core file
|
||||
-->
|
||||
|
||||
<OreDictionaryPreferences>
|
||||
|
||||
</OreDictionaryPreferences>
|
||||
15
.minecraft/config/enderio/PainterPaintSources_User.xml
Normal file
15
.minecraft/config/enderio/PainterPaintSources_User.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<!--
|
||||
See PainterPaintSources_Core.xml for documentation.
|
||||
-->
|
||||
|
||||
<PainterPaintSources>
|
||||
|
||||
<whitelist>
|
||||
|
||||
</whitelist>
|
||||
|
||||
<blacklist>
|
||||
|
||||
</blacklist>
|
||||
|
||||
</PainterPaintSources>
|
||||
15980
.minecraft/config/enderio/SAGMillRecipes_User.xml
Normal file
15980
.minecraft/config/enderio/SAGMillRecipes_User.xml
Normal file
File diff suppressed because it is too large
Load Diff
98
.minecraft/config/enderio/SliceAndSpliceRecipes_User.xml
Normal file
98
.minecraft/config/enderio/SliceAndSpliceRecipes_User.xml
Normal file
@@ -0,0 +1,98 @@
|
||||
<SliceAndSpliceRecipes>
|
||||
<recipeGroup name="EnderIO" enabled="false" />
|
||||
|
||||
<recipeGroup name="GTNewHorizons" >
|
||||
<recipe name="Electrode Skull" energyCost="100000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="plateEnergeticAlloy" slot="0" />
|
||||
<itemStack modID="minecraft" itemName="skull" itemMeta="2" slot="1" />
|
||||
<itemStack oreDictionary="plateEnergeticAlloy" slot="2" />
|
||||
<itemStack oreDictionary="plateSiliconSolarGrade" slot="3" />
|
||||
<itemStack modID="EnderIO" itemName="itemBasicCapacitor" itemMeta="0" slot="4" />
|
||||
<itemStack oreDictionary="plateSiliconSolarGrade" slot="5" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="itemFrankenSkull" itemMeta="0" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Controller Skull" energyCost="200000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="plateSoularium" slot="0" />
|
||||
<itemStack modID="minecraft" itemName="skull" itemMeta="2" slot="1" />
|
||||
<itemStack oreDictionary="plateSoularium" slot="2" />
|
||||
<itemStack oreDictionary="plateSiliconSolarGrade" slot="3" />
|
||||
<itemStack oreDictionary="plateRedAlloy" slot="4" />
|
||||
<itemStack oreDictionary="plateSiliconSolarGrade" slot="5" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="itemFrankenSkull" itemMeta="1" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Tormented Enderman Head" energyCost="100000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="plateSoularium" slot="0" />
|
||||
<itemStack modID="EnderIO" itemName="blockEndermanSkull" itemMeta="0" slot="1" />
|
||||
<itemStack oreDictionary="plateSoularium" slot="2" />
|
||||
<itemStack modID="minecraft" itemName="potion" slot="3" />
|
||||
<itemStack modID="EnderIO" itemName="itemBasicCapacitor" itemMeta="0" slot="4" />
|
||||
<itemStack modID="minecraft" itemName="potion" slot="5" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="blockEndermanSkull" itemMeta="2" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Ender Resonator" energyCost="200000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="plateSoularium" slot="0" />
|
||||
<itemStack modID="EnderIO" itemName="blockEndermanSkull" itemMeta="0" slot="1" />
|
||||
<itemStack oreDictionary="plateSoularium" slot="2" />
|
||||
<itemStack oreDictionary="plateSiliconSolarGrade" slot="3" />
|
||||
<itemStack oreDictionary="plateVibrantAlloy" slot="4" />
|
||||
<itemStack oreDictionary="plateSiliconSolarGrade" slot="5" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="itemFrankenSkull" itemMeta="3" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Skeletal Contractor" energyCost="200000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="plateSoularium" slot="0" />
|
||||
<itemStack modID="minecraft" itemName="skull" itemMeta="0" slot="1" />
|
||||
<itemStack oreDictionary="plateSoularium" slot="2" />
|
||||
<itemStack modID="minecraft" itemName="rotten_flesh" itemMeta="0" slot="3" />
|
||||
<itemStack oreDictionary="plateSiliconSolarGrade" slot="4" />
|
||||
<itemStack modID="minecraft" itemName="rotten_flesh" itemMeta="0" slot="5" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="itemFrankenSkull" itemMeta="5" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Guardian Diode" energyCost="500000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="plateEnergeticAlloy" slot="0" />
|
||||
<itemStack oreDictionary="gemDiamond" slot="1" />
|
||||
<itemStack oreDictionary="plateEnergeticAlloy" slot="2" />
|
||||
<itemStack modID="EnderIO" itemName="itemMaterial" itemMeta="5" slot="3" />
|
||||
<itemStack oreDictionary="plateSiliconSolarGrade" slot="4" />
|
||||
<itemStack modID="EnderIO" itemName="itemMaterial" itemMeta="5" slot="5" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="itemFrankenSkull" itemMeta="6" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Totemic Capacitor" energyCost="2000000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="plateStellarAlloy" slot="0" />
|
||||
<itemStack modID="EnderIO" itemName="itemFrankenSkull" itemMeta="5" slot="1" />
|
||||
<itemStack oreDictionary="plateStellarAlloy" slot="2" />
|
||||
<itemStack oreDictionary="plateMelodicAlloy" slot="3" />
|
||||
<itemStack modID="EnderIO" itemName="itemBasicCapacitor" itemMeta="5" slot="4" />
|
||||
<itemStack oreDictionary="plateMelodicAlloy" slot="5" />
|
||||
</input>
|
||||
<output>
|
||||
<itemStack modID="EnderIO" itemName="itemBasicCapacitor" itemMeta="6" />
|
||||
</output>
|
||||
</recipe>
|
||||
</recipeGroup>
|
||||
|
||||
</SliceAndSpliceRecipes>
|
||||
153
.minecraft/config/enderio/VatRecipes_Core.xml
Normal file
153
.minecraft/config/enderio/VatRecipes_Core.xml
Normal file
@@ -0,0 +1,153 @@
|
||||
<!--
|
||||
IMPORTANT:
|
||||
This is the core recipe file. Modifying this file will have no effect. It will be rewritten by EnderIO and all
|
||||
modifications made to it will be lost. To add or modify recipes please use 'VatRecipes_User.xml'. Recipes
|
||||
are organized into named groups. A group of recipes can be disabled by setting the attribute 'enabled=false'. A
|
||||
recipe group is composed of one or more recipes.
|
||||
|
||||
Vat recipes take two item inputs and one fluid input, and output a fluid.
|
||||
The various values are calulcated like this:
|
||||
|
||||
For:
|
||||
ingredient multiplier (IM) = slot0.multiplier * slot1.multiplier;
|
||||
|
||||
input fluid volume (mb) = IM * 1000
|
||||
|
||||
Produce:
|
||||
output fluid volume (mb) = IM * inputFluid.multiplier * 1000.
|
||||
|
||||
The vat always uses 1 RF per tick, so energy cost also equates to duration.
|
||||
|
||||
Recipes can also be added using forge IMC messages. For example, in the init method of a mod:
|
||||
String recipe =
|
||||
"<recipeGroup name=\"cheaty\" >" +
|
||||
"<recipe name=\"foo\" energyCost=\"2400\" >" +
|
||||
"<input>" +
|
||||
"<itemStack modID=\"minecraft\" itemName=\"dirt\" slot=\"0\" />" +
|
||||
"<fluidStack name=\"water\" multiplier=\"1\" />" +
|
||||
"</input>" +
|
||||
"<output>" +
|
||||
"<fluidStack name=\"lava\" />" +
|
||||
"</output>" +
|
||||
"</recipe>" +
|
||||
"</recipeGroup>";
|
||||
FMLInterModComms.sendMessage("EnderIO", "recipe:vat", recipe);
|
||||
|
||||
-->
|
||||
|
||||
<VatRecipes>
|
||||
|
||||
<recipeGroup name="EnderIO" > <!-- Required for EnderIO to function correctly. -->
|
||||
<recipe name="Nutrient Distilation" energyCost="10000" allowMissing="true" >
|
||||
<input>
|
||||
<itemStack modID="Thaumcraft" itemName="ItemZombieBrain" slot="0" multiplier="2" />
|
||||
<itemStack oreDictionary="itemSkull" slot="0" multiplier="2" />
|
||||
<itemStack modID="minecraft" itemName="rotten_flesh" slot="0" multiplier="1.5" />
|
||||
<itemStack modID="minecraft" itemName="chicken" slot="0" multiplier="0.75" />
|
||||
<itemStack modID="minecraft" itemName="beef" slot="0" multiplier="0.75" />
|
||||
<itemStack modID="minecraft" itemName="porkchop" slot="0" multiplier="0.75" />
|
||||
<itemStack modID="minecraft" itemName="sugar" slot="1" multiplier="1" />
|
||||
<itemStack modID="minecraft" itemName="brown_mushroom" slot="1" multiplier="1.5" />
|
||||
<itemStack modID="minecraft" itemName="red_mushroom" slot="1" multiplier="1.5" />
|
||||
<itemStack modID="minecraft" itemName="nether_wart" slot="1" multiplier="1.5" />
|
||||
<itemStack modID="minecraft" itemName="fermented_spider_eye" slot="1" multiplier="2" />
|
||||
<fluidStack name="water" multiplier="0.25" />
|
||||
</input>
|
||||
<output>
|
||||
<fluidStack name="nutrient_distillation" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Hootch" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="poisonous_potato" slot="0" multiplier="8" />
|
||||
<itemStack modID="minecraft" itemName="potato" slot="0" multiplier="4" />
|
||||
<itemStack modID="minecraft" itemName="apple" slot="0" multiplier="3.5" />
|
||||
<itemStack modID="minecraft" itemName="wheat" slot="0" multiplier="3" />
|
||||
<itemStack modID="minecraft" itemName="wheat_seeds" slot="0" multiplier="2" />
|
||||
<itemStack modID="minecraft" itemName="sugar" slot="1" multiplier="1" />
|
||||
<fluidStack name="water" multiplier="0.25" />
|
||||
</input>
|
||||
<output>
|
||||
<fluidStack name="hootch" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Rocket Fuel" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="gunpowder" slot="0" multiplier="1" />
|
||||
<itemStack modID="minecraft" itemName="redstone" slot="1" multiplier="1" />
|
||||
<fluidStack name="hootch" multiplier="1" />
|
||||
</input>
|
||||
<output>
|
||||
<fluidStack name="rocket_fuel" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Fire Water" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="blaze_powder" slot="0" multiplier="1" />
|
||||
<itemStack modID="minecraft" itemName="redstone" slot="1" multiplier="1" />
|
||||
<fluidStack name="hootch" multiplier="1" />
|
||||
</input>
|
||||
<output>
|
||||
<fluidStack name="fire_water" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Liquid Sunshine" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="glowstone_dust" slot="0" multiplier="0.25" />
|
||||
<itemStack modID="minecraft" itemName="glowstone" slot="0" multiplier="1" />
|
||||
<itemStack modID="minecraft" itemName="double_plant" itemMeta="0" slot="1" multiplier="1" />
|
||||
<fluidStack name="fire_water" multiplier="1" />
|
||||
</input>
|
||||
<output>
|
||||
<fluidStack name="liquid_sunshine" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Cloud Seed" energyCost="10000" allowMissing="true" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustSalt" slot="0" multiplier="1" />
|
||||
<itemStack oreDictionary="itemClay" slot="0" multiplier="0.5" />
|
||||
<itemStack modID="minecraft" itemName="clay" slot="0" multiplier="2" />
|
||||
<itemStack modID="minecraft" itemName="snowball" slot="1" multiplier="0.1" />
|
||||
<itemStack modID="minecraft" itemName="snow" slot="1" multiplier="0.5" />
|
||||
<itemStack oreDictionary="ice" slot="1" multiplier="0.5" />
|
||||
<itemStack modID="minecraft" itemName="packed_ice" itemMeta="0" slot="1" multiplier="1" />
|
||||
<fluidStack name="water" multiplier="1" />
|
||||
</input>
|
||||
<output>
|
||||
<fluidStack name="cloud_seed" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Concentrated Cloud Seed" energyCost="20000" allowMissing="true" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustSalt" slot="0" multiplier="1" />
|
||||
<itemStack oreDictionary="itemClay" slot="0" multiplier="0.5" />
|
||||
<itemStack modID="minecraft" itemName="clay" slot="0" multiplier="2" />
|
||||
<fluidStack name="cloud_seed" multiplier="1" />
|
||||
</input>
|
||||
<output>
|
||||
<fluidStack name="cloud_seed_concentrated" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Ender Distillation" energyCost="15000">
|
||||
<input>
|
||||
<itemStack oreDictionary="itemPulsatingPowder" slot="0" multiplier="2" />
|
||||
<itemStack oreDictionary="itemEnderCrystalPowder" slot="1" multiplier="2" />
|
||||
<fluidStack name="nutrient_distillation" multiplier="1" />
|
||||
</input>
|
||||
<output>
|
||||
<fluidStack name="ender_distillation" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Vapor of Levity" energyCost="20000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="itemPulsatingPowder" slot="0" multiplier="1" />
|
||||
<itemStack oreDictionary="itemPrecientPowder" slot="1" multiplier="1" />
|
||||
<fluidStack name="ender_distillation" multiplier="1" />
|
||||
</input>
|
||||
<output>
|
||||
<fluidStack name="vapor_of_levity" />
|
||||
</output>
|
||||
</recipe>
|
||||
</recipeGroup>
|
||||
|
||||
</VatRecipes>
|
||||
108
.minecraft/config/enderio/VatRecipes_User.xml
Normal file
108
.minecraft/config/enderio/VatRecipes_User.xml
Normal file
@@ -0,0 +1,108 @@
|
||||
<VatRecipes>
|
||||
<recipeGroup name="EnderIO" >
|
||||
<recipeGroup name="EnderIO" enabled="false" />
|
||||
</recipeGroup>
|
||||
<recipeGroup name="GTNH" >
|
||||
<recipe name="Nutrient Distilation" energyCost="10000" allowMissing="true" >
|
||||
<input>
|
||||
<itemStack modID="Thaumcraft" itemName="ItemZombieBrain" slot="0" multiplier="2" />
|
||||
<itemStack oreDictionary="itemSkull" slot="0" multiplier="2" />
|
||||
<itemStack modID="minecraft" itemName="rotten_flesh" slot="0" multiplier="1.5" />
|
||||
<itemStack modID="minecraft" itemName="chicken" slot="0" multiplier="0.75" />
|
||||
<itemStack modID="minecraft" itemName="beef" slot="0" multiplier="0.75" />
|
||||
<itemStack modID="minecraft" itemName="porkchop" slot="0" multiplier="0.75" />
|
||||
<itemStack modID="minecraft" itemName="sugar" slot="1" multiplier="1" />
|
||||
<itemStack modID="minecraft" itemName="brown_mushroom" slot="1" multiplier="1.5" />
|
||||
<itemStack modID="minecraft" itemName="red_mushroom" slot="1" multiplier="1.5" />
|
||||
<itemStack modID="minecraft" itemName="nether_wart" slot="1" multiplier="1.5" />
|
||||
<itemStack modID="minecraft" itemName="fermented_spider_eye" slot="1" multiplier="2" />
|
||||
<fluidStack name="water" multiplier="0.25" />
|
||||
</input>
|
||||
<output>
|
||||
<fluidStack name="nutrient_distillation" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Hootch" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="poisonous_potato" slot="0" multiplier="8" />
|
||||
<itemStack modID="minecraft" itemName="potato" slot="0" multiplier="4" />
|
||||
<itemStack modID="minecraft" itemName="apple" slot="0" multiplier="3.5" />
|
||||
<itemStack modID="minecraft" itemName="wheat" slot="0" multiplier="3" />
|
||||
<itemStack modID="minecraft" itemName="wheat_seeds" slot="0" multiplier="2" />
|
||||
<itemStack modID="minecraft" itemName="sugar" slot="1" multiplier="1" />
|
||||
<fluidStack name="water" multiplier="0.25" />
|
||||
</input>
|
||||
<output>
|
||||
<fluidStack name="hootch" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Fire Water" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="blaze_powder" slot="0" multiplier="1" />
|
||||
<itemStack modID="minecraft" itemName="redstone" slot="1" multiplier="1" />
|
||||
<fluidStack name="hootch" multiplier="1" />
|
||||
</input>
|
||||
<output>
|
||||
<fluidStack name="fire_water" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Liquid Sunshine" energyCost="10000" >
|
||||
<input>
|
||||
<itemStack modID="minecraft" itemName="glowstone_dust" slot="0" multiplier="0.25" />
|
||||
<itemStack modID="minecraft" itemName="glowstone" slot="0" multiplier="1" />
|
||||
<itemStack modID="minecraft" itemName="double_plant" itemMeta="0" slot="1" multiplier="1" />
|
||||
<fluidStack name="fire_water" multiplier="1" />
|
||||
</input>
|
||||
<output>
|
||||
<fluidStack name="liquid_sunshine" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Cloud Seed" energyCost="10000" allowMissing="true" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustSalt" slot="0" multiplier="1" />
|
||||
<itemStack oreDictionary="itemClay" slot="0" multiplier="0.5" />
|
||||
<itemStack modID="minecraft" itemName="clay" slot="0" multiplier="2" />
|
||||
<itemStack modID="minecraft" itemName="snowball" slot="1" multiplier="0.1" />
|
||||
<itemStack modID="minecraft" itemName="snow" slot="1" multiplier="0.5" />
|
||||
<itemStack oreDictionary="ice" slot="1" multiplier="0.5" />
|
||||
<itemStack modID="minecraft" itemName="packed_ice" itemMeta="0" slot="1" multiplier="1" />
|
||||
<fluidStack name="water" multiplier="1" />
|
||||
</input>
|
||||
<output>
|
||||
<fluidStack name="cloud_seed" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Concentrated Cloud Seed" energyCost="20000" allowMissing="true" >
|
||||
<input>
|
||||
<itemStack oreDictionary="dustSalt" slot="0" multiplier="1" />
|
||||
<itemStack oreDictionary="itemClay" slot="0" multiplier="0.5" />
|
||||
<itemStack modID="minecraft" itemName="clay" slot="0" multiplier="2" />
|
||||
<fluidStack name="cloud_seed" multiplier="1" />
|
||||
</input>
|
||||
<output>
|
||||
<fluidStack name="cloud_seed_concentrated" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Ender Distillation" energyCost="15000">
|
||||
<input>
|
||||
<itemStack oreDictionary="itemPulsatingPowder" slot="0" multiplier="2" />
|
||||
<itemStack oreDictionary="itemEnderCrystalPowder" slot="1" multiplier="2" />
|
||||
<fluidStack name="nutrient_distillation" multiplier="1" />
|
||||
</input>
|
||||
<output>
|
||||
<fluidStack name="ender_distillation" />
|
||||
</output>
|
||||
</recipe>
|
||||
<recipe name="Vapor of Levity" energyCost="20000" >
|
||||
<input>
|
||||
<itemStack oreDictionary="itemPulsatingPowder" slot="0" multiplier="1" />
|
||||
<itemStack oreDictionary="itemPrecientPowder" slot="1" multiplier="1" />
|
||||
<fluidStack name="ender_distillation" multiplier="1" />
|
||||
</input>
|
||||
<output>
|
||||
<fluidStack name="vapor_of_levity" />
|
||||
</output>
|
||||
</recipe>
|
||||
</recipeGroup>
|
||||
|
||||
</VatRecipes>
|
||||
Reference in New Issue
Block a user