mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-20 22:33:16 -04:00
Added light ore!
This commit is contained in:
parent
61e97e8f96
commit
d0bcce3eaa
1 changed files with 1 additions and 9 deletions
|
@ -228,14 +228,6 @@ minetest.register_node("moontest:leaves", {
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("moontest:light", {
|
|
||||||
description = "Light",
|
|
||||||
tiles = {"moontest_light.png"},
|
|
||||||
light_source = 14,
|
|
||||||
groups = {cracky=3},
|
|
||||||
sounds = default.node_sound_glass_defaults(),
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_node("moontest:stonebrick", {
|
minetest.register_node("moontest:stonebrick", {
|
||||||
description = "Moon Stone Brick",
|
description = "Moon Stone Brick",
|
||||||
tiles = {"moontest_stonebricktop.png", "moontest_stonebrickbot.png", "moontest_stonebrick.png"},
|
tiles = {"moontest_stonebricktop.png", "moontest_stonebrickbot.png", "moontest_stonebrick.png"},
|
||||||
|
@ -302,7 +294,7 @@ minetest.register_node("moontest:light", {
|
||||||
description = "Light",
|
description = "Light",
|
||||||
tiles = {"moontest_light.png"},
|
tiles = {"moontest_light.png"},
|
||||||
light_source = 14,
|
light_source = 14,
|
||||||
groups = {cracky = 3, stone = 1},
|
groups = {cracky = 3},
|
||||||
drop = "moontest:light_crystal",
|
drop = "moontest:light_crystal",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue