add mesecons mods
This commit is contained in:
parent
71a53fbef8
commit
9861939223
721 changed files with 19937 additions and 1 deletions
|
@ -0,0 +1,66 @@
|
|||
local toggle_timer = function (pos, restart)
|
||||
local timer = minetest.get_node_timer(pos)
|
||||
if timer:is_started()
|
||||
and not restart then
|
||||
timer:stop()
|
||||
else
|
||||
local interval = tonumber(minetest.get_meta(pos):get_string("interval")) or 1
|
||||
if interval < moremesecons.setting("adjustable_blinky_plant", "min_interval", 0.5) then
|
||||
interval = moremesecons.setting("adjustable_blinky_plant", "min_interval", 0.5)
|
||||
end
|
||||
timer:start(interval)
|
||||
end
|
||||
end
|
||||
|
||||
local on_timer = function(pos)
|
||||
if mesecon.flipstate(pos, minetest.get_node(pos)) == "on" then
|
||||
mesecon.receptor_on(pos)
|
||||
else
|
||||
mesecon.receptor_off(pos)
|
||||
end
|
||||
toggle_timer(pos, false)
|
||||
end
|
||||
|
||||
mesecon.register_node("moremesecons_adjustable_blinkyplant:adjustable_blinky_plant", {
|
||||
description="Adjustable Blinky Plant",
|
||||
drawtype = "plantlike",
|
||||
inventory_image = "moremesecons_blinky_plant_off.png",
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
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},
|
||||
},
|
||||
on_timer = on_timer,
|
||||
on_construct = function(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
meta:set_string("interval", "1")
|
||||
meta:set_string("formspec", "field[interval;interval;${interval}]")
|
||||
toggle_timer(pos, true)
|
||||
end,
|
||||
on_receive_fields = function(pos, _, fields, player)
|
||||
local interval = tonumber(fields.interval)
|
||||
if interval
|
||||
and not minetest.is_protected(pos, player:get_player_name()) then
|
||||
minetest.get_meta(pos):set_string("interval", interval)
|
||||
toggle_timer(pos, true)
|
||||
end
|
||||
end,
|
||||
},{
|
||||
tiles = {"moremesecons_blinky_plant_off.png"},
|
||||
groups = {dig_immediate=3},
|
||||
mesecons = {receptor = { state = mesecon.state.off }}
|
||||
},{
|
||||
tiles = {"moremesecons_blinky_plant_off.png^moremesecons_blinky_plant_on.png"},
|
||||
groups = {dig_immediate=3, not_in_creative_inventory=1},
|
||||
sunlight_propagates = true,
|
||||
mesecons = {receptor = { state = mesecon.state.on }},
|
||||
})
|
||||
|
||||
|
||||
minetest.register_craft({
|
||||
output = "moremesecons_adjustable_blinkyplant:adjustable_blinky_plant_off 1",
|
||||
recipe = { {"mesecons_blinkyplant:blinky_plant_off"},
|
||||
{"default:mese_crystal_fragment"},}
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue