Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.12 KB | None | 0 0
  1. public NoDebuffKit() {
  2.     super(true);
  3.  
  4.     ItemStack vida = new ItemStack(Material.POTION, 1, (short) 16421);
  5.     ItemStack speed2corta = new ItemStack(Material.POTION, 1, (short) 8226);
  6.     ItemStack firelarga = new ItemStack(Material.POTION, 1, (short) 8259);
  7.    
  8.    
  9.     addToInv(0, Material.DIAMOND_SWORD, 1, new SimpleEntry<>(Enchantment.DAMAGE_ALL, 1));
  10.     addToInv(1, Material.BOW, 1, new SimpleEntry<>(Enchantment.ARROW_DAMAGE ,1), new SimpleEntry<>(Enchantment.ARROW_FIRE ,1), new SimpleEntry<>(Enchantment.ARROW_INFINITE ,1));
  11.     addToInv(3, Material.BAKED_POTATO, 64);
  12.     addToInv(3, Material.ENDER_PEARL, 16);
  13.     addToInv(9, Material.ARROW, 1);
  14.    
  15.     addToInv(vida, 4, 5, 6, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34);
  16.     addToInv(speed2corta, 8, 35, 26, 17);
  17.     addToInv(firelarga, 7);
  18.    
  19.     addToInv(103, Material.DIAMOND_HELMET, 1, new SimpleEntry<>(Enchantment.PROTECTION_ENVIRONMENTAL, 1), new SimpleEntry<>(Enchantment.DURABILITY, 3));
  20.     addToInv(102, Material.DIAMOND_CHESTPLATE, 1, new SimpleEntry<>(Enchantment.PROTECTION_ENVIRONMENTAL, 1), new SimpleEntry<>(Enchantment.DURABILITY, 3));
  21.     addToInv(101, Material.DIAMOND_LEGGINGS, 1, new SimpleEntry<>(Enchantment.PROTECTION_ENVIRONMENTAL, 1), new SimpleEntry<>(Enchantment.DURABILITY, 3));
  22.     addToInv(100, Material.DIAMOND_BOOTS, 1, new SimpleEntry<>(Enchantment.PROTECTION_ENVIRONMENTAL, 1), new SimpleEntry<>(Enchantment.PROTECTION_FALL, 4), new SimpleEntry<>(Enchantment.DURABILITY, 3));
  23.    
  24. }
  25.  
  26. public PotPvPKit() {
  27.     super(true);
  28.  
  29.     ItemStack vida = new ItemStack(Material.POTION, 1, (short) 16421);
  30.     ItemStack speed2corta = new ItemStack(Material.POTION, 1, (short) 8226);
  31.     ItemStack firelarga = new ItemStack(Material.POTION, 1, (short) 8259);
  32.     ItemStack poison = new ItemStack(Material.POTION, 1, (short) 16388);
  33.     ItemStack slowness = new ItemStack(Material.POTION, 1, (short) 16394);
  34.    
  35.    
  36.     addToInv(0, Material.DIAMOND_SWORD, 1, new SimpleEntry<>(Enchantment.DAMAGE_ALL, 1));
  37.     addToInv(1, Material.BOW, 1, new SimpleEntry<>(Enchantment.ARROW_DAMAGE ,1), new SimpleEntry<>(Enchantment.ARROW_FIRE ,1), new SimpleEntry<>(Enchantment.ARROW_INFINITE ,1));
  38.     addToInv(3, Material.BAKED_POTATO, 64);
  39.     addToInv(2, Material.ENDER_PEARL, 16);
  40.     addToInv(9, Material.ARROW, 1);
  41.    
  42.     addToInv(vida, 4, 5, 6 10, 11, 12, 13, 14, 18, 19, 20, 21, 22, 23, 27, 28, 29, 30, 31, 32, 33, 34);
  43.     addToInv(speed2corta, 8, 35, 26, 17);
  44.     addToInv(firelarga, 7);
  45.    
  46.     addToInv(poison, 16, 25);
  47.    
  48.     addToInv(slowness, 15, 24);
  49.    
  50.     addToInv(103, Material.DIAMOND_HELMET, 1, new SimpleEntry<>(Enchantment.PROTECTION_ENVIRONMENTAL, 1), new SimpleEntry<>(Enchantment.DURABILITY, 3));
  51.     addToInv(102, Material.DIAMOND_CHESTPLATE, 1, new SimpleEntry<>(Enchantment.PROTECTION_ENVIRONMENTAL, 1), new SimpleEntry<>(Enchantment.DURABILITY, 3));
  52.     addToInv(101, Material.DIAMOND_LEGGINGS, 1, new SimpleEntry<>(Enchantment.PROTECTION_ENVIRONMENTAL, 1), new SimpleEntry<>(Enchantment.DURABILITY, 3));
  53.     addToInv(100, Material.DIAMOND_BOOTS, 1, new SimpleEntry<>(Enchantment.PROTECTION_ENVIRONMENTAL, 1), new SimpleEntry<>(Enchantment.PROTECTION_FALL, 4), new SimpleEntry<>(Enchantment.DURABILITY, 3));
  54.    
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement