mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-05 18:10:26 +01:00
9 lines
262 B
Lua
9 lines
262 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"},
|
||
|
})
|