Армированные мобы
import mods.armoreablemods.ArmorGroup;new ArmorGroup(group_name).inSlot(slot, item).setWeight(x).register(entity);Доступные слоты:

Last updated
import mods.armoreablemods.ArmorGroup;
new ArmorGroup("zombie_test_1")
.inSlot(<equipmentslottype:head>, <item:minecraft:iron_helmet>)
.inSlot(<equipmentslottype:chest>, <item:minecraft:iron_chestplate>)
.inSlot(<equipmentslottype:legs>, <item:minecraft:iron_leggings>)
.inSlot(<equipmentslottype:feet>, <item:minecraft:iron_boots>)
.inSlot(<equipmentslottype:mainhand>, <item:minecraft:iron_sword>)
.inSlot(<equipmentslottype:offhand>, <item:minecraft:shield>)
.setWeight(5.0)
.register(<entitytype:minecraft:zombie>);