mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-20 22:33:16 -04:00
9 lines
222 B
Lua
9 lines
222 B
Lua
minetest.register_node("moontest:lightore", {
|
|
description = "Lightore",
|
|
tiles = {"moontest_stone.png^moontest_light_ore.png"},
|
|
light_source = 7,
|
|
groups = {cracky = 3, stone = 1},
|
|
drop = "moontest:light_crystal",
|
|
})
|
|
|
|
|