Streamline tesseracts and separate trophies.
This commit is contained in:
parent
3de24bde95
commit
abffeb54d9
13 changed files with 278 additions and 424 deletions
21
trophies.lua
Normal file
21
trophies.lua
Normal file
|
@ -0,0 +1,21 @@
|
|||
|
||||
minetest.register_craftitem("fun_caves:unobtainium", {
|
||||
description = "Unobtainium",
|
||||
drawtype = "plantlike",
|
||||
paramtype = "light",
|
||||
tiles = {"fun_caves_unobtainium.png"},
|
||||
inventory_image = "fun_caves_unobtainium.png",
|
||||
groups = {dig_immediate = 3},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_craftitem("fun_caves:philosophers_stone", {
|
||||
description = "Philosopher's Stone",
|
||||
drawtype = "plantlike",
|
||||
paramtype = "light",
|
||||
tiles = {"fun_caves_phil_stone.png"},
|
||||
inventory_image = "fun_caves_phil_stone.png",
|
||||
groups = {dig_immediate = 3},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue