Advertisement
Guest User

sever crash

a guest
Jul 30th, 2020
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.60 KB | None | 0 0
  1.  
  2. public static final RegistryObject<ArmorItem> SODIUM_HELM = ITEMS.register("sodium_helm",()->
  3. new ArmorItem(MysticalKelpModArmorTier.SODIUM, EquipmentSlotType.HEAD,new Item.Properties().group(MysticalKelpMod.TAB)));
  4.  
  5. public static final RegistryObject<ArmorItem> SODIUM_CHEST = ITEMS.register("sodium_chest",()->
  6. new ArmorItem(MysticalKelpModArmorTier.SODIUM, EquipmentSlotType.CHEST,new Item.Properties().group(MysticalKelpMod.TAB)));
  7.  
  8. public static final RegistryObject<ArmorItem> SODIUM_LEG = ITEMS.register("sodium_leg",()->
  9. new ArmorItem(MysticalKelpModArmorTier.SODIUM, EquipmentSlotType.LEGS,new Item.Properties().group(MysticalKelpMod.TAB)));
  10.  
  11. public static final RegistryObject<ArmorItem> SODIUM_BOOT = ITEMS.register("sodium_boot",()->
  12. new ArmorItem(MysticalKelpModArmorTier.SODIUM, EquipmentSlotType.FEET,new Item.Properties().group(MysticalKelpMod.TAB)));
  13.  
  14.  
  15. public static final RegistryObject<ArmorItem> TUNGSTEN_HELM = ITEMS.register("tungsten_helm",()->
  16. new ArmorItem(MysticalKelpModArmorTier.TUNGSTEN, EquipmentSlotType.HEAD,new Item.Properties().group(MysticalKelpMod.TAB)));
  17.  
  18. public static final RegistryObject<ArmorItem> TUNGSTEN_CHEST = ITEMS.register("tungsten_chest",()->
  19. new ArmorItem(MysticalKelpModArmorTier.TUNGSTEN, EquipmentSlotType.CHEST,new Item.Properties().group(MysticalKelpMod.TAB)));
  20.  
  21. public static final RegistryObject<ArmorItem> TUNGSTEN_LEG = ITEMS.register("tungsten_leg",()->
  22. new ArmorItem(MysticalKelpModArmorTier.TUNGSTEN, EquipmentSlotType.LEGS,new Item.Properties().group(MysticalKelpMod.TAB)));
  23.  
  24. public static final RegistryObject<ArmorItem> TUNGSTEN_BOOT = ITEMS.register("tungsten_boot",()->
  25. new ArmorItem(MysticalKelpModArmorTier.TUNGSTEN, EquipmentSlotType.FEET,new Item.Properties().group(MysticalKelpMod.TAB)));
  26.  
  27.  
  28. public static final RegistryObject<ArmorItem> HOLMIUM_HELM = ITEMS.register("holmium_helm",()->
  29. new ArmorItem(MysticalKelpModArmorTier.HOLMIUM, EquipmentSlotType.HEAD,new Item.Properties().group(MysticalKelpMod.TAB)));
  30.  
  31. public static final RegistryObject<ArmorItem> HOLMIUM_CHEST = ITEMS.register("holmium_chest",()->
  32. new ArmorItem(MysticalKelpModArmorTier.HOLMIUM, EquipmentSlotType.CHEST,new Item.Properties().group(MysticalKelpMod.TAB)));
  33.  
  34. public static final RegistryObject<ArmorItem> HOLMIUM_LEG = ITEMS.register("holmium_leg",()->
  35. new ArmorItem(MysticalKelpModArmorTier.HOLMIUM, EquipmentSlotType.LEGS,new Item.Properties().group(MysticalKelpMod.TAB)));
  36.  
  37. public static final RegistryObject<ArmorItem> HOLMIUM_BOOT = ITEMS.register("holmium_boot",()->
  38. new ArmorItem(MysticalKelpModArmorTier.HOLMIUM, EquipmentSlotType.FEET,new Item.Properties().group(MysticalKelpMod.TAB)));
  39.  
  40.  
  41. public static final RegistryObject<ArmorItem> ACTINIUM_HELM = ITEMS.register("actinium_helm",()->
  42. new ArmorItem(MysticalKelpModArmorTier.ACTINIUM, EquipmentSlotType.HEAD,new Item.Properties().group(MysticalKelpMod.TAB)));
  43.  
  44. public static final RegistryObject<ArmorItem> ACTINIUM_CHEST = ITEMS.register("actinium_chest",()->
  45. new ArmorItem(MysticalKelpModArmorTier.ACTINIUM, EquipmentSlotType.CHEST,new Item.Properties().group(MysticalKelpMod.TAB)));
  46.  
  47. public static final RegistryObject<ArmorItem> ACTINIUM_LEG = ITEMS.register("actinium_leg",()->
  48. new ArmorItem(MysticalKelpModArmorTier.ACTINIUM, EquipmentSlotType.LEGS,new Item.Properties().group(MysticalKelpMod.TAB)));
  49.  
  50. public static final RegistryObject<ArmorItem> ACTINIUM_BOOT = ITEMS.register("actinium_boot",()->
  51. new ArmorItem(MysticalKelpModArmorTier.ACTINIUM, EquipmentSlotType.FEET,new Item.Properties().group(MysticalKelpMod.TAB)));
  52.  
  53. public static final RegistryObject<ArmorItem> PLATINUM_HELM = ITEMS.register("platinum_helm",()->
  54. new ArmorItem(MysticalKelpModArmorTier.PLATINUM, EquipmentSlotType.HEAD,new Item.Properties().group(MysticalKelpMod.TAB)));
  55.  
  56. public static final RegistryObject<ArmorItem> PLATINUM_CHEST = ITEMS.register("platinum_chest",()->
  57. new ArmorItem(MysticalKelpModArmorTier.PLATINUM, EquipmentSlotType.CHEST,new Item.Properties().group(MysticalKelpMod.TAB)));
  58.  
  59. public static final RegistryObject<ArmorItem> PLATINUM_LEG = ITEMS.register("platinum_leg",()->
  60. new ArmorItem(MysticalKelpModArmorTier.PLATINUM, EquipmentSlotType.LEGS,new Item.Properties().group(MysticalKelpMod.TAB)));
  61.  
  62. public static final RegistryObject<ArmorItem> PLATINUM_BOOT = ITEMS.register("platinum_boot",()->
  63. new ArmorItem(MysticalKelpModArmorTier.PLATINUM, EquipmentSlotType.FEET,new Item.Properties().group(MysticalKelpMod.TAB)));
  64.  
  65. public static final RegistryObject<ArmorItem> OPAL_HELM = ITEMS.register("opal_helm",()->
  66. new ArmorItem(MysticalKelpModArmorTier.OPAL, EquipmentSlotType.HEAD,new Item.Properties().group(MysticalKelpMod.TAB)));
  67.  
  68. public static final RegistryObject<ArmorItem> OPAL_CHEST = ITEMS.register("opal_chest",()->
  69. new ArmorItem(MysticalKelpModArmorTier.OPAL, EquipmentSlotType.CHEST,new Item.Properties().group(MysticalKelpMod.TAB)));
  70.  
  71. public static final RegistryObject<ArmorItem> OPAL_LEG = ITEMS.register("opal_leg",()->
  72. new ArmorItem(MysticalKelpModArmorTier.OPAL, EquipmentSlotType.LEGS,new Item.Properties().group(MysticalKelpMod.TAB)));
  73.  
  74. public static final RegistryObject<ArmorItem> OPAL_BOOT = ITEMS.register("opal_boot",()->
  75. new ArmorItem(MysticalKelpModArmorTier.OPAL, EquipmentSlotType.FEET,new Item.Properties().group(MysticalKelpMod.TAB)));
  76.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement