11package com .adccadc .rust .item ;
22
33import com .adccadc .rust .Rust ;
4+ import com .adccadc .rust .entity .ModEntity ;
45import net .minecraft .item .Item ;
6+ import net .minecraft .item .SpawnEggItem ;
57import net .minecraft .item .ToolMaterial ;
68import net .minecraft .item .equipment .ArmorMaterial ;
79import net .minecraft .item .equipment .EquipmentAsset ;
@@ -35,7 +37,7 @@ public static Item register(String name, Function<Item.Settings, Item> itemFacto
3537 14 ,
3638 Map .of (
3739 EquipmentType .HELMET , 1 ,
38- EquipmentType .CHESTPLATE , 7 ,
40+ EquipmentType .CHESTPLATE , 5 ,
3941 EquipmentType .LEGGINGS , 4 ,
4042 EquipmentType .BOOTS , 1
4143 ), 8 ,
@@ -48,13 +50,15 @@ public static Item register(String name, Function<Item.Settings, Item> itemFacto
4850 16 ,
4951 Map .of (
5052 EquipmentType .HELMET , 2 ,
51- EquipmentType .CHESTPLATE , 8 ,
52- EquipmentType .LEGGINGS , 3 ,
53+ EquipmentType .CHESTPLATE , 6 ,
54+ EquipmentType .LEGGINGS , 5 ,
5355 EquipmentType .BOOTS , 2
5456 ), 6 ,
5557 SoundEvents .ITEM_ARMOR_EQUIP_IRON , 0.25F , 0.025F ,
5658 ItemTags .IRON_TOOL_MATERIALS , WAXED
5759 );
60+ public static final Item RUSTY_IRON_GOLEM_EGG = register ("rusty_iron_golem_spawn_egg" , RustyIronGolemEgg ::new , new Item .Settings ());
61+ public static final Item WAXED_IRON_GOLEM_EGG = register ("waxed_iron_golem_spawn_egg" , WaxedIronGolemEgg ::new , new Item .Settings ());
5862
5963 public static final Item VERDIGRIS = register ("verdigris" , Item ::new , new Item .Settings ());
6064 public static final Item IRON_RUST = register ("iron_rust" , Item ::new , new Item .Settings ());
0 commit comments