2012-03-05 19:21:26 +01:00
|
|
|
-- The BLINKY_PLANT
|
2013-11-29 23:06:50 +01:00
|
|
|
minetest.register_node("mesecons_blinkyplant:blinky_plant", {
|
|
|
|
drawtype = "plantlike",
|
|
|
|
visual_scale = 1,
|
|
|
|
tiles = {"jeija_blinky_plant_off.png"},
|
|
|
|
inventory_image = "jeija_blinky_plant_off.png",
|
|
|
|
walkable = false,
|
2013-12-01 02:45:10 +01:00
|
|
|
groups = {snappy=3, not_in_creative_inventory=1},
|
2013-11-29 23:06:50 +01:00
|
|
|
description="Deactivated Blinky Plant",
|
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.3, -0.5, -0.3, 0.3, -0.5+0.7, 0.3},
|
|
|
|
},
|
|
|
|
mesecons = {receptor = {
|
|
|
|
state = mesecon.state.off
|
|
|
|
}},
|
|
|
|
on_punch = function(pos, node, puncher)
|
|
|
|
minetest.set_node(pos, {name="mesecons_blinkyplant:blinky_plant_off"})
|
|
|
|
end
|
|
|
|
})
|
2012-03-05 19:21:26 +01:00
|
|
|
|
|
|
|
minetest.register_node("mesecons_blinkyplant:blinky_plant_off", {
|
2012-08-01 15:36:32 +02:00
|
|
|
drawtype = "plantlike",
|
2012-03-05 19:21:26 +01:00
|
|
|
visual_scale = 1,
|
2012-08-20 10:12:10 +02:00
|
|
|
tiles = {"jeija_blinky_plant_off.png"},
|
2012-03-05 19:21:26 +01:00
|
|
|
inventory_image = "jeija_blinky_plant_off.png",
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
2013-11-29 23:06:50 +01:00
|
|
|
groups = {snappy=3, mesecon = 2},
|
2012-03-05 19:21:26 +01:00
|
|
|
description="Blinky Plant",
|
2013-03-07 02:51:57 +01:00
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
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
|
|
|
},
|
2012-12-08 19:02:34 +01:00
|
|
|
mesecons = {receptor = {
|
|
|
|
state = mesecon.state.off
|
2013-11-29 23:06:50 +01:00
|
|
|
}},
|
|
|
|
on_punch = function(pos, node, puncher)
|
|
|
|
minetest.set_node(pos, {name="mesecons_blinkyplant:blinky_plant"})
|
|
|
|
end
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("mesecons_blinkyplant:blinky_plant_on", {
|
2012-08-01 15:36:32 +02:00
|
|
|
drawtype = "plantlike",
|
2012-03-05 19:21:26 +01:00
|
|
|
visual_scale = 1,
|
2012-08-20 10:12:10 +02:00
|
|
|
tiles = {"jeija_blinky_plant_on.png"},
|
2012-03-05 19:21:26 +01:00
|
|
|
inventory_image = "jeija_blinky_plant_off.png",
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
2013-11-29 23:06:50 +01:00
|
|
|
groups = {snappy=3, not_in_creative_inventory=1, mesecon = 2},
|
2013-04-28 12:40:08 +02:00
|
|
|
drop="mesecons_blinkyplant:blinky_plant_off 1",
|
2012-03-05 19:21:26 +01:00
|
|
|
light_source = LIGHT_MAX-7,
|
2012-06-05 04:20:04 +02:00
|
|
|
description = "Blinky Plant",
|
2013-03-07 02:51:57 +01:00
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
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
|
|
|
},
|
2012-12-08 19:02:34 +01:00
|
|
|
mesecons = {receptor = {
|
|
|
|
state = mesecon.state.on
|
2013-11-29 23:06:50 +01:00
|
|
|
}},
|
|
|
|
on_punch = function(pos, node, puncher)
|
2013-12-01 02:20:01 +01:00
|
|
|
minetest.swap_node(pos, {name = "mesecons_blinkyplant:blinky_plant"})
|
2013-11-29 23:06:50 +01:00
|
|
|
mesecon:receptor_off(pos)
|
|
|
|
end
|
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",
|
2012-03-05 19:21:26 +01:00
|
|
|
recipe = {
|
2013-04-28 12:40:08 +02:00
|
|
|
{"","group:mesecon_conductor_craftable",""},
|
|
|
|
{"","group:mesecon_conductor_craftable",""},
|
|
|
|
{"default:sapling","default:sapling","default:sapling"},
|
2012-03-05 19:21:26 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_abm(
|
|
|
|
{nodenames = {"mesecons_blinkyplant:blinky_plant_off"},
|
|
|
|
interval = BLINKY_PLANT_INTERVAL,
|
|
|
|
chance = 1,
|
|
|
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
|
|
|
--minetest.env:remove_node(pos)
|
|
|
|
minetest.env:add_node(pos, {name="mesecons_blinkyplant:blinky_plant_on"})
|
|
|
|
nodeupdate(pos)
|
|
|
|
mesecon:receptor_on(pos)
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_abm({
|
|
|
|
nodenames = {"mesecons_blinkyplant:blinky_plant_on"},
|
|
|
|
interval = BLINKY_PLANT_INTERVAL,
|
|
|
|
chance = 1,
|
|
|
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
|
|
|
--minetest.env:remove_node(pos)
|
|
|
|
minetest.env:add_node(pos, {name="mesecons_blinkyplant:blinky_plant_off"})
|
|
|
|
nodeupdate(pos)
|
|
|
|
mesecon:receptor_off(pos)
|
|
|
|
end,
|
|
|
|
})
|