mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-05 10:00:26 +01:00
121 lines
3.0 KiB
Lua
121 lines
3.0 KiB
Lua
|
local S -- Load translation library if intllib is installed:
|
||
|
if intllib then
|
||
|
S = intllib.Getter(minetest.get_current_modname())
|
||
|
else
|
||
|
S = function(s) return s end
|
||
|
end
|
||
|
|
||
|
-- Node will be called <modname>:slab_<subname>
|
||
|
|
||
|
function register_slab(modname, subname, recipeitem, groups, images, description, drop, light)
|
||
|
return stairsplus:register_slab(modname, subname, recipeitem, {
|
||
|
groups = groups,
|
||
|
tiles = images,
|
||
|
description = description,
|
||
|
drop = drop,
|
||
|
light_source = light,
|
||
|
sounds = default.node_sound_stone_defaults(),
|
||
|
})
|
||
|
end
|
||
|
|
||
|
function stairsplus:register_slab(modname, subname, recipeitem, fields)
|
||
|
local defs = {
|
||
|
[""] = {
|
||
|
node_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5},
|
||
|
},
|
||
|
},
|
||
|
["_quarter"] = {
|
||
|
node_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-0.5, -0.5, -0.5, 0.5, -0.25, 0.5},
|
||
|
},
|
||
|
},
|
||
|
["_three_quarter"] = {
|
||
|
node_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-0.5, -0.5, -0.5, 0.5, 0.25, 0.5},
|
||
|
},
|
||
|
},
|
||
|
["_1"] = {
|
||
|
node_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
|
||
|
},
|
||
|
},
|
||
|
["_2"] = {
|
||
|
node_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-0.5, -0.5, -0.5, 0.5, -0.375, 0.5},
|
||
|
},
|
||
|
},
|
||
|
["_14"] = {
|
||
|
node_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-0.5, -0.5, -0.5, 0.5, 0.375, 0.5},
|
||
|
},
|
||
|
},
|
||
|
["_15"] = {
|
||
|
node_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-0.5, -0.5, -0.5, 0.5, 0.4375, 0.5},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
local desc = S("%s Slab"):format(fields.description)
|
||
|
for alternate, def in pairs(defs) do
|
||
|
def.drawtype = "nodebox"
|
||
|
def.paramtype = "light"
|
||
|
def.paramtype2 = "facedir"
|
||
|
def.on_place = minetest.rotate_node
|
||
|
for k, v in pairs(fields) do
|
||
|
def[k] = v
|
||
|
end
|
||
|
def.description = desc
|
||
|
if fields.drop then
|
||
|
def.drop = modname.. ":slab_" ..fields.drop..alternate
|
||
|
end
|
||
|
minetest.register_node(":" ..modname.. ":slab_" ..subname..alternate, def)
|
||
|
end
|
||
|
minetest.register_alias("stairs:slab_" ..subname, modname.. ":slab_" ..subname)
|
||
|
|
||
|
-- Some saw-less recipes:
|
||
|
|
||
|
minetest.register_craft({
|
||
|
output = modname .. ":slab_" .. subname .. " 6",
|
||
|
recipe = {{recipeitem, recipeitem, recipeitem}},
|
||
|
})
|
||
|
|
||
|
minetest.register_craft({
|
||
|
type = "shapeless",
|
||
|
output = modname .. ":slab_" .. subname,
|
||
|
recipe = {modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname},
|
||
|
})
|
||
|
|
||
|
minetest.register_craft({
|
||
|
output = modname .. ":slab_" .. subname,
|
||
|
recipe = {{modname .. ":panel_" .. subname, modname .. ":panel_" .. subname}},
|
||
|
})
|
||
|
|
||
|
minetest.register_craft({
|
||
|
output = modname .. ":slab_" .. subname,
|
||
|
recipe = {
|
||
|
{modname .. ":panel_" .. subname},
|
||
|
{modname .. ":panel_" .. subname},
|
||
|
},
|
||
|
})
|
||
|
|
||
|
minetest.register_craft({
|
||
|
type = "shapeless",
|
||
|
output = recipeitem,
|
||
|
recipe = {modname .. ":slab_" .. subname, modname .. ":slab_" .. subname},
|
||
|
})
|
||
|
|
||
|
minetest.register_craft({
|
||
|
type = "shapeless",
|
||
|
output = modname .. ":slab_" .. subname .. " 3",
|
||
|
recipe = {modname .. ":stair_" .. subname, modname .. ":stair_" .. subname},
|
||
|
})
|
||
|
end
|