diff options
| -rw-r--r-- | car.lua | 4 | ||||
| -rw-r--r-- | controller.lua | 14 | ||||
| -rw-r--r-- | dbdkiosk.lua | 3 | ||||
| -rw-r--r-- | decorations.lua | 36 | ||||
| -rw-r--r-- | dispatcher.lua | 10 | ||||
| -rw-r--r-- | drive_entity.lua | 6 | ||||
| -rw-r--r-- | drive_null.lua | 3 | ||||
| -rw-r--r-- | governor.lua | 5 |
8 files changed, 66 insertions, 15 deletions
@@ -296,6 +296,8 @@ core.register_node("celevator:car_top_box_off",{ description = S("Car-top Inspection Box, Off State (you hacker you!)"), drop = "", groups = { + cracky = 3, + oddly_breakable_by_hand = 1, not_in_creative_inventory = 1, }, paramtype = "light", @@ -316,6 +318,8 @@ core.register_node("celevator:car_top_box_on",{ description = S("Car-top Inspection Box, On State (you hacker you!)"), drop = "", groups = { + cracky = 3, + oddly_breakable_by_hand = 1, not_in_creative_inventory = 1, }, paramtype = "light", diff --git a/controller.lua b/controller.lua index a3bee98..d6c4ee9 100644 --- a/controller.lua +++ b/controller.lua @@ -137,7 +137,8 @@ end core.register_node("celevator:controller",{ description = S("Elevator Controller"), groups = { - cracky = 1, + cracky = 3, + oddly_breakable_by_hand = 1, }, paramtype = "light", paramtype2 = "facedir", @@ -214,7 +215,8 @@ core.register_node("celevator:controller",{ core.register_node("celevator:controller_open",{ description = S("Controller (door open - you hacker you!)"), groups = { - cracky = 1, + cracky = 3, + oddly_breakable_by_hand = 1, not_in_creative_inventory = 1, }, paramtype = "light", @@ -275,6 +277,8 @@ core.register_node("celevator:controller_open",{ core.register_node("celevator:controller_top",{ description = S("Controller (top section - you hacker you!)"), groups = { + cracky = 3, + oddly_breakable_by_hand = 1, not_in_creative_inventory = 1, }, drop = "", @@ -306,6 +310,8 @@ core.register_node("celevator:controller_top",{ core.register_node("celevator:controller_top_running",{ description = S("Controller (top section, car in motion - you hacker you!)"), groups = { + cracky = 3, + oddly_breakable_by_hand = 1, not_in_creative_inventory = 1, }, drop = "", @@ -337,6 +343,8 @@ core.register_node("celevator:controller_top_running",{ core.register_node("celevator:controller_top_open",{ description = S("Controller (top section, open - you hacker you!)"), groups = { + cracky = 3, + oddly_breakable_by_hand = 1, not_in_creative_inventory = 1, }, drop = "", @@ -373,6 +381,8 @@ core.register_node("celevator:controller_top_open",{ core.register_node("celevator:controller_top_open_running",{ description = S("Controller (top section, open, car in motion - you hacker you!)"), groups = { + cracky = 3, + oddly_breakable_by_hand = 1, not_in_creative_inventory = 1, }, drop = "", diff --git a/dbdkiosk.lua b/dbdkiosk.lua index 4193cbf..1f55b3c 100644 --- a/dbdkiosk.lua +++ b/dbdkiosk.lua @@ -158,7 +158,8 @@ core.register_node("celevator:dbdkiosk",{ paramtype = "light", paramtype2 = "4dir", groups = { - cracky = 1, + cracky = 3, + oddly_breakable_by_hand = 1, }, node_box = { type = "fixed", diff --git a/decorations.lua b/decorations.lua index 6070d8d..2822e0d 100644 --- a/decorations.lua +++ b/decorations.lua @@ -3,7 +3,8 @@ local S = core.get_translator("celevator") core.register_node("celevator:buffer_rubber",{ description = S("Elevator Elastomeric Buffer"), groups = { - choppy = 1, + cracky = 3, + oddly_breakable_by_hand = 1, bouncy = 60, }, paramtype = "light", @@ -44,7 +45,8 @@ core.register_node("celevator:buffer_rubber",{ core.register_node("celevator:buffer_oil",{ description = S("Elevator Oil-Filled Buffer"), groups = { - choppy = 1, + cracky = 3, + oddly_breakable_by_hand = 1, }, paramtype = "light", tiles = { @@ -101,7 +103,8 @@ core.register_node("celevator:buffer_oil",{ core.register_node("celevator:buffer_oil_top",{ description = S("Elevator Oil-Filled Buffer (top half - you hacker you!)"), groups = { - choppy = 1, + cracky = 3, + oddly_breakable_by_hand = 1, not_in_creative_inventory = 1, }, drop = "", @@ -121,7 +124,8 @@ core.register_node("celevator:buffer_oil_top",{ core.register_node("celevator:guide_rail",{ description = S("Elevator Guide Rail"), groups = { - choppy = 1, + cracky = 3, + oddly_breakable_by_hand = 1, }, paramtype = "light", paramtype2 = "4dir", @@ -145,7 +149,8 @@ core.register_node("celevator:guide_rail",{ core.register_node("celevator:guide_rail_bracket",{ description = S("Elevator Guide Rail with Bracket"), groups = { - choppy = 1, + cracky = 3, + oddly_breakable_by_hand = 1, }, paramtype = "light", paramtype2 = "4dir", @@ -174,7 +179,8 @@ core.register_node("celevator:guide_rail_bracket",{ core.register_node("celevator:tape",{ description = S("Elevator Positioning System Tape"), groups = { - choppy = 1, + cracky = 3, + oddly_breakable_by_hand = 1, }, paramtype = "light", paramtype2 = "4dir", @@ -199,7 +205,8 @@ core.register_node("celevator:tape",{ core.register_node("celevator:tape_magnets",{ description = S("Elevator Positioning System Tape with Magnets"), groups = { - choppy = 1, + cracky = 3, + oddly_breakable_by_hand = 1, }, paramtype = "light", paramtype2 = "4dir", @@ -224,7 +231,8 @@ core.register_node("celevator:tape_magnets",{ core.register_node("celevator:tape_bracket",{ description = S("Elevator Positioning System Tape with Bracket"), groups = { - choppy = 1, + cracky = 3, + oddly_breakable_by_hand = 1, }, paramtype = "light", paramtype2 = "4dir", @@ -317,6 +325,8 @@ core.register_node("celevator:tapehead",{ description = S("Elevator Positioning System Tapehead (off, you hacker you!)"), groups = { not_in_creative_inventory = 1, + cracky = 3, + oddly_breakable_by_hand = 1, }, drop = "", paramtype = "light", @@ -344,6 +354,8 @@ core.register_node("celevator:tapehead_ulm",{ description = S("Elevator Positioning System Tapehead (ULM on, you hacker you!)"), groups = { not_in_creative_inventory = 1, + cracky = 3, + oddly_breakable_by_hand = 1, }, drop = "", paramtype = "light", @@ -371,6 +383,8 @@ core.register_node("celevator:tapehead_ulm_dz",{ description = S("Elevator Positioning System Tapehead (ULM and DZ on, you hacker you!)"), groups = { not_in_creative_inventory = 1, + cracky = 3, + oddly_breakable_by_hand = 1, }, drop = "", paramtype = "light", @@ -398,6 +412,8 @@ core.register_node("celevator:tapehead_ulm_dlm_dz",{ description = S("Elevator Positioning System Tapehead (ULM, DLM, and DZ on, you hacker you!)"), groups = { not_in_creative_inventory = 1, + cracky = 3, + oddly_breakable_by_hand = 1, }, drop = "", paramtype = "light", @@ -425,6 +441,8 @@ core.register_node("celevator:tapehead_dlm_dz",{ description = S("Elevator Positioning System Tapehead (DLM and DZ on, you hacker you!)"), groups = { not_in_creative_inventory = 1, + cracky = 3, + oddly_breakable_by_hand = 1, }, drop = "", paramtype = "light", @@ -452,6 +470,8 @@ core.register_node("celevator:tapehead_dlm",{ description = S("Elevator Positioning System Tapehead (DLM on, you hacker you!)"), groups = { not_in_creative_inventory = 1, + cracky = 3, + oddly_breakable_by_hand = 1, }, drop = "", paramtype = "light", diff --git a/dispatcher.lua b/dispatcher.lua index 80bd6ef..cd091bb 100644 --- a/dispatcher.lua +++ b/dispatcher.lua @@ -110,7 +110,8 @@ end core.register_node("celevator:dispatcher",{ description = S("Elevator Dispatcher"), groups = { - cracky = 1, + cracky = 3, + oddly_breakable_by_hand = 1, }, paramtype = "light", paramtype2 = "facedir", @@ -183,7 +184,8 @@ core.register_node("celevator:dispatcher",{ core.register_node("celevator:dispatcher_open",{ description = S("Dispatcher (door open - you hacker you!)"), groups = { - cracky = 1, + cracky = 3, + oddly_breakable_by_hand = 1, not_in_creative_inventory = 1, }, paramtype = "light", @@ -243,6 +245,8 @@ core.register_node("celevator:dispatcher_open",{ core.register_node("celevator:dispatcher_top",{ description = S("Dispatcher (top section - you hacker you!)"), groups = { + cracky = 3, + oddly_breakable_by_hand = 1, not_in_creative_inventory = 1, }, drop = "", @@ -274,6 +278,8 @@ core.register_node("celevator:dispatcher_top",{ core.register_node("celevator:dispatcher_top_open",{ description = S("Dispatcher (top section, open - you hacker you!)"), groups = { + cracky = 3, + oddly_breakable_by_hand = 1, not_in_creative_inventory = 1, }, drop = "", diff --git a/drive_entity.lua b/drive_entity.lua index 71cba85..edc47c6 100644 --- a/drive_entity.lua +++ b/drive_entity.lua @@ -1057,6 +1057,8 @@ core.register_node("celevator:machine",{ core.register_node("celevator:motor",{ description = S("Hoist Motor (you hacker you!)"), groups = { + cracky = 3, + oddly_breakable_by_hand = 1, not_in_creative_inventory = 1, }, drop = "", @@ -1091,6 +1093,8 @@ core.register_node("celevator:motor",{ core.register_node("celevator:sheave",{ description = S("Sheave (you hacker you!)"), groups = { + cracky = 3, + oddly_breakable_by_hand = 1, not_in_creative_inventory = 1, }, drop = "", @@ -1124,6 +1128,8 @@ core.register_node("celevator:sheave",{ core.register_node("celevator:sheave_centered",{ description = S("Centered Sheave (you hacker you!)"), groups = { + cracky = 3, + oddly_breakable_by_hand = 1, not_in_creative_inventory = 1, }, drop = "", diff --git a/drive_null.lua b/drive_null.lua index e2eb1f4..5fd2d5d 100644 --- a/drive_null.lua +++ b/drive_null.lua @@ -61,7 +61,8 @@ end core.register_node("celevator:drive_null",{ description = celevator.drives.null.name, groups = { - cracky = 1, + cracky = 3, + oddly_breakable_by_hand = 1, not_in_creative_inventory = 1, }, tiles = { diff --git a/governor.lua b/governor.lua index 15700fd..d4e9da6 100644 --- a/governor.lua +++ b/governor.lua @@ -18,7 +18,8 @@ end core.register_node("celevator:governor",{ description = S("Elevator Governor"), groups = { - cracky = 1, + cracky = 3, + oddly_breakable_by_hand = 1, }, paramtype = "light", paramtype2 = "4dir", @@ -67,6 +68,8 @@ core.register_node("celevator:governor",{ core.register_node("celevator:governor_sheave",{ description = S("Governor Sheave (you hacker you!)"), groups = { + cracky = 3, + oddly_breakable_by_hand = 1, not_in_creative_inventory = 1, }, drop = "", |
