diff options
Diffstat (limited to 'node_misc.lua')
-rw-r--r-- | node_misc.lua | 81 |
1 files changed, 79 insertions, 2 deletions
diff --git a/node_misc.lua b/node_misc.lua index b8153cb..2463d68 100644 --- a/node_misc.lua +++ b/node_misc.lua @@ -1,6 +1,6 @@ -- A do-nothing "structural" node, to ensure all digtron nodes that are supposed to be connected to each other can be connected to each other. minetest.register_node("digtron:structure", { - description = "Digger Structure", + description = "Digtron Structure", groups = {cracky = 3, oddly_breakable_by_hand=3, digtron = 1}, drop = "digtron:structure", tiles = {"digtron_plate.png"}, @@ -31,7 +31,7 @@ minetest.register_node("digtron:structure", { -- A modest light source that will move with the digtron, handy for working in a tunnel you aren't bothering to install permanent lights in. minetest.register_node("digtron:light", { - description = "Digger Light", + description = "Digtron Light", groups = {cracky = 3, oddly_breakable_by_hand=3, digtron = 1}, drop = "digtron:light", tiles = {"digtron_light.png"}, @@ -48,3 +48,80 @@ minetest.register_node("digtron:light", { wall_side = {-0.5, -0.25, -0.25, -0.1875, 0.25, 0.25}, }, }) + +-- A simple structural panel +minetest.register_node("digtron:panel", { + description = "Digtron Panel", + groups = {cracky = 3, oddly_breakable_by_hand=3, digtron = 1}, + drop = "digtron:panel", + tiles = {"digtron_plate.png"}, + drawtype = "nodebox", + paramtype = "light", + is_ground_content = false, + sounds = digtron.metal_sounds, + paramtype2 = "facedir", + node_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -0.375, 0.5}, + }, + collision_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5}, + }, +}) + +-- A simple structural panel +minetest.register_node("digtron:edge_panel", { + description = "Digtron Edge Panel", + groups = {cracky = 3, oddly_breakable_by_hand=3, digtron = 1}, + drop = "digtron:edge_panel", + tiles = {"digtron_plate.png"}, + drawtype = "nodebox", + paramtype = "light", + is_ground_content = false, + sounds = digtron.metal_sounds, + paramtype2 = "facedir", + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, 0.375, 0.5, 0.5, 0.5}, + {-0.5, -0.5, -0.5, 0.5, -0.375, 0.375} + }, + }, + collision_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, 0.4375, 0.5, 0.5, 0.5}, + {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.4375} + }, + }, + +}) + +minetest.register_node("digtron:corner_panel", { + description = "Digtron Corner Panel", + groups = {cracky = 3, oddly_breakable_by_hand=3, digtron = 1}, + drop = "digtron:corner_panel", + tiles = {"digtron_plate.png"}, + drawtype = "nodebox", + paramtype = "light", + is_ground_content = false, + sounds = digtron.metal_sounds, + paramtype2 = "facedir", + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, 0.375, 0.5, 0.5, 0.5}, + {-0.5, -0.5, -0.5, 0.5, -0.375, 0.375}, + {-0.5, -0.375, -0.5, -0.375, 0.5, 0.375}, + }, + }, + collision_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, 0.4375, 0.5, 0.5, 0.5}, + {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.4375}, + {-0.5, -0.4375, -0.5, -0.4375, 0.5, 0.4375}, + }, + }, +})
\ No newline at end of file |