shadow mantle

This commit is contained in:
2026-06-13 16:54:33 +02:00
parent 186d5968e5
commit 7610838848
4 changed files with 26 additions and 1 deletions

View File

@@ -248,3 +248,28 @@ minetest.register_tool("tuf:pick_gildedtuferalddeepstone", {
},
_mcl_upgradable = false,
})
minetest.register_tool("tuf:shadowmantle", {
description = ("Shadow Mantle"),
_doc_items_longdesc = mcl_armor.longdesc,
_doc_items_usagehelp = mcl_armor.usage,
inventory_image = "shadowmantle.png",
groups = { armor = 1, armor_torso = 1, mcl_armor_uses = 6767, enchantability = 67, elytra = 1, transport = 1 },
sounds = {
_mcl_armor_equip = "mcl_armor_equip_leather",
_mcl_armor_unequip = "mcl_armor_unequip_leather",
},
on_place = mcl_armor.equip_on_use,
on_secondary_use = mcl_armor.equip_on_use,
_mcl_armor_element = "torso",
_mcl_armor_texture = "shadow_mantle.png",
})
minetest.register_craft({
output = "tuf:shadowmantle",
recipe = {
{ "mcl_mobitems:feather", "tuf:gildedtuferalddeepstone_ingot", "mcl_mobitems:feather" },
{ "mcl_mobitems:feather", "mcl_core:diamond", "mcl_mobitems:feather" },
{ "mcl_mobitems:feather", "", "mcl_mobitems:feather" }
}
})

View File

@@ -1,3 +1,3 @@
name = tuf
depends = mcl_core
depends = mcl_core, mcl_player, mcl_enchanting, mcl_grindstone, mcl_armor, mcl_mobitems, mcl_honey
version = 0.0.2

BIN
textures/shadow_mantle.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 276 B

BIN
textures/shadowmantle.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 184 B