mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-06-01 03:20:03 -04:00
add moreore lumps and ingors
adds moreores silver and mithril lumps/ingots
This commit is contained in:
parent
b20725026e
commit
1ff79ba542
1 changed files with 20 additions and 0 deletions
|
@ -285,6 +285,16 @@ minetest.register_craftitem("default:gold_lump", {
|
|||
inventory_image = "default_gold_lump.png",
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:silver_lump", {
|
||||
description = "Silver Lump",
|
||||
inventory_image = "default_silver_lump.png",
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:mithril_lump", {
|
||||
description = "Mithril Lump",
|
||||
inventory_image = "default_mithril_lump.png",
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:diamond", {
|
||||
description = "Diamond",
|
||||
inventory_image = "default_diamond.png",
|
||||
|
@ -320,6 +330,16 @@ minetest.register_craftitem("default:gold_ingot", {
|
|||
inventory_image = "default_gold_ingot.png"
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:silver_ingot", {
|
||||
description = "Silver Ingot",
|
||||
inventory_image = "default_silver_ingot.png"
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:mithril_ingot", {
|
||||
description = "Mithril Ingot",
|
||||
inventory_image = "default_mithril_ingot.png"
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:mese_crystal_fragment", {
|
||||
description = "Mese Crystal Fragment",
|
||||
inventory_image = "default_mese_crystal_fragment.png",
|
||||
|
|
Loading…
Add table
Reference in a new issue