Advertisement
SforzandoCF

compathc

Dec 2nd, 2024 (edited)
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 10.21 KB | None | 0 0
  1. package net.pulchraprospectus.compatch.item;
  2.  
  3. public class CompatchItems {
  4.     public static Item DRIFTWOOD_GLASS = Registry.register(Registries.ITEMS, Identifier.of("compatch", "driftwood_glass"), new BlockItem(CompatchBlocks.DRIFTWOOD_GLASS, new Item.Settings()));
  5.     public static Item DRIFTWOOD_GLASS_PANE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "driftwood_glass_pane"), new BlockItem(CompatchBlocks.DRIFTWOOD_GLASS_PANE, new Item.Settings()));
  6.     public static Item DRIFTWOOD_FISH_PLAQUE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "driftwood_fish_plaque"), new BlockItem(CompatchBlocks.DRIFTWOOD_FISH_PLAQUE, new Item.Settings()));
  7.     public static Item IRON_FRAME_DRIFTWOOD_FISH_PLAQUE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "iron_frame_driftwood_fish_plaque"), new BlockItem(CompatchBlocks.DRIFTWOOD_FISH_PLAQUE, new Item.Settings()));
  8.     public static Item GOLD_FRAME_DRIFTWOOD_FISH_PLAQUE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "gold_frame_driftwood_fish_plaque"), new BlockItem(CompatchBlocks.GOLD_FRAME_DRIFTWOOD_FISH_PLAQUE, new Item.Settings()));
  9.     public static Item GILDED_DRIFTWOOD_FISH_PLAQUE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "gilded_driftwood_fish_plaque"), new BlockItem(CompatchBlocks.GILDED_DRIFTWOOD_FISH_PLAQUE, new Item.Settings()));
  10.    
  11.     public static Item RIVER_GLASS = Registry.register(Registries.ITEMS, Identifier.of("compatch", "river_glass"), new BlockItem(CompatchBlocks.RIVER_GLASS, new Item.Settings()));
  12.     public static Item RIVER_GLASS_PANE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "river_glass_pane"), new BlockItem(CompatchBlocks.RIVER_GLASS_PANE, new Item.Settings()));
  13.     public static Item RIVER_FISH_PLAQUE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "river_fish_plaque"), new BlockItem(CompatchBlocks.RIVER_FISH_PLAQUE, new Item.Settings()));
  14.     public static Item IRON_FRAME_RIVER_FISH_PLAQUE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "iron_frame_river_fish_plaque"), new BlockItem(CompatchBlocks.RIVER_FISH_PLAQUE, new Item.Settings()));
  15.     public static Item GOLD_FRAME_RIVER_FISH_PLAQUE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "gold_frame_river_fish_plaque"), new BlockItem(CompatchBlocks.GOLD_FRAME_RIVER_FISH_PLAQUE, new Item.Settings()));
  16.     public static Item GILDED_RIVER_FISH_PLAQUE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "gilded_river_fish_plaque"), new BlockItem(CompatchBlocks.GILDED_RIVER_FISH_PLAQUE, new Item.Settings()));
  17.    
  18.     public static Item COCONUT_GLASS = Registry.register(Registries.ITEMS, Identifier.of("compatch", "coconut_glass"), new BlockItem(CompatchBlocks.COCONUT_GLASS, new Item.Settings()));
  19.     public static Item COCONUT_GLASS_PANE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "coconut_glass_pane"), new BlockItem(CompatchBlocks.COCONUT_GLASS_PANE, new Item.Settings()));
  20.     public static Item COCONUT_FISH_PLAQUE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "coconut_fish_plaque"), new BlockItem(CompatchBlocks.COCONUT_FISH_PLAQUE, new Item.Settings()));
  21.     public static Item IRON_FRAME_COCONUT_FISH_PLAQUE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "iron_frame_coconut_fish_plaque"), new BlockItem(CompatchBlocks.COCONUT_FISH_PLAQUE, new Item.Settings()));
  22.     public static Item GOLD_FRAME_COCONUT_FISH_PLAQUE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "gold_frame_coconut_fish_plaque"), new BlockItem(CompatchBlocks.GOLD_FRAME_COCONUT_FISH_PLAQUE, new Item.Settings()));
  23.     public static Item GILDED_COCONUT_FISH_PLAQUE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "gilded_coconut_fish_plaque"), new BlockItem(CompatchBlocks.GILDED_COCONUT_FISH_PLAQUE, new Item.Settings()));
  24.    
  25.     public static Item WALNUT_GLASS = Registry.register(Registries.ITEMS, Identifier.of("compatch", "walnut_glass"), new BlockItem(CompatchBlocks.WALNUT_GLASS, new Item.Settings()));
  26.     public static Item WALNUT_GLASS_PANE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "walnut_glass_pane"), new BlockItem(CompatchBlocks.WALNUT_GLASS_PANE, new Item.Settings()));
  27.     public static Item WALNUT_FISH_PLAQUE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "walnut_fish_plaque"), new BlockItem(CompatchBlocks.WALNUT_FISH_PLAQUE, new Item.Settings()));
  28.     public static Item IRON_FRAME_WALNUT_FISH_PLAQUE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "iron_frame_walnut_fish_plaque"), new BlockItem(CompatchBlocks.WALNUT_FISH_PLAQUE, new Item.Settings()));
  29.     public static Item GOLD_FRAME_WALNUT_FISH_PLAQUE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "gold_frame_walnut_fish_plaque"), new BlockItem(CompatchBlocks.GOLD_FRAME_WALNUT_FISH_PLAQUE, new Item.Settings()));
  30.     public static Item GILDED_WALNUT_FISH_PLAQUE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "gilded_walnut_fish_plaque"), new BlockItem(CompatchBlocks.GILDED_WALNUT_FISH_PLAQUE, new Item.Settings()));
  31.    
  32.     public static Item BLAZE_GOLD_HELMET = Registry.register(Registries.ITEMS, Identifier.of("compatch", "blaze_gold_helmet"), new ArmorItem(CompatchArmorMaterials.BLAZE_GOLD, EquipmentType.HELMET, new Item.Settings()));
  33.     public static Item BLAZE_GOLD_CHESTPLATE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "blaze_gold_chestplate"), new ArmorItem(CompatchArmorMaterials.BLAZE_GOLD, EquipmentType.CHESTPLATE, new Item.Settings()));
  34.     public static Item BLAZE_GOLD_LEGGINGS = Registry.register(Registries.ITEMS, Identifier.of("compatch", "blaze_gold_leggings"), new ArmorItem(CompatchArmorMaterials.BLAZE_GOLD, EquipmentType.LEGGINGS, new Item.Settings()));
  35.     public static Item BLAZE_GOLD_BOOTS = Registry.register(Registries.ITEMS, Identifier.of("compatch", "blaze_gold_boots"), new ArmorItem(CompatchArmorMaterials.BLAZE_GOLD, EquipmentType.BOOTS, new Item.Settings()));
  36.    
  37.     public static Item SOUL_BLAZE_HELMET = Registry.register(Registries.ITEMS, Identifier.of("compatch", "soul_blaze_helmet"), new ArmorItem(CompatchArmorMaterials.SOUL_BLAZE, EquipmentType.HELMET, new Item.Settings()));
  38.     public static Item SOUL_BLAZE_CHESTPLATE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "soul_blaze_chestplate"), new ArmorItem(CompatchArmorMaterials.SOUL_BLAZE, EquipmentType.CHESTPLATE, new Item.Settings()));
  39.     public static Item SOUL_BLAZE_LEGGINGS = Registry.register(Registries.ITEMS, Identifier.of("compatch", "soul_blaze_leggings"), new ArmorItem(CompatchArmorMaterials.SOUL_BLAZE, EquipmentType.LEGGINGS, new Item.Settings()));
  40.     public static Item SOUL_BLAZE_BOOTS = Registry.register(Registries.ITEMS, Identifier.of("compatch", "soul_blaze_boots"), new ArmorItem(CompatchArmorMaterials.SOUL_BLAZE, EquipmentType.BOOTS, new Item.Settings()));
  41.    
  42.     public static Item STEEL_HELMET = Registry.register(Registries.ITEMS, Identifier.of("compatch", "steel_helmet"), new ArmorItem(CompatchArmorMaterials.STEEL, EquipmentType.HELMET, new Item.Settings()));
  43.     public static Item STEEL_CHESTPLATE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "steel_chestplate"), new ArmorItem(CompatchArmorMaterials.STEEL, EquipmentType.CHESTPLATE, new Item.Settings()));
  44.     public static Item STEEL_LEGGINGS = Registry.register(Registries.ITEMS, Identifier.of("compatch", "steel_leggings"), new ArmorItem(CompatchArmorMaterials.STEEL, EquipmentType.LEGGINGS, new Item.Settings()));
  45.     public static Item STEEL_BOOTS = Registry.register(Registries.ITEMS, Identifier.of("compatch", "steel_boots"), new ArmorItem(CompatchArmorMaterials.STEEL, EquipmentType.BOOTS, new Item.Settings()));
  46.    
  47.     public static Item SCULK_STONE_SILVER_ORE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "sculk_stone_silver_ore"), new BlockItem(CompatchBlocks.SCULK_STONE_SILVER_ORE, new Item.Settings()));
  48.     public static Item SCULK_STONE_RANDOMIUM = Registry.register(Registries.ITEMS, Identifier.of("compatch", "sculk_stone_randomium"), new BlockItem(CompatchBlocks.SCULK_STONE_RANDOMIUM, new Item.Settings()));
  49.     public static Item SCULK_STONE_ZINC_ORE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "sculk_stone_zinc_ore"), new BlockItem(CompatchBlocks.SCULK_STONE_ZINC_ORE, new Item.Settings()));
  50.     public static Item SCULK_STONE_POTASSIUM_ORE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "sculk_stone_potassium_ore"), new BlockItem(CompatchBlocks.SCULK_STONE_POTASSIUM_ORE, new Item.Settings()));
  51.     public static Item SCULK_STONE_SULFUR_ORE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "sculk_stone_sulfur_ore"), new BlockItem(CompatchBlocks.SCULK_STONE_SULFUR_ORE, new Item.Settings()));
  52.     public static Item SCULK_STONE_STELLIUM_ORE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "sculk_stone_stellium_ore"), new BlockItem(CompatchBlocks.SCULK_STONE_STELLIUM_ORE, new Item.Settings()));
  53.    
  54.     public static Item GLOOMSLATE_SILVER_ORE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "gloomslate_silver_ore"), new BlockItem(CompatchBlocks.GLOOMSLATE_SILVER_ORE, new Item.Settings()));
  55.     public static Item GLOOMSLATE_RANDOMIUM = Registry.register(Registries.ITEMS, Identifier.of("compatch", "gloomslate_randomium"), new BlockItem(CompatchBlocks.GLOOMSLATE_RANDOMIUM, new Item.Settings()));
  56.     public static Item GLOOMSLATE_ZINC_ORE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "gloomslate_zinc_ore"), new BlockItem(CompatchBlocks.GLOOMSLATE_ZINC_ORE, new Item.Settings()));
  57.     public static Item GLOOMSLATE_POTASSIUM_ORE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "gloomslate_potassium_ore"), new BlockItem(CompatchBlocks.GLOOMSLATE_POTASSIUM_ORE, new Item.Settings()));
  58.     public static Item GLOOMSLATE_SULFUR_ORE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "gloomslate_sulfur_ore"), new BlockItem(CompatchBlocks.GLOOMSLATE_SULFUR_ORE, new Item.Settings()));
  59.     public static Item GLOOMSLATE_STELLIUM_ORE = Registry.register(Registries.ITEMS, Identifier.of("compatch", "gloomslate_stellium_ore"), new BlockItem(CompatchBlocks.GLOOMSLATE_STELLIUM_ORE, new Item.Settings()));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement