Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Main extends JavaPlugin{
- public void onEnable() {
- ItemStack is = new ItemStack(Material.REDSTONE_BLOCK);
- is.addEnchantment(Enchantment.PROTECTION_ENVIRONMENTAL, 4);
- ShapedRecipe sh = new ShapedRecipe(is);
- sh.shape(new String[]{ "SSS" ,
- "SPS" ,
- "SSS"}).setIngredient('S', Material.SLIME_BLOCK).setIngredient('P', Material.PRISMARINE);
- Bukkit.addRecipe(sh);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment