22 lines
531 B
Lua
Raw Permalink Normal View History

2016-08-25 16:40:14 +01:00
-- Falling Light
-- A simple mod for explorers
-- (C) Tai "DuCake" Kedzierski 2016
-- Provided to you under 3-Clause BSD
minetest.register_node("fallinglight:falling_light", {
description = "Falling Light",
paramtype = "light",
light_source = 14,
light_propagates = true,
sunlight_propagates = true,
tiles = {"default_sand.png"},
groups = {crumbly = 3, falling_node = 1},
})
minetest.register_craft ({
output = "fallinglight:falling_light",
type = "shapeless",
recipe = {"group:sand","default:torch"}
}
)