From 1b01691e9d704a21b3dc5181e2ff702c02f677e4 Mon Sep 17 00:00:00 2001 From: SmokeyDope Date: Wed, 8 Feb 2023 22:53:43 +0000 Subject: [PATCH] Add copper armor --- mcl_copper_stuff/armor.lua | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 mcl_copper_stuff/armor.lua diff --git a/mcl_copper_stuff/armor.lua b/mcl_copper_stuff/armor.lua new file mode 100644 index 0000000..6028142 --- /dev/null +++ b/mcl_copper_stuff/armor.lua @@ -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", +})