xdecor-libre/hive.lua

57 lines
1.6 KiB
Lua
Raw Normal View History

2015-08-06 22:19:42 +03:00
local hive = {}
function hive.construct(pos)
2015-07-05 02:38:12 +03:00
local meta = minetest.get_meta(pos)
2015-08-24 23:50:29 +03:00
local inv = meta:get_inventory()
2015-08-16 22:57:17 +03:00
2015-12-30 22:08:39 +03:00
local formspec = [[ size[8,5;]
label[1.35,0;Bees are making honey]
label[1.35,0.5;with pollen around...]
image[6,0;1,1;hive_bee.png]
image[5,0;1,1;hive_layout.png]
list[context;honey;5,0;1,1;]
list[current_player;main;0,1.35;8,4;] ]]
2016-01-03 15:58:29 +03:00
..xbg..default.get_hotbar_bg(0,1.35)
2015-12-30 22:08:39 +03:00
2016-01-03 15:58:29 +03:00
meta:set_string("formspec", formspec)
2015-07-05 02:38:12 +03:00
meta:set_string("infotext", "Artificial Hive")
inv:set_size("honey", 1)
end
xdecor.register("hive", {
description = "Artificial Hive",
tiles = {
2015-08-07 23:51:00 +03:00
"xdecor_hive_top.png", "xdecor_hive_top.png",
"xdecor_hive_side.png", "xdecor_hive_side.png",
"xdecor_hive_side.png", "xdecor_hive_front.png"
2015-07-05 02:38:12 +03:00
},
2015-11-16 00:55:12 +03:00
groups = {choppy=3, oddly_breakable_by_hand=2, flammable=1},
2015-08-06 22:19:42 +03:00
on_construct = hive.construct,
2016-01-03 15:58:29 +03:00
can_dig = function(pos, _)
return minetest.get_meta(pos):get_inventory():is_empty("honey")
end,
2016-01-03 15:58:29 +03:00
on_punch = function(_, _, puncher)
puncher:set_hp(puncher:get_hp()-4)
end,
2015-12-30 22:08:39 +03:00
allow_metadata_inventory_put = function() return 0 end
2015-07-05 02:38:12 +03:00
})
minetest.register_abm({
nodenames = {"xdecor:hive"},
interval = 30, chance = 10,
2015-08-12 21:49:07 +03:00
action = function(pos, _, _, _)
2015-08-24 23:50:29 +03:00
local inv = minetest.get_meta(pos):get_inventory()
2015-08-21 23:17:18 +03:00
local honeystack = inv:get_stack("honey", 1)
local honey = honeystack:get_count()
2015-07-05 02:38:12 +03:00
2015-11-16 00:15:04 +03:00
local radius = 4
2015-08-12 23:14:13 +03:00
local minp = vector.add(pos, -radius)
local maxp = vector.add(pos, radius)
2015-07-05 02:38:12 +03:00
local flowers = minetest.find_nodes_in_area(minp, maxp, "group:flower")
2016-01-03 15:58:29 +03:00
if #flowers >= 2 and honey < 16 then
inv:add_item("honey", "xdecor:honey")
end
2015-07-05 02:38:12 +03:00
end
})