minetest.register_node("theboss132:swords_mod", {
description = "Different material more attack damage",
tiles = {
"theboss132_swords_mod_top.png",
"theboss132_swords_mod_bottom.png",
"theboss132_swords_mod_right.png",
"theboss132_swords_mod_left.png",
"theboss132_swords_mod_back.png",
"theboss132_swords_mod_front.png"
},
groups = {snappy = 2}
})
minetest.register_craft({
output = "theboss132:swords_mod",
type = "shapeless",
recipe = {
{"default:sword_diamond", "default:sword_stone", "default:copper_ingot"},
{"default:sword_wood", "default:sword_wood", "default:steel_ingot"},
{"default:stick", "default:stick", "default:stick"},
}
})