nodecore-cd2025/mods/nc_tree/cultivation.lua

108 lines
3.0 KiB
Lua
Raw Normal View History

2018-11-03 11:26:15 -04:00
-- LUALOCALS < ---------------------------------------------------------
local math, minetest, nodecore
= math, minetest, nodecore
2019-02-01 22:17:06 -05:00
local math_random, math_sqrt
= math.random, math.sqrt
2018-11-03 11:26:15 -04:00
-- LUALOCALS > ---------------------------------------------------------
local modname = minetest.get_current_modname()
local ldname = "nc_terrain:dirt_loose"
local epname = modname .. ":eggcorn_planted"
2018-11-03 11:26:15 -04:00
minetest.register_node(modname .. ":eggcorn", {
description = "Eggcorn",
2018-11-03 11:26:15 -04:00
drawtype = "plantlike",
paramtype = "light",
visual_scale = 0.5,
2019-03-23 20:05:56 -04:00
wield_scale = {x = 0.75, y = 0.75, z = 1.5},
2018-11-03 11:26:15 -04:00
collision_box = nodecore.fixedbox(-3/16, -0.5, -3/16, 3/16, 0, 3/16),
selection_box = nodecore.fixedbox(-3/16, -0.5, -3/16, 3/16, 0, 3/16),
inventory_image = "[combine:24x24:4,4=" .. modname .. "_eggcorn.png",
2018-11-03 11:26:15 -04:00
tiles = { modname .. "_eggcorn.png" },
groups = {
snappy = 1,
flammable = 3,
attached_node = 1,
},
node_placement_prediction = "",
place_as_item = true,
2019-03-25 00:15:05 -04:00
sounds = nodecore.sounds("nc_tree_corny"),
stack_rightclick = function(pos, node, whom, stack)
if nodecore.stack_get(pos):get_count() ~= 1 then return end
if stack:get_name() ~= ldname then return end
minetest.set_node(pos, {name = epname})
nodecore.node_sound(pos, "place")
if nodecore.player_stat_add then
nodecore.player_stat_add(1, whom, "craft", "eggcorn planting")
end
minetest.log((whom and whom:get_player_name() or "unknown")
.. " planted an eggcorn at " .. minetest.pos_to_string(pos))
stack:set_count(stack:get_count() - 1)
return stack
end
2018-11-03 11:26:15 -04:00
})
nodecore.register_limited_abm({
interval = 1,
chance = 1,
nodenames = {modname .. ":eggcorn"},
action = function(pos)
minetest.remove_node(pos)
return nodecore.place_stack(pos, modname .. ":eggcorn")
end
})
2018-11-03 11:26:15 -04:00
nodecore.register_leaf_drops(function(pos, node, list)
list[#list + 1] = {
name = "air",
item = modname .. ":eggcorn",
prob = 0.05 * (node.param2 + 1)}
2018-11-03 11:26:15 -04:00
end)
2019-03-06 21:52:53 -05:00
minetest.register_node(epname, nodecore.underride({
drop = ldname,
description = "Loose Dirt...?"
},
minetest.registered_items[ldname] or {}))
nodecore.register_limited_abm({
label = "EggCorn Growing",
nodenames = {epname},
interval = 10,
chance = 1,
action = function(pos, node)
local meta = minetest.get_meta(pos)
local d = 0
local w = 1
nodecore.scan_flood(pos, 3, function(p)
local nn = minetest.get_node(p).name
local def = minetest.registered_items[nn] or {}
if not def.groups then
return false
end
if def.groups.soil then
d = d + def.groups.soil
w = w + 0.2
elseif def.groups.water then
w = w + def.groups.water
return false
else
return false
end
end)
2019-02-01 21:39:46 -05:00
local g = (meta:get_float("growth") or 0)
+ math_sqrt(d * w) * math_random()
if g >= 5000 then
meta:from_table({})
local place = {x = pos.x - 2, y = pos.y, z = pos.z - 2}
return minetest.place_schematic(place, nodecore.tree_schematic,
"random", {}, false)
end
meta:set_float("growth", g)
end
})