X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=hive.lua;h=604313512f3811ded7cbc48e7b1c339ed8d1553b;hb=28877e7b4fd225638b1251333d319e9fc523bf96;hp=5ce5b60037d25ac7b446dd93d84a6bf44af49073;hpb=0422b28df07c3d649a8670db3d2f19386371b484;p=xdecor.git diff --git a/hive.lua b/hive.lua index 5ce5b60..6043135 100644 --- a/hive.lua +++ b/hive.lua @@ -1,12 +1,12 @@ local hive = {} +local honey_max = 16 function hive.construct(pos) local meta = minetest.get_meta(pos) local inv = meta:get_inventory() local formspec = [[ size[8,5;] - label[1.35,0;Bees are making honey] - label[1.35,0.5;with pollen around...] + label[0.5,0;Bees are busy making honey...] image[6,0;1,1;hive_bee.png] image[5,0;1,1;hive_layout.png] list[context;honey;5,0;1,1;] @@ -25,7 +25,7 @@ function hive.timer(pos) local time = (minetest.get_timeofday() or 0) * 24000 if time < 5500 or time > 18500 then return true end - local inv = minetest.get_meta(pos):get_inventory() + local inv = minetest.get_meta(pos):get_inventory() local honeystack = inv:get_stack("honey", 1) local honey = honeystack:get_count() @@ -34,8 +34,11 @@ function hive.timer(pos) local maxp = vector.add(pos, radius) local flowers = minetest.find_nodes_in_area_under_air(minp, maxp, "group:flower") - if #flowers > 2 and honey < 16 then + if #flowers > 2 and honey < honey_max then inv:add_item("honey", "xdecor:honey") + elseif honey == honey_max then + local timer = minetest.get_node_timer(pos) + timer:stop() return true end return true end @@ -55,6 +58,12 @@ xdecor.register("hive", { on_punch = function(_, _, puncher) puncher:set_hp(puncher:get_hp() - 2) end, - allow_metadata_inventory_put = function() return 0 end + allow_metadata_inventory_put = function() return 0 end, + on_metadata_inventory_take = function(pos, _, _, stack) + if stack:get_count() == honey_max then + local timer = minetest.get_node_timer(pos) + timer:start(math.random(64, 128)) + end + end })