Advertisement
Guest User

Recipie Code

a guest
Jan 28th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.43 KB | None | 0 0
  1.     public static void init(){
  2.         GameRegistry.addRecipe(new ItemStack(BlockList.basicSolarPanel, 64), "A A", " A ", "A A", 'A', Blocks.dirt );
  3.  
  4.         GameRegistry.addRecipe(new ItemStack(Blocks.crafting_table, 1), "A", 'A', Blocks.dirt );
  5.  
  6.         GameRegistry.addRecipe(new ItemStack(Items.diamond_pickaxe), "AA", 'A', Blocks.dirt );
  7.        
  8.         GameRegistry.addRecipe(new ItemStack(ItemList.wrench),
  9.                 "A  ",
  10.                 "A  ",
  11.                 'A', Blocks.dirt
  12.         );
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement