2012-03-05 19:21:26 +01:00
|
|
|
-- The BLINKY_PLANT
|
|
|
|
|
2014-11-22 22:09:26 +01:00
|
|
|
local toggle_timer = function (pos)
|
|
|
|
local timer = minetest.get_node_timer(pos)
|
|
|
|
if timer:is_started() then
|
|
|
|
timer:stop()
|
|
|
|
else
|
|
|
|
timer:start(mesecon.setting("blinky_plant_interval", 3))
|
|
|
|
end
|
|
|
|
end
|
2012-03-05 19:21:26 +01:00
|
|
|
|
2014-11-22 22:09:26 +01:00
|
|
|
local on_timer = function (pos)
|
|
|
|
local node = minetest.get_node(pos)
|
|
|
|
if(mesecon.flipstate(pos, node) == "on") then
|
|
|
|
mesecon.receptor_on(pos)
|
|
|
|
else
|
|
|
|
mesecon.receptor_off(pos)
|
|
|
|
end
|
|
|
|
toggle_timer(pos)
|
|
|
|
end
|
|
|
|
|
|
|
|
mesecon.register_node("mesecons_blinkyplant:blinky_plant", {
|
|
|
|
description="Blinky Plant",
|
2012-08-01 15:36:32 +02:00
|
|
|
drawtype = "plantlike",
|
2012-03-05 19:21:26 +01:00
|
|
|
inventory_image = "jeija_blinky_plant_off.png",
|
|
|
|
paramtype = "light",
|
2017-10-31 22:50:39 +01:00
|
|
|
is_ground_content = false,
|
2012-03-05 19:21:26 +01:00
|
|
|
walkable = false,
|
2022-05-05 16:57:53 +02:00
|
|
|
sounds = mesecon.node_sound.leaves,
|
2012-08-01 12:48:00 +02:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
2013-04-20 17:25:12 +02:00
|
|
|
fixed = {-0.3, -0.5, -0.3, 0.3, -0.5+0.7, 0.3},
|
2012-08-01 12:48:00 +02:00
|
|
|
},
|
2014-11-22 22:09:26 +01:00
|
|
|
on_timer = on_timer,
|
2022-02-12 20:12:12 +01:00
|
|
|
on_rightclick = function(pos, _, clicker)
|
2020-12-10 11:53:50 +01:00
|
|
|
if minetest.is_protected(pos, clicker and clicker:get_player_name() or "") then
|
2020-12-04 03:12:41 +01:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
toggle_timer(pos)
|
|
|
|
end,
|
2014-11-22 22:09:26 +01:00
|
|
|
on_construct = toggle_timer
|
|
|
|
},{
|
|
|
|
tiles = {"jeija_blinky_plant_off.png"},
|
|
|
|
groups = {dig_immediate=3},
|
|
|
|
mesecons = {receptor = { state = mesecon.state.off }}
|
|
|
|
},{
|
|
|
|
tiles = {"jeija_blinky_plant_on.png"},
|
|
|
|
groups = {dig_immediate=3, not_in_creative_inventory=1},
|
|
|
|
mesecons = {receptor = { state = mesecon.state.on }}
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2013-04-28 12:40:08 +02:00
|
|
|
output = "mesecons_blinkyplant:blinky_plant_off 1",
|
2014-11-22 22:09:26 +01:00
|
|
|
recipe = { {"","group:mesecon_conductor_craftable",""},
|
|
|
|
{"","group:mesecon_conductor_craftable",""},
|
2015-01-20 19:28:44 +01:00
|
|
|
{"group:sapling","group:sapling","group:sapling"}}
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|