diff options
author | FaceDeer <derksenmobile@gmail.com> | 2017-09-11 23:47:25 -0600 |
---|---|---|
committer | FaceDeer <derksenmobile@gmail.com> | 2017-09-11 23:47:25 -0600 |
commit | 15b327c842ebe4189ceae16a419dce974c8b2451 (patch) | |
tree | da1dbcf8528f963c8bc9d93aab2af952fbb0199e /node_misc.lua | |
parent | 3441a0d1da37087287fdaade7c8930480abe65e9 (diff) |
move node defs and recipes into a subfolder
Diffstat (limited to 'node_misc.lua')
-rw-r--r-- | node_misc.lua | 141 |
1 files changed, 0 insertions, 141 deletions
diff --git a/node_misc.lua b/node_misc.lua deleted file mode 100644 index e847045..0000000 --- a/node_misc.lua +++ /dev/null @@ -1,141 +0,0 @@ --- internationalization boilerplate -local MP = minetest.get_modpath(minetest.get_current_modname()) -local S, NS = dofile(MP.."/intllib.lua") - --- 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 = S("Digtron Structure"), - _doc_items_longdesc = digtron.doc.structure_longdesc, - _doc_items_usagehelp = digtron.doc.structure_usagehelp, - groups = {cracky = 3, oddly_breakable_by_hand=3, digtron = 1}, - drop = "digtron:structure", - tiles = {"digtron_plate.png"}, - drawtype = "nodebox", - sounds = digtron.metal_sounds, - climbable = true, - walkable = false, - paramtype = "light", - is_ground_content = false, - node_box = { - type = "fixed", - fixed = { - {0.3125, 0.3125, -0.5, 0.5, 0.5, 0.5}, - {0.3125, -0.5, -0.5, 0.5, -0.3125, 0.5}, - {-0.5, 0.3125, -0.5, -0.3125, 0.5, 0.5}, - {-0.5, -0.5, -0.5, -0.3125, -0.3125, 0.5}, - {-0.3125, 0.3125, 0.3125, 0.3125, 0.5, 0.5}, - {-0.3125, -0.5, 0.3125, 0.3125, -0.3125, 0.5}, - {-0.5, -0.3125, 0.3125, -0.3125, 0.3125, 0.5}, - {0.3125, -0.3125, 0.3125, 0.5, 0.3125, 0.5}, - {-0.5, -0.3125, -0.5, -0.3125, 0.3125, -0.3125}, - {0.3125, -0.3125, -0.5, 0.5, 0.3125, -0.3125}, - {-0.3125, 0.3125, -0.5, 0.3125, 0.5, -0.3125}, - {-0.3125, -0.5, -0.5, 0.3125, -0.3125, -0.3125}, - } - }, -}) - --- 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 = S("Digtron Light"), - _doc_items_longdesc = digtron.doc.light_longdesc, - _doc_items_usagehelp = digtron.doc.light_usagehelp, - groups = {cracky = 3, oddly_breakable_by_hand=3, digtron = 1}, - drop = "digtron:light", - tiles = {"digtron_plate.png^digtron_light.png"}, - drawtype = "nodebox", - paramtype = "light", - is_ground_content = false, - light_source = 10, - sounds = default.node_sound_glass_defaults(), - paramtype2 = "wallmounted", - node_box = { - type = "wallmounted", - wall_top = {-0.25, 0.3125, -0.25, 0.25, 0.5, 0.25}, - wall_bottom = {-0.25, -0.3125, -0.25, 0.25, -0.5, 0.25}, - wall_side = {-0.5, -0.25, -0.25, -0.1875, 0.25, 0.25}, - }, -}) - --- A simple structural panel -minetest.register_node("digtron:panel", { - description = S("Digtron Panel"), - _doc_items_longdesc = digtron.doc.panel_longdesc, - _doc_items_usagehelp = digtron.doc.panel_usagehelp, - 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 = S("Digtron Edge Panel"), - _doc_items_longdesc = digtron.doc.edge_panel_longdesc, - _doc_items_usagehelp = digtron.doc.edge_panel_usagehelp, - 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 = S("Digtron Corner Panel"), - _doc_items_longdesc = digtron.doc.corner_panel_longdesc, - _doc_items_usagehelp = digtron.doc.corner_panel_usagehelp, - 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 |