minetest-mod-bonemeal/lucky_block.lua

30 lines
558 B
Lua
Raw Normal View History

2017-07-24 20:17:20 +01:00
-- add lucky blocks
2017-07-24 20:31:01 +01:00
local function growy(pos, player)
local dpos = minetest.find_node_near(pos, 1, "group:soil")
if dpos then
bonemeal:on_use(dpos, 5)
end
end
2017-07-24 20:17:20 +01:00
if minetest.get_modpath("lucky_block") then
2017-10-12 12:00:42 +01:00
lucky_block:add_blocks({
{"lig"},
{"dro", {"bonemeal:mulch"}, 10},
{"dro", {"bonemeal:bonemeal"}, 10},
{"dro", {"bonemeal:fertiliser"}, 10},
{"cus", growy},
2018-10-16 17:50:12 +01:00
{"nod", "default:chest", 0, {
{name = "bonemeal:mulch", max = 20},
{name = "bonemeal:bonemeal", max = 15},
{name = "bonemeal:fertiliser", max = 10},
}},
2017-10-12 12:00:42 +01:00
})
2017-07-24 20:17:20 +01:00
2017-10-12 12:00:42 +01:00
end