forked from VoxeLibre/VoxeLibre
Add code for netherite armor
This commit is contained in:
parent
92992cb44e
commit
f0f52713f7
|
@ -81,6 +81,21 @@ mcl_armor.register_set({
|
||||||
craft_material = "mcl_core:diamond",
|
craft_material = "mcl_core:diamond",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
mcl_armor.register_set({
|
||||||
|
name = "netherite",
|
||||||
|
description = "Netherite",
|
||||||
|
durability = 555,
|
||||||
|
enchantability = 10,
|
||||||
|
points = {
|
||||||
|
head = 3,
|
||||||
|
torso = 8,
|
||||||
|
legs = 6,
|
||||||
|
feet = 3,
|
||||||
|
},
|
||||||
|
toughness = 2,
|
||||||
|
craft_material = "mcl_nether:netherite_ingot",
|
||||||
|
})
|
||||||
|
|
||||||
mcl_armor.register_protection_enchantment({
|
mcl_armor.register_protection_enchantment({
|
||||||
id = "projectile_protection",
|
id = "projectile_protection",
|
||||||
name = S("Projectile Protection"),
|
name = S("Projectile Protection"),
|
||||||
|
|
Loading…
Reference in New Issue