Add copper armor

This commit is contained in:
SmokeyDope 2023-02-08 22:53:43 +00:00
parent 7bace02455
commit 1b01691e9d
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
local modname = minetest.get_current_modname()
local modpath = minetest.get_modpath(modname)
local S = minetest.get_translator(modname)
mcl_armor.register_set({
name = "copper",
description = "Copper",
durability = 100,
enchantability = 10,
points = {
head = 1,
torso = 4,
legs = 3,
feet = 1,
},
toughness = 1,
craft_material = "mcl_copper:copper_ingot",
})