mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-13 05:50:31 +01:00
dcc1873cbe
Also fixes aliasing...
40 lines
1.1 KiB
Lua
40 lines
1.1 KiB
Lua
local modname = minetest.get_current_modname()
|
|
|
|
minetest.register_craftitem(modname .. ':tin_lump', {
|
|
description = "Tin Lump",
|
|
inventory_image = 'default_tin_lump.png',
|
|
})
|
|
|
|
minetest.register_craftitem(modname .. ':silver_lump', {
|
|
description = "Silver Lump",
|
|
inventory_image = 'default_silver_lump.png',
|
|
})
|
|
|
|
minetest.register_craftitem(modname .. ':mithril_lump', {
|
|
description = "Mithril Lump",
|
|
inventory_image = 'default_mithril_lump.png',
|
|
})
|
|
|
|
minetest.register_craftitem(modname .. ':tin_ingot', {
|
|
description = "Tin Ingot",
|
|
inventory_image = 'default_tin_ingot.png',
|
|
groups = {ingot = 1},
|
|
})
|
|
|
|
minetest.register_craftitem(modname .. ':silver_ingot', {
|
|
description = "Silver Ingot",
|
|
inventory_image = 'default_silver_ingot.png',
|
|
groups = {ingot = 1},
|
|
})
|
|
|
|
minetest.register_craftitem(modname .. ':mithril_ingot', {
|
|
description = "Mithril Ingot",
|
|
groups = {ingot = 1},
|
|
inventory_image = 'default_mithril_ingot.png',
|
|
})
|
|
|
|
minetest.register_craftitem(modname .. ':scorched_stuff', {
|
|
description = "Scorched Stuff",
|
|
inventory_image = 'default_scorched_stuff.png',
|
|
})
|