Advertisement
Guest User

Untitled

a guest
Mar 6th, 2016
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.69 KB | None | 0 0
  1. public void add() {
  2. System.out.print(1);
  3. ShapedRecipe recipe;
  4. ItemStack Item = new ItemStack(Material.STICK);
  5. ItemMeta ItemMeta = Item.getItemMeta();
  6. ItemMeta.setDisplayName("");
  7. Item.setItemMeta(ItemMeta);
  8.  
  9. ItemMeta.setDisplayName("§7WOODEN_GEAR");
  10. Item.setItemMeta(ItemMeta);
  11. recipe = new ShapedRecipe(Item);
  12. recipe.shape("ASA", "SAS", "ASA");
  13. recipe.setIngredient('A', Material.DIRT);
  14. recipe.setIngredient('S', Material.STICK);
  15. Bukkit.addRecipe(recipe);
  16.  
  17. ItemMeta.setDisplayName("§7STONE_GEAR");
  18. Item.setItemMeta(ItemMeta);
  19. recipe = new ShapedRecipe(Item);
  20. recipe.shape("ASA", "SWS", "ASA");
  21. recipe.setIngredient('S', Material.COBBLESTONE);
  22. recipe.setIngredient('A', Material.DIRT);
  23. recipe.setIngredient('W', Material.STICK);
  24. Bukkit.addRecipe(recipe);
  25.  
  26. ItemMeta.setDisplayName("§7IRON_GEAR");
  27. Item.setItemMeta(ItemMeta);
  28. Item.setAmount(8);
  29. recipe = new ShapedRecipe(Item);
  30. recipe.shape("ASA", "SWS", "ASA");
  31. recipe.setIngredient('S', Material.IRON_INGOT);
  32. recipe.setIngredient('A', Material.DIRT);
  33. recipe.setIngredient('W', Material.STICK);
  34. Bukkit.addRecipe(recipe);
  35. Item.setAmount(1);
  36.  
  37. ItemMeta.setDisplayName("§1UpGradeWorkbenchMKII");
  38. Item.setItemMeta(ItemMeta);
  39. recipe = new ShapedRecipe(Item);
  40. recipe.shape("LSL", "BGB", "LSL");
  41. recipe.setIngredient('L', Material.LEATHER);
  42. recipe.setIngredient('S', Material.COBBLESTONE);
  43. recipe.setIngredient('B', Material.BONE);
  44. recipe.setIngredient('G', Material.STICK);
  45. Bukkit.addRecipe(recipe);
  46.  
  47. ItemMeta.setDisplayName("§1UpGradeWorkbenchMKIII");
  48. Item.setItemMeta(ItemMeta);
  49. recipe = new ShapedRecipe(Item);
  50. recipe.shape("SBS", "WSW", "SHS");
  51. recipe.setIngredient('S', Material.STICK);
  52. recipe.setIngredient('B', Material.IRON_BLOCK);
  53. recipe.setIngredient('W', Material.WOOL);
  54. recipe.setIngredient('H', Material.HAY_BLOCK);
  55. Bukkit.addRecipe(recipe);
  56.  
  57. ItemMeta.setDisplayName("§5PlaceToClaimRegion");
  58. Item.setItemMeta(ItemMeta);
  59. Item.setType(Material.SKULL_ITEM);
  60. recipe = new ShapedRecipe(Item);
  61. recipe.shape("LSL", "BGB", "LSL");
  62. recipe.setIngredient('L', Material.LEATHER);
  63. recipe.setIngredient('S', Material.STICK);
  64. recipe.setIngredient('B', Material.BONE);
  65. recipe.setIngredient('G', Material.IRON_INGOT);
  66. Bukkit.addRecipe(recipe);
  67.  
  68. ItemMeta.setDisplayName("§7Langschwert");
  69. Item.setItemMeta(ItemMeta);
  70. Item.setType(Material.IRON_SWORD);
  71. recipe = new ShapedRecipe(Item);
  72. recipe.shape("AIA", "ASA", "AHA");
  73. recipe.setIngredient('S', Material.IRON_SWORD);
  74. recipe.setIngredient('H', Material.STICK);
  75. recipe.setIngredient('I', Material.IRON_INGOT);
  76. recipe.setIngredient('A', Material.DIRT);
  77. Bukkit.addRecipe(recipe);
  78.  
  79. ItemMeta.setDisplayName("§5Streitaxt");
  80. Item.setItemMeta(ItemMeta);
  81. Item.setType(Material.DIAMOND_AXE);
  82. recipe = new ShapedRecipe(Item);
  83. recipe.shape("DSD", "SES", "ASA");
  84. recipe.setIngredient('D', Material.DIAMOND);
  85. recipe.setIngredient('S', Material.STICK);
  86. recipe.setIngredient('E', Material.ENDER_PEARL);
  87. recipe.setIngredient('A', Material.DIRT);
  88. Bukkit.addRecipe(recipe);
  89.  
  90. ItemMeta.setDisplayName("§2Smaragd Schwert");
  91. Item.setItemMeta(ItemMeta);
  92. Item.setType(Material.DIAMOND_SWORD);
  93. recipe = new ShapedRecipe(Item);
  94. recipe.shape("AEA", "AEA", "ASA");
  95. recipe.setIngredient('A', Material.DIRT);
  96. recipe.setIngredient('S', Material.STICK);
  97. recipe.setIngredient('E', Material.EMERALD);
  98. Bukkit.addRecipe(recipe);
  99.  
  100. ItemMeta.setDisplayName("§4GUN");
  101. Item.setItemMeta(ItemMeta);
  102. Item.setType(Material.IRON_BARDING);
  103. recipe = new ShapedRecipe(Item);
  104. recipe.shape("III", "RSI", "RRI");
  105. recipe.setIngredient('I', Material.IRON_INGOT);
  106. recipe.setIngredient('R', Material.REDSTONE);
  107. recipe.setIngredient('S', Material.STICK);
  108. Bukkit.addRecipe(recipe);
  109.  
  110. ItemMeta.setDisplayName("§4Ammo");
  111. Item.setItemMeta(ItemMeta);
  112. Item.setType(Material.NETHER_STALK);
  113. recipe = new ShapedRecipe(Item);
  114. recipe.shape("IRI", "RNR", "IRI");
  115. recipe.setIngredient('I', Material.IRON_INGOT);
  116. recipe.setIngredient('R', Material.REDSTONE);
  117. recipe.setIngredient('N', Material.NETHER_STALK);
  118. Bukkit.addRecipe(recipe);
  119.  
  120.  
  121. ItemMeta.setDisplayName("§7SAW");
  122. Item.setItemMeta(ItemMeta);
  123. Item.setType(Material.IRON_AXE);
  124. recipe = new ShapedRecipe(Item);
  125. recipe.shape("III", "XAX", "SSS");
  126. recipe.setIngredient('I', Material.IRON_INGOT);
  127. recipe.setIngredient('A', Material.DIRT);
  128. recipe.setIngredient('X', Material.IRON_AXE);
  129. recipe.setIngredient('S', Material.STICK);
  130. Bukkit.addRecipe(recipe);
  131.  
  132. ItemMeta.setDisplayName("§7Mine Machine");
  133. Item.setItemMeta(ItemMeta);
  134. Item.setType(Material.FURNACE);
  135. recipe = new ShapedRecipe(Item);
  136. recipe.shape("FFF", "SSS", "RHR");
  137. recipe.setIngredient('F', Material.FURNACE);
  138. recipe.setIngredient('R', Material.REDSTONE);
  139. recipe.setIngredient('H', Material.HOPPER);
  140. recipe.setIngredient('S', Material.STICK);
  141. Bukkit.addRecipe(recipe);
  142.  
  143. ItemMeta.setDisplayName("§5Turret");
  144. Item.setItemMeta(ItemMeta);
  145. Item.setType(Material.SNOW_BLOCK);
  146. recipe = new ShapedRecipe(Item);
  147. recipe.shape("HSH", "SBS", "HSH");
  148. recipe.setIngredient('H', Material.DROPPER);
  149. recipe.setIngredient('S', Material.STICK);
  150. recipe.setIngredient('B', Material.SNOW_BLOCK);
  151. Bukkit.addRecipe(recipe);
  152.  
  153. ItemMeta.setDisplayName("§6Player Turret");
  154. Item.setItemMeta(ItemMeta);
  155. Item.setType(Material.SNOW_BLOCK);
  156. recipe = new ShapedRecipe(Item);
  157. recipe.shape("LLL", "LSL", "LLL");
  158. recipe.setIngredient('L', Material.LEATHER);
  159. recipe.setIngredient('S', Material.SNOW_BLOCK);
  160. Bukkit.addRecipe(recipe);
  161. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement