Add initial elixirs.
This commit is contained in:
parent
04c6051e8a
commit
9193317ca6
13 changed files with 78 additions and 5 deletions
|
@ -99,3 +99,14 @@ minetest.register_craftitem("fun_caves:silver_lump", {
|
|||
description = "Lump of Silver",
|
||||
inventory_image = 'default_coal_lump.png^[colorize:#FFFFFF:175',
|
||||
})
|
||||
|
||||
minetest.register_craftitem("fun_caves:silver_ingot", {
|
||||
description = "Silver Ingot",
|
||||
inventory_image = 'default_steel_ingot.png^[colorize:#FFFFFF:175',
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "fun_caves:silver_ingot",
|
||||
recipe = "fun_caves:silver_lump",
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue