mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-21 20:27:42 +01:00
[MIRROR] Point Defense Turret Adjustments (#11291)
Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
co-authored by
Cameron Lennox
parent
0f4b35c869
commit
24e1dc8198
@@ -12,7 +12,7 @@
|
||||
/obj/structure/cable/green{
|
||||
icon_state = "0-4"
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/turf/simulated/floor/hull/airless,
|
||||
@@ -2317,7 +2317,7 @@
|
||||
/turf/simulated/floor/tiled/eris/dark/orangecorner,
|
||||
/area/space)
|
||||
"qo" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/techfloor{
|
||||
@@ -2545,7 +2545,7 @@
|
||||
/turf/simulated/floor/tiled/eris/dark/cyancorner,
|
||||
/area/space)
|
||||
"uo" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/techfloor{
|
||||
@@ -3016,7 +3016,7 @@
|
||||
/turf/space,
|
||||
/area/space)
|
||||
"AN" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/techfloor{
|
||||
@@ -4638,7 +4638,7 @@
|
||||
/turf/simulated/floor/tiled/eris/techmaint_panels,
|
||||
/area/space)
|
||||
"UU" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/techfloor{
|
||||
|
||||
@@ -1980,7 +1980,7 @@
|
||||
/obj/structure/cable/green{
|
||||
icon_state = "0-2"
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/techfloor{
|
||||
@@ -2540,7 +2540,7 @@
|
||||
/turf/simulated/floor/tiled/eris/steel,
|
||||
/area/space)
|
||||
"CB" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/structure/cable/green{
|
||||
@@ -3376,7 +3376,7 @@
|
||||
/turf/simulated/floor/hull/airless,
|
||||
/area/space)
|
||||
"RA" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/techfloor{
|
||||
@@ -3416,7 +3416,7 @@
|
||||
/turf/simulated/floor/tiled/eris/techmaint_panels,
|
||||
/area/space)
|
||||
"Sb" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/structure/cable/green{
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
// CHOMPStation Edits over this entire file.
|
||||
//
|
||||
// Control computer for point defense batteries.
|
||||
// Handles control UI, but also coordinates their fire to avoid overkill.
|
||||
@@ -13,9 +12,9 @@ GLOBAL_LIST_BOILERPLATE(pointdefense_turrets, /obj/machinery/pointdefense)
|
||||
description_info = "To connect the mainframe to turrets, use a multitool to set the ident tag to that of the turrets."
|
||||
icon = 'icons/obj/pointdefense.dmi'
|
||||
icon_state = "control"
|
||||
power_channel = EQUIP // CHOMPStation Edit Starts
|
||||
power_channel = EQUIP
|
||||
use_power = USE_POWER_ACTIVE
|
||||
active_power_usage = 5 KILOWATTS // CHOMPStation Edit Ends
|
||||
active_power_usage = 5 KILOWATTS
|
||||
density = TRUE
|
||||
anchored = TRUE
|
||||
circuit = /obj/item/circuitboard/pointdefense_control
|
||||
@@ -77,7 +76,7 @@ GLOBAL_LIST_BOILERPLATE(pointdefense_turrets, /obj/machinery/pointdefense)
|
||||
if(id_tag)
|
||||
var/list/connected_z_levels = GetConnectedZlevels(get_z(src))
|
||||
for(var/i = 1 to LAZYLEN(GLOB.pointdefense_turrets))
|
||||
var/obj/machinery/pointdefense/PD = GLOB.pointdefense_turrets[i] //CHOMPEDIT - Whatever this is, needs to be sent upstream. I stumbled upon this deconflicting and it was uncommented. Bad.
|
||||
var/obj/machinery/pointdefense/PD = GLOB.pointdefense_turrets[i]
|
||||
if(!(PD.id_tag == id_tag && (get_z(PD) in connected_z_levels)))
|
||||
continue
|
||||
var/list/turret = list()
|
||||
@@ -118,7 +117,6 @@ GLOBAL_LIST_BOILERPLATE(pointdefense_turrets, /obj/machinery/pointdefense)
|
||||
// The acutal point defense battery
|
||||
//
|
||||
|
||||
// CHOMPStation Edits Begin: PD Turrets won't use power now, only the PD Control Mainframe. These edits go to the end of the file.
|
||||
/obj/machinery/pointdefense
|
||||
name = "\improper point defense battery"
|
||||
icon = 'icons/obj/pointdefense.dmi'
|
||||
@@ -128,8 +126,6 @@ GLOBAL_LIST_BOILERPLATE(pointdefense_turrets, /obj/machinery/pointdefense)
|
||||
density = TRUE
|
||||
anchored = TRUE
|
||||
circuit = /obj/item/circuitboard/pointdefense
|
||||
//idle_power_usage = 0.1 KILOWATTS // CHOMPStation Edit
|
||||
//active_power_usage = 1 KILOWATTS // CHOMPStation Edit
|
||||
appearance_flags = PIXEL_SCALE
|
||||
var/active = TRUE
|
||||
var/charge_cooldown = 1 SECOND //time between it can fire at different targets
|
||||
@@ -175,7 +171,7 @@ GLOBAL_LIST_BOILERPLATE(pointdefense_turrets, /obj/machinery/pointdefense)
|
||||
if(W?.has_tool_quality(TOOL_MULTITOOL))
|
||||
var/new_ident = tgui_input_text(user, "Enter a new ident tag.", "[src]", id_tag, MAX_NAME_LEN)
|
||||
new_ident = sanitize(new_ident,MAX_NAME_LEN)
|
||||
if(new_ident && new_ident != id_tag && user.Adjacent(src) && CanInteract(user, GLOB.tgui_physical_state))
|
||||
if(new_ident && new_ident != id_tag && user.Adjacent(src))
|
||||
to_chat(user, span_notice("You register [src] with the [new_ident] network."))
|
||||
id_tag = new_ident
|
||||
return
|
||||
@@ -220,11 +216,11 @@ GLOBAL_LIST_BOILERPLATE(pointdefense_turrets, /obj/machinery/pointdefense)
|
||||
return
|
||||
//We throw a laser but it doesnt have to hit for meteor to explode
|
||||
var/obj/item/projectile/beam/coildefense/coil = new(get_turf(src))
|
||||
playsound(src, fire_sounds, 75, 1, 40, pressure_affected = FALSE, ignore_walls = TRUE) // CHOMPEdit: Pew
|
||||
playsound(src, fire_sounds, 75, 1, 40, pressure_affected = FALSE, ignore_walls = TRUE)
|
||||
use_power_oneoff(idle_power_usage * 10)
|
||||
coil.launch_projectile(target = M.loc, user = src) // CHOMPEdit: Changing "beam" var to "coil" for the new coilgun type point defense turrets (to match the coilgun sprite and sfx names)
|
||||
coil.launch_projectile(target = M.loc, user = src)
|
||||
spawn(10)
|
||||
playsound(src, fire_sounds, 75, 1, 40, pressure_affected = FALSE, ignore_walls = TRUE) // CHOMPEdit: Pew
|
||||
playsound(src, fire_sounds, 75, 1, 40, pressure_affected = FALSE, ignore_walls = TRUE)
|
||||
|
||||
/obj/machinery/pointdefense/process()
|
||||
..()
|
||||
@@ -309,7 +305,6 @@ GLOBAL_LIST_BOILERPLATE(pointdefense_turrets, /obj/machinery/pointdefense)
|
||||
return FALSE
|
||||
|
||||
playsound(src, 'sound/weapons/flash.ogg', 100, 0)
|
||||
//update_use_power(USE_POWER_IDLE)
|
||||
active = TRUE
|
||||
update_icon()
|
||||
return TRUE
|
||||
@@ -318,7 +313,6 @@ GLOBAL_LIST_BOILERPLATE(pointdefense_turrets, /obj/machinery/pointdefense)
|
||||
if(!active)
|
||||
return FALSE
|
||||
playsound(src, 'sound/machines/apc_nopower.ogg', 50, 0)
|
||||
//update_use_power(USE_POWER_OFF)
|
||||
active = FALSE
|
||||
update_icon()
|
||||
return TRUE
|
||||
|
||||
@@ -110,11 +110,8 @@
|
||||
light_power = 1
|
||||
light_color = "#ffffff"
|
||||
|
||||
//CHOMPStation add coilgun pointdefense
|
||||
/obj/effect/projectile/impact/coildefense
|
||||
icon = 'icons/obj/projectiles_impact_ch.dmi'
|
||||
icon_state = "impact_coildef"
|
||||
light_range = 2
|
||||
light_power = 3
|
||||
light_color = "#FFFFFF"
|
||||
//CHOMPStation add end <3
|
||||
|
||||
@@ -122,11 +122,8 @@
|
||||
light_power = 1
|
||||
light_color = "#ffffff"
|
||||
|
||||
//CHOMPStation add coilgun pointdefense
|
||||
/obj/effect/projectile/muzzle/coildefense
|
||||
icon = 'icons/obj/projectiles_muzzle_ch.dmi'
|
||||
icon_state = "muzzle_coildef"
|
||||
light_range = 3
|
||||
light_power = 1
|
||||
light_color = "#FFFFFF"
|
||||
//CHOMPStation add end <3
|
||||
|
||||
@@ -149,11 +149,8 @@
|
||||
light_power = 1
|
||||
light_color = "#ffffff"
|
||||
|
||||
//CHOMPStation add coilgun pointdefense
|
||||
/obj/effect/projectile/tracer/coildefense
|
||||
icon = 'icons/obj/projectiles_tracer_ch.dmi'
|
||||
icon_state = "tracer_coildef"
|
||||
light_range = 1
|
||||
light_power = 2
|
||||
light_color = "#FFFFFF"
|
||||
//CHOMPStation add end <3
|
||||
|
||||
@@ -540,6 +540,20 @@
|
||||
tracer_type = /obj/effect/projectile/tracer/pointdefense
|
||||
impact_type = /obj/effect/projectile/impact/pointdefense
|
||||
|
||||
/obj/item/projectile/beam/coildefense
|
||||
name = "defense coil salvo"
|
||||
icon_state = "coil"
|
||||
damage = 15
|
||||
damage_type = ELECTROCUTE //You should be safe inside a voidsuit
|
||||
sharp = FALSE //"Wide" spectrum beam
|
||||
light_color = "#FFFFFF"
|
||||
|
||||
excavation_amount = 200 // Good at shooting rocks
|
||||
|
||||
muzzle_type = /obj/effect/projectile/muzzle/coildefense
|
||||
tracer_type = /obj/effect/projectile/tracer/coildefense
|
||||
impact_type = /obj/effect/projectile/impact/coildefense
|
||||
|
||||
//
|
||||
// Energy Net
|
||||
//
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 27 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 29 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.4 KiB |
@@ -275,7 +275,7 @@
|
||||
/turf/space,
|
||||
/area/space)
|
||||
"aM" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "depot_pd"
|
||||
},
|
||||
/obj/structure/cable{
|
||||
@@ -1264,7 +1264,7 @@
|
||||
/turf/simulated/shuttle/plating/airless,
|
||||
/area/tether_away/fueldepot)
|
||||
"ow" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "depot_pd"
|
||||
},
|
||||
/obj/structure/cable{
|
||||
@@ -1584,7 +1584,7 @@
|
||||
/turf/simulated/shuttle/plating/airless,
|
||||
/area/tether_away/fueldepot)
|
||||
"VA" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "depot_pd"
|
||||
},
|
||||
/obj/structure/cable{
|
||||
|
||||
@@ -474,7 +474,7 @@
|
||||
/turf/simulated/floor/tiled,
|
||||
/area/groundbase/science/outpost/toxins_hallway)
|
||||
"eo" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "axolotl_pd"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
@@ -2107,7 +2107,7 @@
|
||||
/turf/simulated/floor/tiled/white,
|
||||
/area/groundbase/science/outpost/toxins_mixing)
|
||||
"sw" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "axolotl_pd"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
@@ -2254,7 +2254,7 @@
|
||||
/turf/simulated/floor/tiled/white,
|
||||
/area/groundbase/science/outpost/toxing_gasworks)
|
||||
"tT" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "axolotl_pd"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
|
||||
@@ -1736,7 +1736,7 @@
|
||||
/turf/simulated/floor/tiled,
|
||||
/area/groundbase/science/outpost/anomaly_lab)
|
||||
"oz" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "axolotl_pd"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
@@ -2796,7 +2796,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor,
|
||||
/area/shuttle/axolotl_q1)
|
||||
"xo" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "axolotl_pd"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
@@ -4171,7 +4171,7 @@
|
||||
/turf/simulated/floor,
|
||||
/area/groundbase/science/outpost/substation)
|
||||
"Ix" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "axolotl_pd"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
|
||||
@@ -200,7 +200,7 @@
|
||||
/turf/simulated/floor/tiled,
|
||||
/area/groundbase/science/outpost/anomaly_lab)
|
||||
"br" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "axolotl_pd"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
@@ -5895,7 +5895,7 @@
|
||||
/turf/simulated/floor/tiled,
|
||||
/area/groundbase/science/outpost/toxins_hallway)
|
||||
"VR" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "axolotl_pd"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
@@ -5912,7 +5912,7 @@
|
||||
/turf/simulated/floor,
|
||||
/area/groundbase/engineering/solarshed)
|
||||
"VX" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "axolotl_pd"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
|
||||
@@ -109,7 +109,7 @@
|
||||
/area/aro2/room1)
|
||||
"aI" = (
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aroship"
|
||||
},
|
||||
/obj/structure/cable/cyan{
|
||||
@@ -210,7 +210,7 @@
|
||||
/area/aro2/room1)
|
||||
"bd" = (
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aroship"
|
||||
},
|
||||
/obj/structure/cable/cyan{
|
||||
@@ -649,7 +649,7 @@
|
||||
/area/aro2/boatdeck)
|
||||
"el" = (
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aroship"
|
||||
},
|
||||
/obj/structure/cable/cyan,
|
||||
@@ -2770,7 +2770,7 @@
|
||||
/area/aro2/starboardbay)
|
||||
"Ed" = (
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aroship"
|
||||
},
|
||||
/obj/structure/cable/cyan{
|
||||
@@ -3088,7 +3088,7 @@
|
||||
/area/shuttle/aroboat2)
|
||||
"HF" = (
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aroship"
|
||||
},
|
||||
/obj/structure/cable/cyan{
|
||||
@@ -3232,7 +3232,7 @@
|
||||
/area/aro2/portbay)
|
||||
"Jg" = (
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aroship"
|
||||
},
|
||||
/obj/structure/cable/cyan{
|
||||
@@ -3603,7 +3603,7 @@
|
||||
/area/aro2/boatdeck)
|
||||
"MR" = (
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aroship"
|
||||
},
|
||||
/obj/structure/cable/cyan{
|
||||
@@ -3712,7 +3712,7 @@
|
||||
/area/aro2/cockpit)
|
||||
"OK" = (
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aroship"
|
||||
},
|
||||
/obj/structure/cable/cyan,
|
||||
@@ -3817,7 +3817,7 @@
|
||||
/area/aro2/portbay)
|
||||
"PF" = (
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aroship"
|
||||
},
|
||||
/obj/structure/cable/cyan{
|
||||
@@ -4364,7 +4364,7 @@
|
||||
/area/aro2/boatdeck)
|
||||
"Wg" = (
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aroship"
|
||||
},
|
||||
/obj/structure/cable/cyan{
|
||||
|
||||
@@ -331,7 +331,7 @@
|
||||
/turf/simulated/floor/tiled/milspec/sterile,
|
||||
/area/aro3/suite_starboard_wc)
|
||||
"bU" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aro3_pd"
|
||||
},
|
||||
/obj/structure/cable/cyan{
|
||||
@@ -537,7 +537,7 @@
|
||||
/obj/effect/floor_decal/industrial/warning/dust{
|
||||
dir = 10
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aro3_pd"
|
||||
},
|
||||
/obj/structure/cable/cyan{
|
||||
@@ -565,7 +565,7 @@
|
||||
/turf/simulated/floor/tiled/milspec,
|
||||
/area/aro3/kitchen)
|
||||
"do" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aro3_pd"
|
||||
},
|
||||
/obj/structure/cable/cyan{
|
||||
@@ -1058,7 +1058,7 @@
|
||||
/turf/simulated/floor/tiled/milspec/sterile,
|
||||
/area/aro3/wc_port)
|
||||
"gD" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aro3_pd"
|
||||
},
|
||||
/obj/structure/cable/cyan{
|
||||
@@ -1880,7 +1880,7 @@
|
||||
/turf/simulated/floor/tiled/milspec,
|
||||
/area/aro3/hallway_port)
|
||||
"ln" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aro3_pd"
|
||||
},
|
||||
/obj/structure/cable/cyan{
|
||||
@@ -2629,7 +2629,7 @@
|
||||
/turf/space,
|
||||
/area/space)
|
||||
"qg" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aro3_pd"
|
||||
},
|
||||
/obj/structure/cable/cyan{
|
||||
@@ -3696,7 +3696,7 @@
|
||||
/turf/simulated/floor/tiled/milspec/sterile,
|
||||
/area/aro3/medical)
|
||||
"xm" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aro3_pd"
|
||||
},
|
||||
/obj/structure/cable/cyan{
|
||||
@@ -4936,7 +4936,7 @@
|
||||
/turf/simulated/wall/rpshull,
|
||||
/area/aro3/bar)
|
||||
"EW" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aro3_pd"
|
||||
},
|
||||
/obj/structure/cable/cyan,
|
||||
@@ -5136,7 +5136,7 @@
|
||||
/turf/simulated/floor/plating/eris/under,
|
||||
/area/aro3/atmos)
|
||||
"Gz" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aro3_pd"
|
||||
},
|
||||
/obj/structure/cable/cyan{
|
||||
@@ -5579,7 +5579,7 @@
|
||||
/turf/simulated/wall/tgmc/durawall,
|
||||
/area/aro3/cockpit)
|
||||
"KI" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aro3_pd"
|
||||
},
|
||||
/obj/structure/cable/cyan,
|
||||
@@ -5778,7 +5778,7 @@
|
||||
/turf/simulated/floor/tiled/milspec,
|
||||
/area/aro3/surfluid)
|
||||
"LR" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aro3_pd"
|
||||
},
|
||||
/obj/structure/cable/cyan{
|
||||
@@ -6787,7 +6787,7 @@
|
||||
/obj/effect/floor_decal/industrial/warning/dust{
|
||||
dir = 6
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "aro3_pd"
|
||||
},
|
||||
/obj/structure/cable/cyan{
|
||||
|
||||
@@ -3288,7 +3288,7 @@
|
||||
/turf/simulated/floor/plating,
|
||||
/area/shuttle/bearcat/maintenance_engine_pod_starboard)
|
||||
"sg" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "bearcat_pd"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
@@ -3348,7 +3348,7 @@
|
||||
/turf/simulated/shuttle/plating/airless/carry,
|
||||
/area/shuttle/bearcat/maintenance_engine_pod_starboard)
|
||||
"Di" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "bearcat_pd"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
/obj/structure/cable/pink{
|
||||
icon_state = "0-4"
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "dauntless_pd"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
@@ -318,7 +318,7 @@
|
||||
/turf/simulated/floor/airless,
|
||||
/area/itglight/captain)
|
||||
"bq" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "dauntless_pd"
|
||||
},
|
||||
/obj/structure/cable/pink{
|
||||
@@ -1908,7 +1908,7 @@
|
||||
/turf/simulated/floor/tiled/eris/steel/gray_platform,
|
||||
/area/itglight/starboardhighsec)
|
||||
"mo" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "dauntless_pd"
|
||||
},
|
||||
/obj/structure/cable/pink{
|
||||
@@ -5463,7 +5463,7 @@
|
||||
/turf/simulated/floor/tiled/eris/steel/brown_platform,
|
||||
/area/itglight/shuttlebay)
|
||||
"Kv" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "dauntless_pd"
|
||||
},
|
||||
/obj/structure/cable/pink{
|
||||
@@ -7144,7 +7144,7 @@
|
||||
/turf/space,
|
||||
/area/itglight/starboardengi)
|
||||
"We" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "dauntless_pd"
|
||||
},
|
||||
/obj/structure/cable/pink{
|
||||
@@ -7430,7 +7430,7 @@
|
||||
/turf/simulated/floor/carpet/turcarpet,
|
||||
/area/itglight/crew1)
|
||||
"XO" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "dauntless_pd"
|
||||
},
|
||||
/obj/structure/cable/pink{
|
||||
|
||||
@@ -1053,7 +1053,7 @@
|
||||
/area/lunaship/office)
|
||||
"px" = (
|
||||
/obj/structure/lattice,
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "luna_ship_pd"
|
||||
},
|
||||
/obj/structure/cable/cyan{
|
||||
@@ -1935,7 +1935,7 @@
|
||||
/area/lunaship/cockpit)
|
||||
"Ad" = (
|
||||
/obj/structure/lattice,
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "luna_ship_pd"
|
||||
},
|
||||
/obj/structure/cable/cyan,
|
||||
|
||||
@@ -2215,7 +2215,7 @@
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/ship/mercenary/hall1)
|
||||
"dY" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "merc_pd"
|
||||
},
|
||||
/obj/effect/decal/warning_stripes,
|
||||
@@ -2837,7 +2837,7 @@
|
||||
/turf/simulated/floor/plating,
|
||||
/area/ship/mercenary/engine)
|
||||
"fj" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "merc_pd"
|
||||
},
|
||||
/obj/effect/decal/warning_stripes,
|
||||
@@ -3450,28 +3450,28 @@
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/ship/mercenary/engineering)
|
||||
"gk" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "merc_pd"
|
||||
},
|
||||
/obj/effect/decal/warning_stripes,
|
||||
/turf/simulated/floor/plating/external,
|
||||
/area/ship/mercenary/bridge)
|
||||
"gl" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "merc_pd"
|
||||
},
|
||||
/obj/effect/decal/warning_stripes,
|
||||
/turf/simulated/floor/plating/external,
|
||||
/area/ship/mercenary/engineeringcntrl)
|
||||
"gm" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "merc_pd"
|
||||
},
|
||||
/obj/effect/decal/warning_stripes,
|
||||
/turf/simulated/floor/plating/external,
|
||||
/area/ship/mercenary/armoury)
|
||||
"gn" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "merc_pd"
|
||||
},
|
||||
/obj/effect/decal/warning_stripes,
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
/turf/simulated/floor/tiled/techmaint,
|
||||
/area/shuttle/salamander)
|
||||
"bk" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "salamander_pd"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
@@ -1226,7 +1226,7 @@
|
||||
/turf/template_noop,
|
||||
/area/shuttle/salamander)
|
||||
"tA" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "salamander_pd"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
@@ -1454,7 +1454,7 @@
|
||||
/turf/simulated/floor/tiled/techmaint,
|
||||
/area/shuttle/salamander)
|
||||
"FV" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "salamander_pd"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
/turf/simulated/floor/tiled/techmaint,
|
||||
/area/shuttle/salamander_wreck)
|
||||
"bk" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "salamander_wreck_pd"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
@@ -1230,7 +1230,7 @@
|
||||
/turf/simulated/floor/tiled/techmaint/airless,
|
||||
/area/shuttle/salamander_wreck_engineering)
|
||||
"tA" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "salamander_wreck_pd"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
@@ -1700,7 +1700,7 @@
|
||||
/turf/simulated/floor/tiled/techmaint/airless,
|
||||
/area/shuttle/salamander_wreck)
|
||||
"Pr" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "salamander_wreck_pd"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
|
||||
@@ -477,7 +477,7 @@
|
||||
/obj/effect/floor_decal/industrial/warning{
|
||||
dir = 5
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sdfc_pd";
|
||||
name = "\improper twin-linked laser turret"
|
||||
},
|
||||
@@ -679,7 +679,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor,
|
||||
/area/shuttle/sdf_corvette)
|
||||
"QG" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sdfc_pd";
|
||||
name = "\improper twin-linked laser turret"
|
||||
},
|
||||
@@ -751,7 +751,7 @@
|
||||
/obj/effect/floor_decal/industrial/warning{
|
||||
dir = 4
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sdfc_pd";
|
||||
name = "\improper twin-linked laser turret"
|
||||
},
|
||||
|
||||
@@ -600,7 +600,7 @@
|
||||
/obj/effect/floor_decal/industrial/warning{
|
||||
dir = 5
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sdfc_wreck_pd";
|
||||
name = "\improper twin-linked laser turret"
|
||||
},
|
||||
@@ -872,7 +872,7 @@
|
||||
/obj/effect/floor_decal/industrial/warning{
|
||||
dir = 9
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sdfc_wreck_pd";
|
||||
name = "\improper twin-linked laser turret"
|
||||
},
|
||||
@@ -963,7 +963,7 @@
|
||||
/obj/effect/floor_decal/industrial/warning{
|
||||
dir = 4
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sdfc_wreck_pd";
|
||||
name = "\improper twin-linked laser turret"
|
||||
},
|
||||
|
||||
@@ -2198,7 +2198,7 @@
|
||||
/turf/simulated/floor/plating,
|
||||
/area/talon_v2/maintenance/fore_port)
|
||||
"gK" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/structure/cable/green,
|
||||
@@ -2430,7 +2430,7 @@
|
||||
/turf/simulated/floor/plating,
|
||||
/area/talon_v2/engineering/atmospherics)
|
||||
"hz" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/dust{
|
||||
@@ -2855,7 +2855,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor/grid,
|
||||
/area/talon_v2/maintenance/fore_port)
|
||||
"iM" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/dust{
|
||||
@@ -3512,7 +3512,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor,
|
||||
/area/talon_v2/central_hallway/fore)
|
||||
"ly" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/structure/cable/green,
|
||||
@@ -4494,7 +4494,7 @@
|
||||
/turf/simulated/floor/wood,
|
||||
/area/talon_v2/crew_quarters/cap_room)
|
||||
"pc" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/structure/cable/green{
|
||||
@@ -5675,7 +5675,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor,
|
||||
/area/talon_v2/central_hallway/fore)
|
||||
"tc" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/dust{
|
||||
@@ -6170,7 +6170,7 @@
|
||||
/turf/simulated/floor/tiled/techmaint,
|
||||
/area/talon_v2/central_hallway)
|
||||
"uO" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/structure/cable/green{
|
||||
@@ -6448,7 +6448,7 @@
|
||||
/turf/simulated/floor/plating,
|
||||
/area/talon_v2/maintenance/aft_port)
|
||||
"vL" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/structure/cable/green{
|
||||
@@ -6637,7 +6637,7 @@
|
||||
/turf/simulated/floor/tiled/techmaint,
|
||||
/area/talon_v2/central_hallway)
|
||||
"ww" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/structure/cable/green{
|
||||
@@ -6701,7 +6701,7 @@
|
||||
/turf/simulated/floor/tiled/techmaint,
|
||||
/area/talon_v2/maintenance/wing_starboard)
|
||||
"wG" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/dust{
|
||||
@@ -6771,7 +6771,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor,
|
||||
/area/talon_v2/armory)
|
||||
"wT" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/structure/cable/green{
|
||||
@@ -10888,7 +10888,7 @@
|
||||
/obj/structure/cable/green{
|
||||
icon_state = "0-2"
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/turf/simulated/floor/reinforced/airless,
|
||||
@@ -12371,7 +12371,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor,
|
||||
/area/talon_v2/central_hallway/fore)
|
||||
"PT" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/structure/cable/green{
|
||||
@@ -13212,7 +13212,7 @@
|
||||
/turf/simulated/floor/tiled/techmaint,
|
||||
/area/talon_v2/central_hallway/fore)
|
||||
"SS" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/structure/cable/green{
|
||||
@@ -13572,7 +13572,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor,
|
||||
/area/shuttle/talonboat)
|
||||
"Ue" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/structure/cable/green{
|
||||
@@ -13989,7 +13989,7 @@
|
||||
/turf/simulated/floor/tiled/techmaint,
|
||||
/area/talon_v2/refining)
|
||||
"Vy" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/structure/cable/green{
|
||||
@@ -14228,7 +14228,7 @@
|
||||
/turf/simulated/floor/tiled/white,
|
||||
/area/talon_v2/crew_quarters/restrooms)
|
||||
"Wl" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/structure/cable/green{
|
||||
@@ -15341,7 +15341,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor/grid,
|
||||
/area/talon_v2/maintenance/wing_port)
|
||||
"ZK" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "talon_pd"
|
||||
},
|
||||
/obj/structure/cable/green{
|
||||
|
||||
@@ -764,7 +764,7 @@
|
||||
/turf/simulated/floor,
|
||||
/area/maintenance/stellardelight/deck1/starboardfore)
|
||||
"by" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -1736,7 +1736,7 @@
|
||||
color = "#42038a";
|
||||
icon_state = "0-4"
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
@@ -3068,7 +3068,7 @@
|
||||
},
|
||||
/area/stellardelight/deck1/aft)
|
||||
"fP" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -3176,7 +3176,7 @@
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/chapel/chapel_morgue)
|
||||
"ga" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -3190,7 +3190,7 @@
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/security/security_equiptment_storage)
|
||||
"gc" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -3876,7 +3876,7 @@
|
||||
/turf/simulated/floor/tiled/eris/white/bluecorner,
|
||||
/area/stellardelight/deck1/resleeving)
|
||||
"hw" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -4194,7 +4194,7 @@
|
||||
/turf/simulated/floor/tiled/techmaint,
|
||||
/area/stellardelight/deck1/port)
|
||||
"ib" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -6385,7 +6385,7 @@
|
||||
/turf/simulated/floor,
|
||||
/area/maintenance/stellardelight/deck1/starboardaft)
|
||||
"mC" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -7776,7 +7776,7 @@
|
||||
/turf/simulated/floor/tiled/techmaint,
|
||||
/area/stellardelight/deck1/fore)
|
||||
"pz" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -8599,7 +8599,7 @@
|
||||
/turf/simulated/floor/tiled/eris/steel/cargo,
|
||||
/area/stellardelight/deck1/miningequipment)
|
||||
"ro" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -9197,7 +9197,7 @@
|
||||
/obj/structure/cable/green{
|
||||
icon_state = "0-4"
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
@@ -10120,7 +10120,7 @@
|
||||
/turf/simulated/floor/tiled/techmaint,
|
||||
/area/stellardelight/deck1/port)
|
||||
"uH" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -12651,7 +12651,7 @@
|
||||
/turf/simulated/floor,
|
||||
/area/maintenance/stellardelight/deck1/exploration)
|
||||
"Ah" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -13620,7 +13620,7 @@
|
||||
/turf/simulated/floor/tiled/techmaint,
|
||||
/area/stellardelight/deck1/starboard)
|
||||
"Ci" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -15235,7 +15235,7 @@
|
||||
/turf/simulated/floor/tiled/eris,
|
||||
/area/rnd/xenobiology/xenoflora)
|
||||
"FP" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -15759,7 +15759,7 @@
|
||||
/turf/simulated/floor/tiled/steel_ridged,
|
||||
/area/stellardelight/deck1/mining)
|
||||
"Hc" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -16696,7 +16696,7 @@
|
||||
/turf/simulated/floor/tiled/white,
|
||||
/area/crew_quarters/toilet)
|
||||
"IV" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -17061,7 +17061,7 @@
|
||||
color = "#42038a";
|
||||
icon_state = "0-8"
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -18429,7 +18429,7 @@
|
||||
/turf/simulated/floor/tiled/steel_ridged,
|
||||
/area/crew_quarters/toilet)
|
||||
"MP" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -18811,7 +18811,7 @@
|
||||
/turf/simulated/floor/tiled/monotile,
|
||||
/area/janitor)
|
||||
"ND" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -21242,7 +21242,7 @@
|
||||
/turf/simulated/floor,
|
||||
/area/maintenance/stellardelight/deck1/starboardaft)
|
||||
"SN" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -22956,7 +22956,7 @@
|
||||
color = "#42038a";
|
||||
icon_state = "0-4"
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
@@ -23638,7 +23638,7 @@
|
||||
/turf/simulated/floor,
|
||||
/area/maintenance/stellardelight/deck1/starboardcent)
|
||||
"Xw" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
|
||||
@@ -745,7 +745,7 @@
|
||||
/turf/simulated/floor/tiled/monotile,
|
||||
/area/stellardelight/deck2/aftstarboard)
|
||||
"bw" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -803,7 +803,7 @@
|
||||
/turf/simulated/floor/tiled/techmaint,
|
||||
/area/stellardelight/deck2/starboardescape)
|
||||
"bD" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -4238,7 +4238,7 @@
|
||||
/turf/simulated/floor/tiled/eris/steel/brown_platform,
|
||||
/area/crew_quarters/bar)
|
||||
"iU" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -7580,7 +7580,7 @@
|
||||
/obj/structure/cable/orange{
|
||||
icon_state = "0-4"
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
@@ -9419,7 +9419,7 @@
|
||||
/turf/simulated/floor/tiled,
|
||||
/area/stellardelight/deck2/starboard)
|
||||
"ur" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -10162,7 +10162,7 @@
|
||||
/obj/structure/cable/orange{
|
||||
icon_state = "0-2"
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/structure/cable/orange{
|
||||
@@ -11945,7 +11945,7 @@
|
||||
/turf/simulated/floor,
|
||||
/area/stellardelight/deck2/combustionworkshop)
|
||||
"Ar" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -12074,7 +12074,7 @@
|
||||
/turf/simulated/floor/tiled/eris/dark/orangecorner,
|
||||
/area/engineering/locker_room)
|
||||
"AF" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -13033,7 +13033,7 @@
|
||||
/turf/simulated/floor/airless,
|
||||
/area/stellardelight/deck2/exterior)
|
||||
"CQ" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -13107,7 +13107,7 @@
|
||||
/turf/simulated/floor/tiled/eris/steel/brown_platform,
|
||||
/area/crew_quarters/bar)
|
||||
"CZ" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -16154,7 +16154,7 @@
|
||||
/obj/structure/cable/orange{
|
||||
icon_state = "0-8"
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
@@ -18168,7 +18168,7 @@
|
||||
/obj/structure/cable/orange{
|
||||
icon_state = "0-2"
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
@@ -19559,7 +19559,7 @@
|
||||
/turf/simulated/floor/tiled/steel_ridged,
|
||||
/area/crew_quarters/recreation_area)
|
||||
"QW" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -20057,7 +20057,7 @@
|
||||
/turf/simulated/floor/tiled/eris/white/bluecorner,
|
||||
/area/medical/chemistry)
|
||||
"Sj" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -20065,7 +20065,7 @@
|
||||
/turf/simulated/floor/airless,
|
||||
/area/stellardelight/deck2/exterior)
|
||||
"Sk" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -20907,7 +20907,7 @@
|
||||
icon_state = "1-2"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/structure/cable/orange{
|
||||
@@ -21329,7 +21329,7 @@
|
||||
/obj/structure/cable/orange{
|
||||
icon_state = "0-2"
|
||||
},
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
@@ -21840,7 +21840,7 @@
|
||||
/turf/simulated/floor/tiled,
|
||||
/area/crew_quarters/locker)
|
||||
"Wn" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
|
||||
@@ -1902,7 +1902,7 @@
|
||||
/turf/simulated/floor,
|
||||
/area/maintenance/stellardelight/deck3/portcent)
|
||||
"gB" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -2537,7 +2537,7 @@
|
||||
/turf/simulated/floor/tiled,
|
||||
/area/stellardelight/deck3/aft)
|
||||
"iY" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -4537,7 +4537,7 @@
|
||||
},
|
||||
/area/tcommsat/chamber)
|
||||
"qb" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -6112,7 +6112,7 @@
|
||||
/turf/simulated/floor/bluegrid,
|
||||
/area/ai_cyborg_station)
|
||||
"we" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -8808,7 +8808,7 @@
|
||||
/turf/simulated/floor,
|
||||
/area/maintenance/stellardelight/deck3/portaft)
|
||||
"FH" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -11286,7 +11286,7 @@
|
||||
/turf/simulated/floor,
|
||||
/area/maintenance/stellardelight/deck3/foreportrooma)
|
||||
"Op" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -12760,7 +12760,7 @@
|
||||
/turf/simulated/floor/tiled,
|
||||
/area/stellardelight/deck3/aft)
|
||||
"TE" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -13283,7 +13283,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor/grid,
|
||||
/area/maintenance/stellardelight/deck3/forestarroomb)
|
||||
"Vz" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
@@ -13355,7 +13355,7 @@
|
||||
/turf/simulated/floor,
|
||||
/area/maintenance/stellardelight/deck3/portcent)
|
||||
"VM" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "sd_pd"
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
/turf/space,
|
||||
/area/space)
|
||||
"ab" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "vonbraun_pd"
|
||||
},
|
||||
/obj/structure/cable/yellow{
|
||||
@@ -42,7 +42,7 @@
|
||||
/turf/simulated/floor/reinforced/airless,
|
||||
/area/ship/ert/barracks)
|
||||
"aj" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "vonbraun_pd"
|
||||
},
|
||||
/obj/structure/cable/yellow{
|
||||
@@ -215,7 +215,7 @@
|
||||
/turf/simulated/wall/shull,
|
||||
/area/ship/ert/med_surg)
|
||||
"aV" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "vonbraun_pd"
|
||||
},
|
||||
/obj/structure/cable/yellow{
|
||||
@@ -413,7 +413,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor,
|
||||
/area/ship/ert/hallways_aft)
|
||||
"ch" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "vonbraun_pd"
|
||||
},
|
||||
/obj/structure/cable/yellow{
|
||||
@@ -467,7 +467,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor,
|
||||
/area/ship/ert/brig)
|
||||
"cJ" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "vonbraun_pd"
|
||||
},
|
||||
/obj/structure/cable/yellow{
|
||||
@@ -839,7 +839,7 @@
|
||||
/turf/simulated/wall/rshull,
|
||||
/area/ship/ert/gunnery)
|
||||
"fn" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "vonbraun_pd"
|
||||
},
|
||||
/obj/structure/cable/yellow{
|
||||
@@ -1404,7 +1404,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor,
|
||||
/area/ship/ert/hallways_aft)
|
||||
"hA" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "vonbraun_pd"
|
||||
},
|
||||
/obj/machinery/light/no_nightshift{
|
||||
@@ -3111,7 +3111,7 @@
|
||||
/turf/simulated/wall/shull,
|
||||
/area/ship/ert/atmos)
|
||||
"pY" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "vonbraun_pd"
|
||||
},
|
||||
/obj/structure/cable/yellow{
|
||||
@@ -3336,7 +3336,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor,
|
||||
/area/ship/ert/atmos)
|
||||
"ra" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "vonbraun_pd"
|
||||
},
|
||||
/obj/structure/cable/yellow{
|
||||
@@ -4346,7 +4346,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor,
|
||||
/area/ship/ert/armoury_st)
|
||||
"xx" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "vonbraun_pd"
|
||||
},
|
||||
/obj/structure/cable/yellow{
|
||||
@@ -6268,7 +6268,7 @@
|
||||
/turf/simulated/floor/tiled/techmaint,
|
||||
/area/ship/ert/brig)
|
||||
"Ia" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "vonbraun_pd"
|
||||
},
|
||||
/obj/structure/cable/yellow,
|
||||
@@ -6339,7 +6339,7 @@
|
||||
/turf/simulated/floor/tiled/techmaint,
|
||||
/area/ship/ert/barracks)
|
||||
"Iu" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "vonbraun_pd"
|
||||
},
|
||||
/obj/structure/cable/yellow{
|
||||
@@ -7910,7 +7910,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor,
|
||||
/area/ship/ert/bridge)
|
||||
"PO" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "vonbraun_pd"
|
||||
},
|
||||
/obj/structure/cable/yellow{
|
||||
|
||||
@@ -575,7 +575,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor,
|
||||
/area/ship/manta/recreation)
|
||||
"bG" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "mercenary_pd"
|
||||
},
|
||||
/obj/structure/cable/orange{
|
||||
@@ -840,7 +840,7 @@
|
||||
/turf/simulated/floor/plating,
|
||||
/area/ship/manta/engine)
|
||||
"cI" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "mercenary_pd"
|
||||
},
|
||||
/obj/structure/cable/orange{
|
||||
@@ -1516,7 +1516,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor,
|
||||
/area/ship/manta/hangar)
|
||||
"fM" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "mercenary_pd"
|
||||
},
|
||||
/obj/structure/cable/orange,
|
||||
@@ -3294,7 +3294,7 @@
|
||||
/turf/simulated/floor/plating,
|
||||
/area/ship/manta/engine)
|
||||
"nJ" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "mercenary_pd"
|
||||
},
|
||||
/obj/structure/cable/orange{
|
||||
@@ -3887,7 +3887,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor,
|
||||
/area/ship/manta/hallways_aft)
|
||||
"qI" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "mercenary_pd"
|
||||
},
|
||||
/obj/structure/cable/orange{
|
||||
@@ -3943,7 +3943,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor,
|
||||
/area/ship/manta/hallways_aft)
|
||||
"qQ" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "mercenary_pd"
|
||||
},
|
||||
/obj/structure/cable/orange{
|
||||
@@ -4010,7 +4010,7 @@
|
||||
/turf/simulated/floor/reinforced/airless,
|
||||
/area/ship/manta/mech_bay)
|
||||
"rp" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "mercenary_pd"
|
||||
},
|
||||
/obj/structure/cable/orange{
|
||||
@@ -4483,7 +4483,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor,
|
||||
/area/ship/manta/hangar)
|
||||
"tR" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "mercenary_pd"
|
||||
},
|
||||
/obj/structure/cable/orange{
|
||||
@@ -5930,7 +5930,7 @@
|
||||
/turf/simulated/floor/tiled/techfloor,
|
||||
/area/ship/manta/armoury_st)
|
||||
"zw" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "mercenary_pd"
|
||||
},
|
||||
/obj/structure/cable/orange{
|
||||
@@ -7276,7 +7276,7 @@
|
||||
/turf/simulated/floor/tiled/techmaint,
|
||||
/area/ship/manta/bridge)
|
||||
"FZ" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "mercenary_pd"
|
||||
},
|
||||
/obj/structure/cable/orange,
|
||||
@@ -8160,7 +8160,7 @@
|
||||
/turf/simulated/wall/rshull,
|
||||
/area/ship/manta/teleporter)
|
||||
"KK" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "mercenary_pd"
|
||||
},
|
||||
/obj/structure/cable/orange{
|
||||
@@ -9805,7 +9805,7 @@
|
||||
/turf/simulated/floor/wood,
|
||||
/area/ship/manta/barracks)
|
||||
"Sr" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "mercenary_pd"
|
||||
},
|
||||
/obj/structure/cable/orange{
|
||||
@@ -11075,7 +11075,7 @@
|
||||
/turf/simulated/floor/plating,
|
||||
/area/ship/manta/magazine)
|
||||
"Yc" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "mercenary_pd"
|
||||
},
|
||||
/obj/structure/cable/orange{
|
||||
|
||||
@@ -36,13 +36,13 @@
|
||||
/turf/simulated/floor/tiled/techmaint,
|
||||
/area/shuttle/salamander_trader)
|
||||
"aO" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "salamander_pd"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
/area/shuttle/salamander_trader_q2)
|
||||
"bk" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "salamander_pd"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
@@ -1248,7 +1248,7 @@
|
||||
/turf/template_noop,
|
||||
/area/shuttle/salamander_trader)
|
||||
"tA" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
id_tag = "salamander_pd"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
/turf/simulated/floor/hull/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
/obj/machinery/pointdefense{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/hull/airless,
|
||||
|
||||
Reference in New Issue
Block a user