summaryrefslogtreecommitdiff
path: root/common/darkknight/jewelrycraft/recipes/CraftingRecipes.java
diff options
context:
space:
mode:
authorOnyxDarkKnight <sor1n.iliutza16@gmail.com>2013-12-17 01:10:07 +0200
committerOnyxDarkKnight <sor1n.iliutza16@gmail.com>2013-12-17 01:10:07 +0200
commite66f86a8624a5504fb1b389982883be9ebe6a092 (patch)
tree4dcc23f3589f2b2f48116fbe8ac8410020c7deef /common/darkknight/jewelrycraft/recipes/CraftingRecipes.java
parent766dafe80bdf9d2fe338346971fde1b87d0b7ad8 (diff)
Final commit, couldn't make the bench work, so I will send it as it is
Diffstat (limited to 'common/darkknight/jewelrycraft/recipes/CraftingRecipes.java')
-rw-r--r--common/darkknight/jewelrycraft/recipes/CraftingRecipes.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/common/darkknight/jewelrycraft/recipes/CraftingRecipes.java b/common/darkknight/jewelrycraft/recipes/CraftingRecipes.java
index 7d187a2..3f466f4 100644
--- a/common/darkknight/jewelrycraft/recipes/CraftingRecipes.java
+++ b/common/darkknight/jewelrycraft/recipes/CraftingRecipes.java
@@ -1,6 +1,7 @@
package darkknight.jewelrycraft.recipes;
import net.minecraft.block.Block;
+import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import cpw.mods.fml.common.registry.GameRegistry;
@@ -16,6 +17,11 @@ public class CraftingRecipes
if (!isInitialized)
{
GameRegistry.addRecipe(new ItemStack(ItemList.thiefGloves), "x x", "yxy", "yxy", 'x', ItemList.shadowIngot, 'y', new ItemStack(Block.cloth, 1, 15));
+ GameRegistry.addRecipe(new ItemStack(ItemList.molds, 1, 0), "x", "y", 'x', Item.ingotGold, 'y', Block.cobblestone);
+ GameRegistry.addRecipe(new ItemStack(ItemList.molds, 1, 1), "x x", "xyx", "x x", 'x', Item.ingotGold, 'y', Block.cobblestone);
+ GameRegistry.addRecipe(new ItemStack(BlockList.molder), "x x", "xxx", 'x', Block.cobblestone);
+ GameRegistry.addRecipe(new ItemStack(BlockList.smelter), "xyx", "x x", "xzx", 'x', Block.cobblestone, 'y', Item.bucketEmpty, 'z', Item.bucketLava);
+ GameRegistry.addRecipe(new ItemStack(BlockList.jewelCraftingTable), "xxx", "y y", "y y", 'x', Block.planks, 'y', Block.cobblestone);
GameRegistry.addSmelting(BlockList.shadowOre.blockID, new ItemStack(ItemList.shadowIngot), 1.5f);
isInitialized = true;