Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 13.63 KB | None | 0 0
  1. enum Items {
  2.         BACKPACK(Material.IRON_NUGGET, 1000, "Backpack", new JsonParser().parse("{ \"max_stack\": \"1\"}").getAsJsonObject()),
  3.         BIG_BACKPACK(Material.IRON_NUGGET, 1001, "Big Backpack", new JsonParser().parse("{ \"max_stack\": \"1\"}").getAsJsonObject()),
  4.         ENDER_BACKPACK(Material.IRON_NUGGET, 1002, "Ender Backpack", new JsonParser().parse("{ \"max_stack\": \"1\"}").getAsJsonObject()),
  5.  
  6.         RUBY(Material.IRON_NUGGET, 101, "Ruby", null),
  7.         SAPPHIRE(Material.IRON_NUGGET, 102, "Sapphire", null),
  8.         INOLASHITE(Material.IRON_NUGGET, 103, "Inolashite", null),
  9.         METEORITE(Material.IRON_NUGGET, 104, "Meteorite", null),
  10.         AREDRITE(Material.IRON_NUGGET, 105, "Aredrite", null),
  11.         MYRTHRIL(Material.IRON_NUGGET, 106, "Mythril", null),
  12.         PALLADIUM(Material.IRON_NUGGET, 107, "Palladium", null),
  13.         TARTARITE(Material.IRON_NUGGET, 108, "Tartarite", null),
  14.  
  15.  
  16.         RUBY_HELMET(Material.LEATHER_HELMET, 101, "Ruby Helmet", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  17.         RUBY_CHESTPLATE(Material.LEATHER_CHESTPLATE, 101, "Ruby Chestplate", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  18.         RUBY_LEGGINGS(Material.LEATHER_LEGGINGS, 101, "Ruby Leggings", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  19.         RUBY_BOOTS(Material.LEATHER_BOOTS, 101, "Ruby Boots", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  20.  
  21.         RUBY_PICKAXE(Material.DIAMOND_PICKAXE, 101, "Ruby Pickaxe", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  22.         RUBY_SWORD(Material.DIAMOND_SWORD, 101, "Ruby Sword", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\",\"attackDamage\":\"8\",\"attackSpeed\":\"2\"}").getAsJsonObject()),
  23.         RUBY_SHOVEL(Material.DIAMOND_PICKAXE, 101, "Ruby Shovel", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  24.         RUBY_AXE(Material.DIAMOND_PICKAXE, 101, "Ruby Axe", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  25.  
  26.         SAPPHIRE_HELMET(Material.LEATHER_HELMET, 102, "Sapphire Helmet", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  27.         SAPPHIRE_CHESTPLATE(Material.LEATHER_CHESTPLATE, 102, "Sapphire Chestplate", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  28.         SAPPHIRE_LEGGINGS(Material.LEATHER_LEGGINGS, 102, "Sapphire Leggings", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  29.         SAPPHIRE_BOOTS(Material.LEATHER_BOOTS, 102, "Sapphire Boots", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  30.  
  31.         SAPPHIRE_PICKAXE(Material.DIAMOND_PICKAXE, 102, "Sapphire Pickaxe", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  32.         SAPPHIRE_SWORD(Material.DIAMOND_SWORD, 102, "Sapphire Sword", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\",\"attackDamage\":\"8\",\"attackSpeed\":\"2\"}").getAsJsonObject()),
  33.         SAPPHIRE_SHOVEL(Material.DIAMOND_PICKAXE, 102, "Sapphire Shovel", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  34.         SAPPHIRE_AXE(Material.DIAMOND_PICKAXE, 102, "Sapphire Axe", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  35.  
  36.         INOLASHITE_HELMET(Material.LEATHER_HELMET, 103, "Inolashite Helmet", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  37.         INOLASHITE_CHESTPLATE(Material.LEATHER_CHESTPLATE, 103, "Inolashite Chestplate", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  38.         INOLASHITE_LEGGINGS(Material.LEATHER_LEGGINGS, 103, "Inolashite Leggings", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  39.         INOLASHITE_BOOTS(Material.LEATHER_BOOTS, 103, "Inolashite Boots", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  40.  
  41.         INOLASHITE_PICKAXE(Material.DIAMOND_PICKAXE, 103, "Inolashite Pickaxe", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  42.         INOLASHITE_SWORD(Material.DIAMOND_SWORD, 103, "Inolashite Sword", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\",\"attackDamage\":\"8\",\"attackSpeed\":\"2\"}").getAsJsonObject()),
  43.         INOLASHITE_SHOVEL(Material.DIAMOND_PICKAXE, 103, "Inolashite Shovel", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  44.         INOLASHITE_AXE(Material.DIAMOND_PICKAXE, 103, "Inolashite Axe", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  45.  
  46.         METEORITE_HELMET(Material.LEATHER_HELMET, 104, "Meteorite Helmet", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  47.         METEORITE_CHESTPLATE(Material.LEATHER_CHESTPLATE, 104, "Meteorite Chestplate", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  48.         METEORITE_LEGGINGS(Material.LEATHER_LEGGINGS, 104, "Meteorite Leggings", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  49.         METEORITE_BOOTS(Material.LEATHER_BOOTS, 104, "Meteorite Boots", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  50.  
  51.         METEORITE_PICKAXE(Material.DIAMOND_PICKAXE, 104, "Meteorite Pickaxe", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  52.         METEORITE_SWORD(Material.DIAMOND_SWORD, 104, "Meteorite Sword", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\",\"attackDamage\":\"8\",\"attackSpeed\":\"2\"}").getAsJsonObject()),
  53.         METEORITE_SHOVEL(Material.DIAMOND_PICKAXE, 104, "Meteorite Shovel", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  54.         METEORITE_AXE(Material.DIAMOND_PICKAXE, 104, "Meteorite Axe", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  55.  
  56.         AREDRITE_HELMET(Material.LEATHER_HELMET, 105, "Meteorite Helmet", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  57.         AREDRITE_CHESTPLATE(Material.LEATHER_CHESTPLATE, 105, "Meteorite Chestplate", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  58.         AREDRITE_LEGGINGS(Material.LEATHER_LEGGINGS, 105, "Meteorite Leggings", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  59.         AREDRITE_BOOTS(Material.LEATHER_BOOTS, 105, "Meteorite Boots", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  60.  
  61.         AREDRITE_PICKAXE(Material.DIAMOND_PICKAXE, 105, "Meteorite Pickaxe", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  62.         AREDRITE_SWORD(Material.DIAMOND_SWORD, 105, "Meteorite Sword", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\",\"attackDamage\":\"8\",\"attackSpeed\":\"2\"}").getAsJsonObject()),
  63.         AREDRITE_SHOVEL(Material.DIAMOND_PICKAXE, 105, "Meteorite Shovel", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  64.         AREDRITE_AXE(Material.DIAMOND_PICKAXE, 105, "Meteorite Axe", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  65.  
  66.         MYTHRIL_HELMET(Material.LEATHER_HELMET, 106, "Mythril Helmet", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  67.         MYTHRIL_CHESTPLATE(Material.LEATHER_CHESTPLATE, 106, "Mythril Chestplate", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  68.         MYTHRIL_LEGGINGS(Material.LEATHER_LEGGINGS, 106, "Mythril Leggings", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  69.         MYTHRIL_BOOTS(Material.LEATHER_BOOTS, 106, "Mythril Boots", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  70.  
  71.         MYTHRIL_PICKAXE(Material.DIAMOND_PICKAXE, 106, "Mythril Pickaxe", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  72.         MYTHRIL_SWORD(Material.DIAMOND_SWORD, 106, "Mythril Sword", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\",\"attackDamage\":\"8\",\"attackSpeed\":\"2\"}").getAsJsonObject()),
  73.         MYTHRIL_SHOVEL(Material.DIAMOND_PICKAXE, 106, "Mythril Shovel", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  74.         MYTHRIL_AXE(Material.DIAMOND_PICKAXE, 106, "Mythril Axe", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  75.  
  76.         PALLADIUM_HELMET(Material.LEATHER_HELMET, 107, "Palladium Helmet", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  77.         PALLADIUM_CHESTPLATE(Material.LEATHER_CHESTPLATE, 107, "Palladium Chestplate", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  78.         PALLADIUM_LEGGINGS(Material.LEATHER_LEGGINGS, 107, "Palladium Leggings", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  79.         PALLADIUM_BOOTS(Material.LEATHER_BOOTS, 107, "Palladium Boots", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  80.  
  81.         PALLADIUM_PICKAXE(Material.DIAMOND_PICKAXE, 107, "Palladium Pickaxe", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  82.         PALLADIUM_SWORD(Material.DIAMOND_SWORD, 107, "Palladium Sword", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\",\"attackDamage\":\"8\",\"attackSpeed\":\"2\"}").getAsJsonObject()),
  83.         PALLADIUM_SHOVEL(Material.DIAMOND_PICKAXE, 107, "Palladium Shovel", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  84.         PALLADIUM_AXE(Material.DIAMOND_PICKAXE, 107, "Palladium Axe", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  85.  
  86.         Tartarite_HELMET(Material.LEATHER_HELMET, 108, "Tartarite Helmet", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  87.         Tartarite_CHESTPLATE(Material.LEATHER_CHESTPLATE, 108, "Tartarite Chestplate", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  88.         Tartarite_LEGGINGS(Material.LEATHER_LEGGINGS, 108, "Tartarite Leggings", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  89.         Tartarite_BOOTS(Material.LEATHER_BOOTS, 108, "Tartarite Boots", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\", \"armor\":\"8\", \"armorToughness\":\"2\"}").getAsJsonObject()),
  90.  
  91.         Tartarite_PICKAXE(Material.DIAMOND_PICKAXE, 108, "Tartarite Pickaxe", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  92.         Tartarite_SWORD(Material.DIAMOND_SWORD, 108, "Tartarite Sword", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\",\"attackDamage\":\"8\",\"attackSpeed\":\"2\"}").getAsJsonObject()),
  93.         Tartarite_SHOVEL(Material.DIAMOND_PICKAXE, 108, "Tartarite Shovel", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject()),
  94.         Tartarite_AXE(Material.DIAMOND_PICKAXE, 108, "Tartarite Axe", new JsonParser().parse("{ \"maxStack\": \"1\", \"durability\":\"1652\"}").getAsJsonObject())
  95.  
  96.         private Material material;
  97.         private int customModelData;
  98.         private String title;
  99.         private JsonObject data;
  100.  
  101.         Items(Material material, int customModelData, String title, JsonObject data) {
  102.             this.material = material;
  103.             this.customModelData = customModelData;
  104.             this.title = title;
  105.             this.data = data;
  106.         }
  107.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement