85 lines
2.7 KiB
Lua
Raw Normal View History

2019-02-20 00:40:55 -05:00
-- LUALOCALS < ---------------------------------------------------------
local minetest, nodecore
= minetest, nodecore
-- LUALOCALS > ---------------------------------------------------------
local modname = minetest.get_current_modname()
minetest.register_node(modname .. ":shelf", {
description = "Wooden Shelf",
drawtype = "nodebox",
node_box = nodecore.fixedbox(
{-0.5, -0.5, -0.5, 0.5, -7/16, 0.5},
{-0.5, 7/16, -0.5, 0.5, 0.5, 0.5},
{-0.5, -7/16, -0.5, -7/16, 7/16, -7/16},
{-0.5, -7/16, 7/16, -7/16, 7/16, 0.5},
{7/16, -7/16, -0.5, 0.5, 7/16, -7/16},
{7/16, -7/16, 7/16, 0.5, 7/16, 0.5}
),
collisonbox = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
selection_box = nodecore.fixedbox(
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}
),
2019-02-20 00:40:55 -05:00
tiles = { "nc_tree_tree_side.png^(" .. modname ..
"_plank.png^[mask:" .. modname .. "_shelf.png)" },
groups = {
choppy = 1,
visinv = 1,
flammable = 2,
fire_fuel = 3,
eject_inv_on_burn = 1
2019-02-20 00:40:55 -05:00
},
paramtype = "light",
on_construct = function(pos)
local inv = minetest.get_meta(pos):get_inventory()
inv:set_size("solo", 1)
nodecore.visinv_update_ents(pos)
end,
on_rightclick = function(pos, node, clicker, stack, pointed_thing)
if pointed_thing.above.y ~= pointed_thing.under.y then return end
2019-02-20 00:40:55 -05:00
if not stack or stack:is_empty() then return end
local def = minetest.registered_items[stack:get_name()]
if (not def) or (def.groups and def.groups.visinv) then
return minetest.item_place_node(stack, clicker, pointed_thing)
end
2019-02-23 10:21:27 -05:00
return nodecore.stack_add(pos, stack)
2019-02-20 00:40:55 -05:00
end,
on_punch = function(pos, node, puncher, pointed_thing)
if pointed_thing.above.y ~= pointed_thing.under.y then return end
2019-02-23 10:21:27 -05:00
return nodecore.stack_giveto(pos, puncher)
2019-02-20 00:40:55 -05:00
end,
on_dig = function(pos, node, digger, ...)
2019-02-23 10:21:27 -05:00
if nodecore.stack_giveto(pos, digger) then
2019-02-20 00:40:55 -05:00
return minetest.node_dig(pos, node, digger, ...)
end
end
})
nodecore.register_craft({
2019-02-21 14:59:41 -05:00
label = "assemble wood shelf",
2019-02-20 00:40:55 -05:00
nodes = {
{match = modname .. ":plank", replace = "air"},
{x = -1, z = -1, match = modname .. ":frame", replace = "air"},
{x = 1, z = -1, match = modname .. ":frame", replace = "air"},
{x = -1, z = 1, match = modname .. ":frame", replace = "air"},
{x = 1, z = 1, match = modname .. ":frame", replace = "air"},
},
items = {
modname .. ":shelf 4"
2019-02-20 00:40:55 -05:00
}
})
nodecore.register_craft({
2019-02-21 14:59:41 -05:00
label = "assemble wood shelf",
nodes = {
{match = modname .. ":plank", replace = "air"},
{x = 0, z = -1, match = modname .. ":frame", replace = "air"},
{x = 0, z = 1, match = modname .. ":frame", replace = "air"},
{x = -1, z = 0, match = modname .. ":frame", replace = "air"},
{x = 1, z = 0, match = modname .. ":frame", replace = "air"},
},
items = {
modname .. ":shelf 4"
}
})