From da66780a569712c23ae4f2996cfb4608a9f9d69d Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Fri, 1 Apr 2016 20:02:19 -0400 Subject: copy all standard Dreambuilder mods in from the old subgame (exactly as last supplied there, updates to these mods will follow later) --- streets/infrastructure/advanced_curve_chevron.lua | 85 +++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 streets/infrastructure/advanced_curve_chevron.lua (limited to 'streets/infrastructure/advanced_curve_chevron.lua') diff --git a/streets/infrastructure/advanced_curve_chevron.lua b/streets/infrastructure/advanced_curve_chevron.lua new file mode 100644 index 0000000..7d3b65d --- /dev/null +++ b/streets/infrastructure/advanced_curve_chevron.lua @@ -0,0 +1,85 @@ +-- Curve chevron + minetest.register_node("infrastructure:curve_chevron_dark", { + description = "Flashing curve chevron", + tiles = { + "infrastructure_traffic_lights_side.png", + "infrastructure_traffic_lights_side.png", + "infrastructure_traffic_lights_side.png", + "infrastructure_traffic_lights_side.png", + "infrastructure_curve_chevron_left_dark.png", + "infrastructure_curve_chevron_right_dark.png" + }, + drawtype = "nodebox", + paramtype = "light", + paramtype2 = "facedir", + groups = {cracky = 3}, + node_box = { + type = "fixed", + fixed = { + {-1/2, -1/2, -1/8, 1/2, 1/2, -1/16}, + {-1/2, -1/2, 1/16, 1/2, 1/2, 1/8}, + {-3/8, 1/4, -1/16, -1/4, 3/8, 1/16}, + {1/4, 1/4, -1/16, 3/8, 3/8, 1/16}, + {-3/8, -3/8, -1/16, -1/4, -1/4, 1/16}, + {1/4, -3/8, -1/16, 3/8, -1/4, 1/16} + } + }, + selection_box = { + type = "fixed", + fixed = {-1/2, -1/2, -1/8, 1/2, 1/2, 1/8} + }, + + on_punch = function(pos, node) + minetest.swap_node(pos, {name = "infrastructure:curve_chevron_bright", param2 = node.param2}) + end, + + mesecons = {effector = { + action_on = function (pos, node) + minetest.swap_node(pos, {name = "infrastructure:curve_chevron_bright", param2 = node.param2}) + end, + }} + }) + + minetest.register_node("infrastructure:curve_chevron_bright", { + tiles = { + "infrastructure_traffic_lights_side.png", + "infrastructure_traffic_lights_side.png", + "infrastructure_traffic_lights_side.png", + "infrastructure_traffic_lights_side.png", + "infrastructure_curve_chevron_left_bright.png", + "infrastructure_curve_chevron_right_bright.png" + }, + drawtype = "nodebox", + paramtype = "light", + paramtype2 = "facedir", + groups = {cracky = 3, not_in_creative_inventory = 1}, + light_source = CURVE_CHEVRON_LIGHT_RANGE, + drop = "infrastructure:curve_chevron_dark", + node_box = { + type = "fixed", + fixed = { + {-1/2, -1/2, -1/8, 1/2, 1/2, -1/16}, + {-1/2, -1/2, 1/16, 1/2, 1/2, 1/8}, + {-3/8, 1/4, -1/16, -1/4, 3/8, 1/16}, + {1/4, 1/4, -1/16, 3/8, 3/8, 1/16}, + {-3/8, -3/8, -1/16, -1/4, -1/4, 1/16}, + {1/4, -3/8, -1/16, 3/8, -1/4, 1/16} + } + }, + selection_box = { + type = "fixed", + fixed = {-1/2, -1/2, -1/8, 1/2, 1/2, 1/8} + }, + + on_punch = function(pos, node) + minetest.swap_node(pos, {name = "infrastructure:curve_chevron_dark", param2 = node.param2}) + end, + + mesecons = {effector = { + action_off = function (pos, node) + minetest.swap_node(pos, {name = "infrastructure:curve_chevron_dark", param2 = node.param2}) + end + }} + }) + + minetest.register_alias("infrastructure:curve_chevron", "infrastructure:curve_chevron_dark") -- cgit v1.2.3