This repository has been archived on 2024-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
mcl_emerald_stuff/armor.lua

20 lines
390 B
Lua

local modname = minetest.get_current_modname()
local modpath = minetest.get_modpath(modname)
local S = minetest.get_translator(modname)
mcl_armor.register_set({
name = "emerald",
description = "Emerald",
durability = 560,
enchantability = 10,
points = {
head = 3,
torso = 8,
legs = 6,
feet = 3,
},
toughness = 3,
craft_material = "mcl_core:emerald",
upgradable = true,
})