nodecore-skyblock/mods/nc_torch/abm.lua

55 lines
1.5 KiB
Lua

-- LUALOCALS < ---------------------------------------------------------
local minetest, nodecore, pairs, vector
= minetest, nodecore, pairs, vector
-- LUALOCALS > ---------------------------------------------------------
local modname = minetest.get_current_modname()
nodecore.register_limited_abm({
label = "Torch Igniting",
interval = 6,
chance = 1,
nodenames = {modname .. ":torch_lit"},
neighbors = {"group:flammable"},
action = function(pos)
local check = {
{x = 1, y = 0, z = 0},
{x = -1, y = 0, z = 0},
{x = 0, y = 0, z = 1},
{x = 0, y = 0, z = -1},
{x = 0, y = 1, z = 0}
}
for _, ofst in pairs(check) do
local npos = vector.add(pos, ofst)
local nbr = minetest.get_node(npos)
if minetest.get_item_group(nbr.name, "flammable") > 0 and not nodecore.quenched(npos) then
nodecore.fire_check_ignite(npos, nbr)
end
end
end
})
nodecore.register_limited_abm({
label = "Torch Extinguishing",
interval = 1,
chance = 1,
nodenames = {modname .. ":torch_lit"},
action = function(pos)
if nodecore.quenched(pos) or
minetest.get_gametime() > minetest.get_meta(pos):get_float("expire") then
minetest.remove_node(pos)
minetest.add_item(pos, {name = "nc_fire:lump_ash"})
minetest.sound_play("nc_fire_snuff", {gain = 1, pos = pos})
end
end
})
nodecore.register_ambiance({
label = "Flame Ambiance",
nodenames = {modname .. ":torch_lit"},
interval = 1,
chance = 1,
sound_name = "nc_fire_flamy",
sound_gain = 0.1
})