summaryrefslogtreecommitdiff
path: root/common/darkknight/jewelrycraft/recipes/CraftingRecipes.java
diff options
context:
space:
mode:
Diffstat (limited to 'common/darkknight/jewelrycraft/recipes/CraftingRecipes.java')
-rw-r--r--common/darkknight/jewelrycraft/recipes/CraftingRecipes.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/common/darkknight/jewelrycraft/recipes/CraftingRecipes.java b/common/darkknight/jewelrycraft/recipes/CraftingRecipes.java
new file mode 100644
index 0000000..57d28fa
--- /dev/null
+++ b/common/darkknight/jewelrycraft/recipes/CraftingRecipes.java
@@ -0,0 +1,22 @@
+package darkknight.jewelrycraft.recipes;
+
+import net.minecraft.block.Block;
+import net.minecraft.item.ItemStack;
+import cpw.mods.fml.common.event.FMLPreInitializationEvent;
+import cpw.mods.fml.common.registry.GameRegistry;
+import darkknight.jewelrycraft.block.BlockList;
+import darkknight.jewelrycraft.item.ItemList;
+
+public class CraftingRecipes
+{
+ private static boolean isInitialized = false;
+
+ public static void preInit(FMLPreInitializationEvent e)
+ {
+ if (!isInitialized)
+ {
+ GameRegistry.addRecipe(new ItemStack(ItemList.thiefGloves), "x x", "yxy", "yxy", 'x', ItemList.shadowIngot, 'y', new ItemStack(Block.cloth, 1, 15));
+ GameRegistry.addSmelting(BlockList.shadowOre.blockID, new ItemStack(ItemList.shadowIngot), 1.5f);
+ }
+ }
+}