118 lines
2.5 KiB
Lua
Raw Normal View History

-- LUALOCALS < ---------------------------------------------------------
local minetest, nodecore
= minetest, nodecore
-- LUALOCALS > ---------------------------------------------------------
2018-11-02 00:08:42 -04:00
local modname = minetest.get_current_modname()
minetest.register_node(modname .. ":root", {
2019-03-14 21:58:30 -04:00
description = "Stump",
2018-11-02 00:08:42 -04:00
tiles = {
modname .. "_tree_top.png",
"nc_terrain_dirt.png",
"nc_terrain_dirt.png^" .. modname .. "_roots.png"
},
silktouch = false,
groups = {
flammable = 50,
fire_fuel = 4,
choppy = 4,
scaling_time = 80
},
drop = "nc_tree:stick 8",
sounds = nodecore.sounds("nc_tree_woody")
2018-11-02 00:08:42 -04:00
})
minetest.register_node(modname .. ":log", {
description = "Log",
tiles = {
modname .. "_tree_top.png",
modname .. "_tree_top.png",
modname .. "_tree_side.png"
},
groups = {
choppy = 2,
flammable = 8,
fire_fuel = 6,
log = 1,
scaling_time = 75
},
sounds = nodecore.sounds("nc_tree_woody"),
paramtype2 = "facedir",
on_place = minetest.rotate_node
})
2018-11-02 00:08:42 -04:00
minetest.register_node(modname .. ":tree", {
description = "Tree Trunk",
2018-11-02 00:08:42 -04:00
tiles = {
modname .. "_tree_top.png",
modname .. "_tree_top.png",
modname .. "_tree_side.png"
2019-01-04 20:36:46 -05:00
},
groups = {
choppy = 2,
flammable = 8,
fire_fuel = 6,
log = 1,
falling_node = 1,
scaling_time = 80
},
2020-01-05 15:13:01 -05:00
crush_damage = 1,
sounds = nodecore.sounds("nc_tree_woody"),
drop = modname .. ":log"
2018-11-02 00:08:42 -04:00
})
nodecore.register_aism({
label = "tree trunk convert",
interval = 1,
chance = 1,
itemnames = {modname .. ":tree"},
action = function(stack)
stack:set_name(modname .. ":log")
return stack
end
})
2018-11-02 00:50:34 -04:00
minetest.register_node(modname .. ":leaves", {
description = "Leaves",
drawtype = "allfaces_optional",
paramtype = "light",
tiles = {modname .. "_leaves.png"},
waving = 1,
air_pass = true,
groups = {
canopy = 1,
snappy = 1,
flammable = 3,
fire_fuel = 2,
green = 3,
scaling_time = 90,
leaf_decay = 1
},
alternate_loose = {
tiles = {modname .. "_leaves_dry.png"},
walkable = false,
groups = {
canopy = 0,
leafy = 1,
flammable = 1,
falling_repose = 1,
green = 1,
stack_as_node = 1,
leaf_decay = 0
}
},
alternate_solid = {
2019-01-05 23:11:38 -05:00
after_dig_node = function(...)
return nodecore.leaf_decay(...)
end,
node_dig_prediction = "air"
},
no_repack = true,
2019-03-16 11:23:37 -04:00
sounds = nodecore.sounds("nc_terrain_swishy")
})
nodecore.register_leaf_drops(function(_, _, list)
2019-02-01 22:17:06 -05:00
list[#list + 1] = {name = modname .. ":leaves_loose", prob = 0.5}
list[#list + 1] = {name = "air"}
2018-11-03 11:26:15 -04:00
end)