mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-26 20:41:11 +01:00
Add code for netherite armor
This commit is contained in:
parent
92992cb44e
commit
f0f52713f7
1 changed files with 15 additions and 0 deletions
|
@ -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 a new issue