dfcaverns/features/glow_crystals.lua

24 lines
629 B
Lua
Raw Normal View History

2018-05-18 09:43:56 +02:00
-- internationalization boilerplate
local MP = minetest.get_modpath(minetest.get_current_modname())
local S, NS = dofile(MP.."/intllib.lua")
--glowing mese crystal blocks
minetest.register_node("dfcaverns:glow_mese", {
description = S("Flawless Mese Block"),
tiles = {"dfcaverns_glow_mese.png"},
is_ground_content = true,
groups = {cracky=3},
sounds = default.node_sound_glass_defaults(),
light_source = 13,
paramtype = "light",
use_texture_alpha = true,
drawtype = "glasslike",
sunlight_propagates = true,
})
minetest.register_craft({
output = 'default:mese_crystal 12',
recipe = {
{'dfcaverns:glow_mese'},
}
})