mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-05 10:00:26 +01:00
bf7a9b02be
- Related to #177
14 lines
406 B
Lua
14 lines
406 B
Lua
-- Craft recipe of the "Mithril String"
|
|
minetest.register_craft({
|
|
output = "throwing:string_mithril",
|
|
description = "Mithril String",
|
|
inventory_image = "string_mithril.png",
|
|
type = "shapeless",
|
|
recipe = {"moreores:mithril_ingot", "farming:string"},
|
|
})
|
|
|
|
minetest.register_craftitem("throwing:string_mithril", {
|
|
inventory_image = "throwing_string_mithril.png",
|
|
description = "Mithril String",
|
|
})
|