2023-05-08 20:18:00 -04:00

50 lines
1.1 KiB
Lua

-- LUALOCALS < ---------------------------------------------------------
local minetest, nodecore
= minetest, nodecore
-- LUALOCALS > ---------------------------------------------------------
local modname = minetest.get_current_modname()
minetest.register_node(modname .. ":wicker", {
description = "Wicker",
drawtype = "glasslike",
tiles = {modname .. "_wicker.png"},
groups = {
choppy = 1,
flammable = 2,
fire_fuel = 5,
peat_grindable_node = 1
},
paramtype = "light",
sounds = nodecore.sounds("nc_tree_sticky")
})
nodecore.register_craft({
label = "pack wicker",
action = "pummel",
toolgroups = {thumpy = 1},
nodes = {
{
match = {name = "nc_flora:rush_dry", count = 8},
replace = modname .. ":wicker"
}
},
})
nodecore.register_craft({
label = "unpack wicker",
action = "pummel",
wield = {groups = {rakey = true}},
duration = 2,
consumewield = 1,
nodes = {
{
match = modname .. ":wicker",
replace = "air"
}
},
items = {
{name = "nc_flora:rush_dry 2", count = 4, scatter = 5}
}
})