mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-05 10:00:26 +01:00
aa2f62afb3
- Chmod-ed all files - Removed whitespaces - Added automated arbalest in spreadsheet, throwing, and hunters' reserved items - Solves #206
14 lines
406 B
Lua
Executable File
14 lines
406 B
Lua
Executable File
-- 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",
|
|
})
|