1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-20 11:40:17 +02:00
server-nalc/mods/throwing/crafts.lua

14 lines
406 B
Lua
Raw Normal View History

2015-08-02 11:19:56 +02:00
-- 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",
})