mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2024-11-05 18:00:32 +01:00
4b4e10ff1d
Keeps the old behavior of sneak == force wall (rather than invert). Add protection/ownership checking. Can be phased out later after protection mods start taking advantage of the engine's built-in ownershi-checking functions. Got rid of the /st command, since it didn't work anyway. Minor re-arrangement of init.lua to put the mod's title block at the top where it belongs :-)
172 lines
4.6 KiB
Lua
172 lines
4.6 KiB
Lua
-- Load translation library if intllib is installed
|
|
|
|
local S
|
|
if (minetest.get_modpath("intllib")) then
|
|
dofile(minetest.get_modpath("intllib").."/intllib.lua")
|
|
S = intllib.Getter(minetest.get_current_modname())
|
|
else
|
|
S = function ( s ) return s end
|
|
end
|
|
|
|
-- Node will be called <modname>micro_<subname>
|
|
|
|
function register_micro(modname, subname, recipeitem, groups, images, description, drop, light)
|
|
|
|
minetest.register_node(":"..modname .. ":micro_" .. subname, {
|
|
description = S("%s Microblock"):format(S(description)),
|
|
drawtype = "nodebox",
|
|
tiles = images,
|
|
light_source = light,
|
|
drop = modname .. ":micro_" .. drop,
|
|
paramtype = "light",
|
|
paramtype2 = "facedir",
|
|
sunlight_propagates = true,
|
|
groups = groups,
|
|
node_box = {
|
|
type = "fixed",
|
|
fixed = {-0.5, -0.5, 0, 0, 0, 0.5},
|
|
},
|
|
selection_box = {
|
|
type = "fixed",
|
|
fixed = {-0.5, -0.5, 0, 0, 0, 0.5},
|
|
},
|
|
sounds = default.node_sound_stone_defaults(),
|
|
on_place = stairsplus_rotate_and_place
|
|
})
|
|
|
|
minetest.register_node(":"..modname .. ":micro_" .. subname .. "_1", {
|
|
description = S("%s Microblock"):format(S(description)),
|
|
drawtype = "nodebox",
|
|
tiles = images,
|
|
light_source = light,
|
|
drop = modname .. ":micro_" .. drop .. "_1",
|
|
paramtype = "light",
|
|
paramtype2 = "facedir",
|
|
sunlight_propagates = true,
|
|
groups = groups,
|
|
node_box = {
|
|
type = "fixed",
|
|
fixed = {-0.5, -0.5, 0, 0, -0.4375, 0.5},
|
|
},
|
|
selection_box = {
|
|
type = "fixed",
|
|
fixed = {-0.5, -0.5, 0, 0, -0.4375, 0.5},
|
|
},
|
|
sounds = default.node_sound_stone_defaults(),
|
|
on_place = stairsplus_rotate_and_place
|
|
})
|
|
|
|
minetest.register_node(":"..modname .. ":micro_" .. subname .. "_2", {
|
|
description = S("%s Microblock"):format(S(description)),
|
|
drawtype = "nodebox",
|
|
tiles = images,
|
|
light_source = light,
|
|
drop = modname .. ":micro_" .. drop .. "_2",
|
|
paramtype = "light",
|
|
paramtype2 = "facedir",
|
|
sunlight_propagates = true,
|
|
groups = groups,
|
|
node_box = {
|
|
type = "fixed",
|
|
fixed = {-0.5, -0.5, 0, 0, -0.375, 0.5},
|
|
},
|
|
selection_box = {
|
|
type = "fixed",
|
|
fixed = {-0.5, -0.5, 0, 0, -0.375, 0.5},
|
|
},
|
|
sounds = default.node_sound_stone_defaults(),
|
|
on_place = stairsplus_rotate_and_place
|
|
})
|
|
|
|
minetest.register_node(":"..modname .. ":micro_" .. subname .. "_4", {
|
|
description = S("%s Microblock"):format(S(description)),
|
|
drawtype = "nodebox",
|
|
tiles = images,
|
|
light_source = light,
|
|
drop = modname .. ":micro_" .. drop .. "_4",
|
|
paramtype = "light",
|
|
paramtype2 = "facedir",
|
|
sunlight_propagates = true,
|
|
groups = groups,
|
|
node_box = {
|
|
type = "fixed",
|
|
fixed = {-0.5, -0.5, 0, 0, -0.25, 0.5},
|
|
},
|
|
selection_box = {
|
|
type = "fixed",
|
|
fixed = {-0.5, -0.5, 0, 0, -0.25, 0.5},
|
|
},
|
|
sounds = default.node_sound_stone_defaults(),
|
|
on_place = stairsplus_rotate_and_place
|
|
})
|
|
|
|
minetest.register_node(":"..modname .. ":micro_" .. subname .. "_12", {
|
|
description = S("%s Microblock"):format(S(description)),
|
|
drawtype = "nodebox",
|
|
tiles = images,
|
|
light_source = light,
|
|
drop = modname .. ":micro_" .. drop .. "_12",
|
|
paramtype = "light",
|
|
paramtype2 = "facedir",
|
|
sunlight_propagates = true,
|
|
groups = groups,
|
|
node_box = {
|
|
type = "fixed",
|
|
fixed = {-0.5, -0.5, 0, 0, 0.25, 0.5},
|
|
},
|
|
selection_box = {
|
|
type = "fixed",
|
|
fixed = {-0.5, -0.5, 0, 0, 0.25, 0.5},
|
|
},
|
|
sounds = default.node_sound_stone_defaults(),
|
|
on_place = stairsplus_rotate_and_place
|
|
})
|
|
|
|
minetest.register_node(":"..modname .. ":micro_" .. subname .. "_14", {
|
|
description = S("%s Microblock"):format(S(description)),
|
|
drawtype = "nodebox",
|
|
tiles = images,
|
|
light_source = light,
|
|
drop = modname .. ":micro_" .. drop .. "_14",
|
|
paramtype = "light",
|
|
paramtype2 = "facedir",
|
|
sunlight_propagates = true,
|
|
groups = groups,
|
|
node_box = {
|
|
type = "fixed",
|
|
fixed = {-0.5, -0.5, 0, 0, 0.375, 0.5},
|
|
},
|
|
selection_box = {
|
|
type = "fixed",
|
|
fixed = {-0.5, -0.5, 0, 0, 0.375, 0.5},
|
|
},
|
|
sounds = default.node_sound_stone_defaults(),
|
|
on_place = stairsplus_rotate_and_place
|
|
})
|
|
|
|
minetest.register_node(":"..modname .. ":micro_" .. subname .. "_15", {
|
|
description = S("%s Microblock"):format(S(description)),
|
|
drawtype = "nodebox",
|
|
tiles = images,
|
|
light_source = light,
|
|
drop = modname .. ":micro_" .. drop .. "_15",
|
|
paramtype = "light",
|
|
paramtype2 = "facedir",
|
|
sunlight_propagates = true,
|
|
groups = groups,
|
|
node_box = {
|
|
type = "fixed",
|
|
fixed = {-0.5, -0.5, 0, 0, 0.4375, 0.5},
|
|
},
|
|
selection_box = {
|
|
type = "fixed",
|
|
fixed = {-0.5, -0.5, 0, 0, 0.4375, 0.5},
|
|
},
|
|
sounds = default.node_sound_stone_defaults(),
|
|
on_place = stairsplus_rotate_and_place
|
|
})
|
|
|
|
minetest.register_alias(modname..":micro_"..subname.."_bottom", modname..":micro_"..subname)
|
|
end
|
|
|