Vinetos

Crafts avec Enchantements

Jul 30th, 2015
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. public class Main extends JavaPlugin{
  2.  
  3.  
  4. public void onEnable() {
  5. ItemStack is = new ItemStack(Material.REDSTONE_BLOCK);
  6. is.addEnchantment(Enchantment.PROTECTION_ENVIRONMENTAL, 4);
  7. ShapedRecipe sh = new ShapedRecipe(is);
  8. sh.shape(new String[]{ "SSS" ,
  9. "SPS" ,
  10. "SSS"}).setIngredient('S', Material.SLIME_BLOCK).setIngredient('P', Material.PRISMARINE);
  11.  
  12.  
  13. Bukkit.addRecipe(sh);
  14. }
  15.  
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment