Advertisement
Vaerys_Dawn

Catnop

Dec 26th, 2020
1,128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.81 KB | None | 0 0
  1.     public static final RegistryObject<Item> CATNIP_HONEYCOMB = ITEMS.register("catnip_honeycomb", () -> new Item(new Item.Properties().group(ItemGroupResourcefulBees.RESOURCEFUL_BEES).rarity(Rarity.EPIC)));
  2.     public static final RegistryObject<Item> CATNIP_HONEY_BOTTLE = ITEMS.register("catnip_honey_bottle", () -> new HoneyBottleItem(new Item.Properties()
  3.             .group(ItemGroupResourcefulBees.RESOURCEFUL_BEES)
  4.             .containerItem(Items.GLASS_BOTTLE)
  5.             .food(new Food.Builder()
  6.                     .hunger(8)
  7.                     .saturation(5)
  8.                     .setAlwaysEdible()
  9.                     .effect(() -> new EffectInstance(Effects.SPEED, 2400, 2), 1)
  10.                     .effect(() -> new EffectInstance(Effects.NIGHT_VISION, 2400, 0), 1)
  11.                     .effect(() -> new EffectInstance(Effects.JUMP_BOOST, 2400, 1), 1)
  12.                     .build())
  13.             .maxStackSize(16)
  14.             .rarity(Rarity.EPIC)));
  15.     public static final RegistryObject<Item> CATNIP_HONEYCOMB_BLOCK_ITEM = ITEMS.register("catnip_honeycomb_block", () -> new BlockItem(ModBlocks.CATNIP_HONEYCOMB_BLOCK.get(), new Item.Properties().group(ItemGroupResourcefulBees.RESOURCEFUL_BEES).rarity(Rarity.RARE)));
  16.     public static final RegistryObject<Item> CATNIP_HONEY_BLOCK_ITEM = ITEMS.register("catnip_honey_block", () -> new BlockItem(ModBlocks.CATNIP_HONEY_BLOCK.get(), new Item.Properties().group(ItemGroupResourcefulBees.RESOURCEFUL_BEES).rarity(Rarity.RARE)));
  17.     public static final RegistryObject<Item> CATNIP_HONEY_FLUID_BUCKET = ITEMS.register("catnip_honey_fluid_bucket", () -> new BucketItem(ModFluids.CATNIP_HONEY_STILL, new Item.Properties().group(ItemGroupResourcefulBees.RESOURCEFUL_BEES).containerItem(net.minecraft.item.Items.BUCKET).maxStackSize(1).rarity(Rarity.RARE)));
  18.  
  19.     public static final RegistryObject<Item> T1_BEEHIVE_ITEM = ITEMS.register("t1_beehive", () -> new BlockItem(ModBlocks.T1_BEEHIVE.get(), new Item.Properties().group(ItemGroupResourcefulBees.RESOURCEFUL_BEES)));
  20.     public static final RegistryObject<Item> T2_BEEHIVE_ITEM = ITEMS.register("t2_beehive", () -> new BlockItem(ModBlocks.T2_BEEHIVE.get(), new Item.Properties().group(ItemGroupResourcefulBees.RESOURCEFUL_BEES)));
  21.     public static final RegistryObject<Item> T3_BEEHIVE_ITEM = ITEMS.register("t3_beehive", () -> new BlockItem(ModBlocks.T3_BEEHIVE.get(), new Item.Properties().group(ItemGroupResourcefulBees.RESOURCEFUL_BEES)));
  22.     public static final RegistryObject<Item> T4_BEEHIVE_ITEM = ITEMS.register("t4_beehive", () -> new BlockItem(ModBlocks.T4_BEEHIVE.get(), new Item.Properties().group(ItemGroupResourcefulBees.RESOURCEFUL_BEES)));
  23.     public static final RegistryObject<Item> SCRAPER = ITEMS.register("scraper", () -> new Item(new Item.Properties().group(ItemGroupResourcefulBees.RESOURCEFUL_BEES).maxStackSize(1)) {
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement