261 lines
9.1 KiB
XML
261 lines
9.1 KiB
XML
<!--
|
|
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>
|