Tyr Mini-Patch (#9824)
173
modular_chomp/code/modules/clothing/spacesuits/rig/tyr.dm
Normal file
@@ -0,0 +1,173 @@
|
|||||||
|
/obj/item/rig/ch/tyrprecursor
|
||||||
|
name = "alien hardsuit control module"
|
||||||
|
desc = "A orange hardsuit gleaming with energy and alien metals."
|
||||||
|
suit_type = "tyrprecursor hardsuit"
|
||||||
|
icon = 'modular_chomp/icons/obj/rig_modules_ch.dmi'
|
||||||
|
icon_state = "tyrprecursor_rig"
|
||||||
|
armor = list(melee = 20, bullet = 20, laser = 20, energy = 20, bomb = 90, bio = 100, rad = 10)
|
||||||
|
slowdown = 0
|
||||||
|
|
||||||
|
chest_type = /obj/item/clothing/suit/space/rig/ch/tyrprecursor
|
||||||
|
helm_type = /obj/item/clothing/head/helmet/space/rig/ch/precursor
|
||||||
|
glove_type = /obj/item/clothing/gloves/gauntlets/rig/ch/precursor
|
||||||
|
boot_type = /obj/item/clothing/shoes/magboots/rig/ch/precursor
|
||||||
|
|
||||||
|
req_access = list()
|
||||||
|
req_one_access = list()
|
||||||
|
|
||||||
|
/obj/item/clothing/suit/space/rig/ch/tyrprecursor
|
||||||
|
name = "protective vest"
|
||||||
|
icon = 'icons/obj/clothing/spacesuits_ch.dmi'
|
||||||
|
desc = "Light weight but oddly protective plating."
|
||||||
|
var/shieldhealth = 200
|
||||||
|
var/cooldown = null // world.time of when this was last triggered.
|
||||||
|
var/cooldown_duration = 2 MINUTES
|
||||||
|
|
||||||
|
/obj/item/clothing/suit/space/rig/ch/tyrprecursor/handle_shield(mob/user, var/damage, atom/damage_source = null, mob/attacker = null, var/def_zone = null, var/attack_text = "the attack")
|
||||||
|
if(shieldhealth < 0)
|
||||||
|
user.visible_message(span_danger("\The [src] completely absorbs [attack_text]!"))
|
||||||
|
shieldhealth -= damage
|
||||||
|
cooldown = world.time + cooldown_duration
|
||||||
|
return TRUE
|
||||||
|
return FALSE
|
||||||
|
|
||||||
|
/obj/item/clothing/suit/space/rig/ch/tyrprecursor/proc/activate_ability(var/mob/living/wearer)
|
||||||
|
cooldown = world.time + cooldown_duration
|
||||||
|
shieldhealth = 200
|
||||||
|
|
||||||
|
/obj/item/clothing/suit/space/rig/ch/tyrprecursor/equipped(var/mob/living/carbon/human/H)
|
||||||
|
..()
|
||||||
|
if(istype(H) && H.head == src && H.is_sentient())
|
||||||
|
START_PROCESSING(SSobj, src)
|
||||||
|
|
||||||
|
/obj/item/clothing/suit/space/rig/ch/tyrprecursor/dropped(var/mob/living/carbon/human/H)
|
||||||
|
..()
|
||||||
|
STOP_PROCESSING(SSobj, src)
|
||||||
|
|
||||||
|
/obj/item/clothing/suit/space/rig/ch/tyrprecursor/Destroy()
|
||||||
|
STOP_PROCESSING(SSobj, src)
|
||||||
|
return ..()
|
||||||
|
|
||||||
|
/obj/item/clothing/suit/space/rig/ch/tyrprecursor/process()
|
||||||
|
if(isliving(loc))
|
||||||
|
var/mob/living/L = loc
|
||||||
|
if(world.time >= cooldown && L.is_sentient() && shieldhealth < 1)
|
||||||
|
activate_ability(L)
|
||||||
|
|
||||||
|
/obj/item/clothing/head/helmet/space/rig/ch/tyrprecursor
|
||||||
|
name = "helmet"
|
||||||
|
icon = 'icons/obj/clothing/hats_ch.dmi'
|
||||||
|
desc = "A protective dome for your head."
|
||||||
|
|
||||||
|
var/shieldhealth = 200
|
||||||
|
var/cooldown = null // world.time of when this was last triggered.
|
||||||
|
var/cooldown_duration = 2 MINUTES
|
||||||
|
|
||||||
|
/obj/item/clothing/head/helmet/space/rig/ch/tyrprecursor/handle_shield(mob/user, var/damage, atom/damage_source = null, mob/attacker = null, var/def_zone = null, var/attack_text = "the attack")
|
||||||
|
if(shieldhealth < 0)
|
||||||
|
user.visible_message(span_danger("\The [src] completely absorbs [attack_text]!"))
|
||||||
|
shieldhealth -= damage
|
||||||
|
cooldown = world.time + cooldown_duration
|
||||||
|
return TRUE
|
||||||
|
return FALSE
|
||||||
|
|
||||||
|
/obj/item/clothing/head/helmet/space/rig/ch/tyrprecursor/proc/activate_ability(var/mob/living/wearer)
|
||||||
|
cooldown = world.time + cooldown_duration
|
||||||
|
shieldhealth = 200
|
||||||
|
|
||||||
|
/obj/item/clothing/head/helmet/space/rig/ch/tyrprecursor/equipped(var/mob/living/carbon/human/H)
|
||||||
|
..()
|
||||||
|
if(istype(H) && H.head == src && H.is_sentient())
|
||||||
|
START_PROCESSING(SSobj, src)
|
||||||
|
|
||||||
|
/obj/item/clothing/head/helmet/space/rig/ch/tyrprecursor/dropped(var/mob/living/carbon/human/H)
|
||||||
|
..()
|
||||||
|
STOP_PROCESSING(SSobj, src)
|
||||||
|
|
||||||
|
/obj/item/clothing/head/helmet/space/rig/ch/tyrprecursor/Destroy()
|
||||||
|
STOP_PROCESSING(SSobj, src)
|
||||||
|
return ..()
|
||||||
|
|
||||||
|
/obj/item/clothing/head/helmet/space/rig/ch/tyrprecursor/process()
|
||||||
|
if(isliving(loc))
|
||||||
|
var/mob/living/L = loc
|
||||||
|
if(world.time >= cooldown && L.is_sentient() && shieldhealth < 1)
|
||||||
|
activate_ability(L)
|
||||||
|
|
||||||
|
/obj/item/clothing/gloves/gauntlets/rig/ch/tyrprecursor
|
||||||
|
name = "gloves"
|
||||||
|
icon = 'icons/obj/clothing/gloves_ch.dmi'
|
||||||
|
desc = "Gloves created with alien tech"
|
||||||
|
var/shieldhealth = 200
|
||||||
|
var/cooldown = null // world.time of when this was last triggered.
|
||||||
|
var/cooldown_duration = 2 MINUTES
|
||||||
|
|
||||||
|
/obj/item/clothing/gloves/gauntlets/rig/ch/tyrprecursor/handle_shield(mob/user, var/damage, atom/damage_source = null, mob/attacker = null, var/def_zone = null, var/attack_text = "the attack")
|
||||||
|
if(shieldhealth < 0)
|
||||||
|
user.visible_message(span_danger("\The [src] completely absorbs [attack_text]!"))
|
||||||
|
shieldhealth -= damage
|
||||||
|
cooldown = world.time + cooldown_duration
|
||||||
|
return TRUE
|
||||||
|
return FALSE
|
||||||
|
|
||||||
|
/obj/item/clothing/gloves/gauntlets/rig/ch/tyrprecursor/proc/activate_ability(var/mob/living/wearer)
|
||||||
|
cooldown = world.time + cooldown_duration
|
||||||
|
shieldhealth = 200
|
||||||
|
|
||||||
|
/obj/item/clothing/gloves/gauntlets/rig/ch/tyrprecursor/equipped(var/mob/living/carbon/human/H)
|
||||||
|
..()
|
||||||
|
if(istype(H) && H.head == src && H.is_sentient())
|
||||||
|
START_PROCESSING(SSobj, src)
|
||||||
|
|
||||||
|
/obj/item/clothing/gloves/gauntlets/rig/ch/tyrprecursor/dropped(var/mob/living/carbon/human/H)
|
||||||
|
..()
|
||||||
|
STOP_PROCESSING(SSobj, src)
|
||||||
|
|
||||||
|
/obj/item/clothing/gloves/gauntlets/rig/ch/tyrprecursor/Destroy()
|
||||||
|
STOP_PROCESSING(SSobj, src)
|
||||||
|
return ..()
|
||||||
|
|
||||||
|
/obj/item/clothing/gloves/gauntlets/rig/ch/tyrprecursor/process()
|
||||||
|
if(isliving(loc))
|
||||||
|
var/mob/living/L = loc
|
||||||
|
if(world.time >= cooldown && L.is_sentient() && shieldhealth < 1)
|
||||||
|
activate_ability(L)
|
||||||
|
|
||||||
|
/obj/item/clothing/shoes/magboots/rig/ch/tyrprecursor
|
||||||
|
name = "boots"
|
||||||
|
icon = 'icons/obj/clothing/shoes_ch.dmi'
|
||||||
|
desc = "A pair of grabby boots"
|
||||||
|
var/shieldhealth = 200
|
||||||
|
var/cooldown = null // world.time of when this was last triggered.
|
||||||
|
var/cooldown_duration = 2 MINUTES
|
||||||
|
|
||||||
|
/obj/item/clothing/shoes/magboots/rig/ch/tyrprecursor/handle_shield(mob/user, var/damage, atom/damage_source = null, mob/attacker = null, var/def_zone = null, var/attack_text = "the attack")
|
||||||
|
if(shieldhealth < 0)
|
||||||
|
user.visible_message(span_danger("\The [src] completely absorbs [attack_text]!"))
|
||||||
|
shieldhealth -= damage
|
||||||
|
cooldown = world.time + cooldown_duration
|
||||||
|
return TRUE
|
||||||
|
return FALSE
|
||||||
|
|
||||||
|
/obj/item/clothing/shoes/magboots/rig/ch/tyrprecursor/proc/activate_ability(var/mob/living/wearer)
|
||||||
|
cooldown = world.time + cooldown_duration
|
||||||
|
shieldhealth = 200
|
||||||
|
|
||||||
|
/obj/item/clothing/shoes/magboots/rig/ch/tyrprecursor/equipped(var/mob/living/carbon/human/H)
|
||||||
|
..()
|
||||||
|
if(istype(H) && H.head == src && H.is_sentient())
|
||||||
|
START_PROCESSING(SSobj, src)
|
||||||
|
|
||||||
|
/obj/item/clothing/shoes/magboots/rig/ch/tyrprecursor/dropped(var/mob/living/carbon/human/H)
|
||||||
|
..()
|
||||||
|
STOP_PROCESSING(SSobj, src)
|
||||||
|
|
||||||
|
/obj/item/clothing/shoes/magboots/rig/ch/tyrprecursor/Destroy()
|
||||||
|
STOP_PROCESSING(SSobj, src)
|
||||||
|
return ..()
|
||||||
|
|
||||||
|
/obj/item/clothing/shoes/magboots/rig/ch/tyrprecursor/process()
|
||||||
|
if(isliving(loc))
|
||||||
|
var/mob/living/L = loc
|
||||||
|
if(world.time >= cooldown && L.is_sentient() && shieldhealth < 1)
|
||||||
|
activate_ability(L)
|
||||||
@@ -839,7 +839,7 @@
|
|||||||
name = "Eclipse Expirmental Janus"
|
name = "Eclipse Expirmental Janus"
|
||||||
armor = list(melee = 60, bullet = 60, laser = 60, energy = 60, bomb = 80, bio = 100, rad = 100)
|
armor = list(melee = 60, bullet = 60, laser = 60, energy = 60, bomb = 80, bio = 100, rad = 100)
|
||||||
specialattackprojectile = /obj/item/projectile/energy/darkspike
|
specialattackprojectile = /obj/item/projectile/energy/darkspike
|
||||||
pilot_type = /mob/living/simple_mob/humanoid/merc/ranged
|
pilot_type = /mob/living/simple_mob/humanoid/eclipse/head/tyrlead
|
||||||
icon_state = "eclipse_janus"
|
icon_state = "eclipse_janus"
|
||||||
attackcycle = 1
|
attackcycle = 1
|
||||||
|
|
||||||
@@ -946,7 +946,7 @@
|
|||||||
|
|
||||||
//Phase three 2 wierd patterns, and 1 strange attack.
|
//Phase three 2 wierd patterns, and 1 strange attack.
|
||||||
/mob/living/simple_mob/mechanical/mecha/eclipse/darkmatter_assualt/proc/phasethree_cycleone(atom/target)
|
/mob/living/simple_mob/mechanical/mecha/eclipse/darkmatter_assualt/proc/phasethree_cycleone(atom/target)
|
||||||
specialattackprojectile = /obj/item/projectile/energy/infernosphere
|
specialattackprojectile = /obj/item/projectile/bullet/eclipsejanus
|
||||||
addtimer(CALLBACK(src, PROC_REF(spin_to_win), target, 2), 2 SECONDS, TIMER_DELETE_ME)
|
addtimer(CALLBACK(src, PROC_REF(spin_to_win), target, 2), 2 SECONDS, TIMER_DELETE_ME)
|
||||||
attackcycle = 0
|
attackcycle = 0
|
||||||
|
|
||||||
@@ -956,7 +956,7 @@
|
|||||||
attackcycle = 0
|
attackcycle = 0
|
||||||
|
|
||||||
/mob/living/simple_mob/mechanical/mecha/eclipse/darkmatter_assualt/proc/phasethree_cyclethree(atom/target) //eight spinning death beams
|
/mob/living/simple_mob/mechanical/mecha/eclipse/darkmatter_assualt/proc/phasethree_cyclethree(atom/target) //eight spinning death beams
|
||||||
specialattackprojectile = /obj/item/projectile/energy/darkspike
|
specialattackprojectile = /obj/item/projectile/bullet/eclipsejanus
|
||||||
addtimer(CALLBACK(src, PROC_REF(random_firing), target, 20, 1, 0.2 SECONDS), 0.5 SECONDS, TIMER_DELETE_ME)
|
addtimer(CALLBACK(src, PROC_REF(random_firing), target, 20, 1, 0.2 SECONDS), 0.5 SECONDS, TIMER_DELETE_ME)
|
||||||
attackcycle = 0
|
attackcycle = 0
|
||||||
|
|
||||||
@@ -1045,4 +1045,48 @@
|
|||||||
if(ranged_attack_delay)
|
if(ranged_attack_delay)
|
||||||
ranged_post_animation(A)
|
ranged_post_animation(A)
|
||||||
|
|
||||||
return TRUE
|
return TRUE
|
||||||
|
|
||||||
|
|
||||||
|
//Jank code?
|
||||||
|
/obj/item/projectile/energy/spintowin
|
||||||
|
name = "burning plasma"
|
||||||
|
icon = 'modular_chomp/icons/obj/guns/precursor/tyr.dmi'
|
||||||
|
icon_state = "plasma"
|
||||||
|
damage = 50
|
||||||
|
speed = 15
|
||||||
|
var/spinvaule = 120
|
||||||
|
|
||||||
|
/obj/item/projectile/energy/spintowin/Move()
|
||||||
|
. = ..()
|
||||||
|
yo ++
|
||||||
|
xo ++
|
||||||
|
|
||||||
|
/obj/item/gun/energy/curse_tyrshotgun/debuggun
|
||||||
|
projectile_type = /obj/item/projectile/energy/spintowin
|
||||||
|
|
||||||
|
/obj/item/projectile/energy/randospeed
|
||||||
|
name = "burning plasma"
|
||||||
|
icon = 'modular_chomp/icons/obj/guns/precursor/tyr.dmi'
|
||||||
|
icon_state = "plasma"
|
||||||
|
damage = 50
|
||||||
|
speed = 15
|
||||||
|
var/spinvaule = 3
|
||||||
|
|
||||||
|
/obj/item/projectile/energy/randospeed/Move()
|
||||||
|
. = ..()
|
||||||
|
if(prob(50))
|
||||||
|
speed += spinvaule
|
||||||
|
else
|
||||||
|
speed -= spinvaule
|
||||||
|
|
||||||
|
/mob/living/simple_mob/mechanical/mecha/eclipse/eventplaceholder //So I can use the random fire BH for one time event mobs
|
||||||
|
name = "Expirmental Mecha Unit"
|
||||||
|
specialattackprojectile = /obj/item/projectile/beam/midlaser
|
||||||
|
armor = list(melee = 40, bullet = 40, laser = 40, energy = 40, bomb = 40, bio = 100, rad = 100)
|
||||||
|
icon_state = "orb"
|
||||||
|
wreckage = /obj/structure/loot_pile/mecha/odd_gygax
|
||||||
|
special_attack_cooldown = 320
|
||||||
|
|
||||||
|
/mob/living/simple_mob/mechanical/mecha/eclipse/do_special_attack(atom/A)
|
||||||
|
addtimer(CALLBACK(src, PROC_REF(random_firing), A, 12, 3, 0.5 SECONDS), 0.5 SECONDS, TIMER_DELETE_ME)
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
icon = 'modular_chomp/icons/obj/guns/precursor/tyr.dmi'
|
icon = 'modular_chomp/icons/obj/guns/precursor/tyr.dmi'
|
||||||
icon_state = "shotgun_blast"
|
icon_state = "shotgun_blast"
|
||||||
damage = 50
|
damage = 50
|
||||||
range = 4
|
range = 5
|
||||||
check_armour = "laser"
|
check_armour = "laser"
|
||||||
|
|
||||||
/obj/item/projectile/energy/wp_shotgun/on_hit(var/atom/movable/target, var/blocked = 0)
|
/obj/item/projectile/energy/wp_shotgun/on_hit(var/atom/movable/target, var/blocked = 0)
|
||||||
@@ -44,14 +44,14 @@
|
|||||||
name = "laser blast"
|
name = "laser blast"
|
||||||
icon = 'modular_chomp/icons/obj/guns/precursor/tyr.dmi'
|
icon = 'modular_chomp/icons/obj/guns/precursor/tyr.dmi'
|
||||||
icon_state = "blaster_blast"
|
icon_state = "blaster_blast"
|
||||||
damage = 40
|
damage = 60
|
||||||
range = 5
|
range = 5
|
||||||
check_armour = "laser"
|
check_armour = "laser"
|
||||||
|
|
||||||
/obj/item/projectile/beam/precursor_tyr
|
/obj/item/projectile/beam/precursor_tyr
|
||||||
name = "laser"
|
name = "laser"
|
||||||
icon_state = "laser"
|
icon_state = "laser"
|
||||||
damage = 30
|
damage = 50
|
||||||
damage_type = BURN
|
damage_type = BURN
|
||||||
check_armour = "laser"
|
check_armour = "laser"
|
||||||
range = 5
|
range = 5
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -51,7 +51,7 @@
|
|||||||
"bM" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens)
|
"bM" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens)
|
||||||
"bN" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/light/small,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"bN" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/light/small,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"bS" = (/obj/effect/floor_decal/corner/lime/border{dir = 5},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"bS" = (/obj/effect/floor_decal/corner/lime/border{dir = 5},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"bT" = (/obj/item/storage/fancy/candle_box,/obj/item/storage/fancy/candle_box,/obj/structure/closet/crate,/obj/item/storage/fancy/blackcandle_box,/obj/item/storage/fancy/blackcandle_box,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/northern_wilderness)
|
"bT" = (/obj/item/storage/fancy/candle_box,/obj/item/storage/fancy/candle_box,/obj/structure/closet/crate,/obj/item/storage/fancy/blackcandle_box,/obj/item/storage/fancy/blackcandle_box,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/town_hall)
|
||||||
"bV" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/random/maintenance,/obj/random/cash/huge,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash)
|
"bV" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/random/maintenance,/obj/random/cash/huge,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash)
|
||||||
"bW" = (/obj/structure/closet/secure_closet/hydroponics,/obj/effect/floor_decal/corner/lime/diagonal,/obj/machinery/light/small,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe)
|
"bW" = (/obj/structure/closet/secure_closet/hydroponics,/obj/effect/floor_decal/corner/lime/diagonal,/obj/machinery/light/small,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe)
|
||||||
"bX" = (/obj/structure/table/standard,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold)
|
"bX" = (/obj/structure/table/standard,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -64,19 +64,19 @@
|
|||||||
"cl" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold)
|
"cl" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold)
|
||||||
"cm" = (/obj/machinery/light/small,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro)
|
"cm" = (/obj/machinery/light/small,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro)
|
||||||
"cn" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/table/standard,/obj/item/reagent_containers/glass/beaker/large,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb)
|
"cn" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/table/standard,/obj/item/reagent_containers/glass/beaker/large,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb)
|
||||||
"co" = (/obj/structure/table/wooden_reinforced,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/northern_wilderness)
|
"co" = (/obj/structure/table/wooden_reinforced,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/town_hall)
|
||||||
"cp" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB)
|
"cp" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB)
|
||||||
"cq" = (/obj/structure/bed,/obj/machinery/light/small{dir = 8},/obj/structure/window/plastitanium,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
"cq" = (/obj/structure/bed,/obj/machinery/light/small{dir = 8},/obj/structure/window/plastitanium,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
||||||
"cr" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/floor/carpet/purple,/area/surface/tyr/eclipse_stronghold)
|
"cr" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/floor/carpet/purple,/area/surface/tyr/eclipse_stronghold)
|
||||||
"cs" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany)
|
"cs" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany)
|
||||||
"ct" = (/obj/structure/table/wooden_reinforced,/obj/item/storage/bible,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/northern_wilderness)
|
"ct" = (/obj/structure/table/wooden_reinforced,/obj/item/storage/bible,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/town_hall)
|
||||||
"cu" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA)
|
"cu" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA)
|
||||||
"cv" = (/obj/effect/floor_decal/corner/lime/border{dir = 6},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"cv" = (/obj/effect/floor_decal/corner/lime/border{dir = 6},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"cy" = (/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"cy" = (/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"cz" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"cz" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"cB" = (/obj/effect/floor_decal/corner/yellow/bordercorner,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"cB" = (/obj/effect/floor_decal/corner/yellow/bordercorner,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"cD" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/table/standard,/obj/machinery/chemical_dispenser/biochemistry/full,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb)
|
"cD" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/table/standard,/obj/machinery/chemical_dispenser/biochemistry/full,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb)
|
||||||
"cG" = (/obj/structure/bed/chair/bay/chair/padded/red/bignest,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/northern_wilderness)
|
"cG" = (/obj/structure/bed/chair/bay/chair/padded/red/bignest,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/town_hall)
|
||||||
"cH" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB)
|
"cH" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB)
|
||||||
"cI" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 1},/obj/random/maintenance/clean,/obj/random/mainttoyloot/nofail,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage)
|
"cI" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 1},/obj/random/maintenance/clean,/obj/random/mainttoyloot/nofail,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage)
|
||||||
"cJ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe)
|
"cJ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe)
|
||||||
@@ -84,19 +84,19 @@
|
|||||||
"cL" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/table/standard,/obj/machinery/chemical_dispenser/full,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb)
|
"cL" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/table/standard,/obj/machinery/chemical_dispenser/full,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb)
|
||||||
"cM" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/mob/living/simple_mob/vore/spacecritter/solarray/galaxyray,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel)
|
"cM" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/mob/living/simple_mob/vore/spacecritter/solarray/galaxyray,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel)
|
||||||
"cO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"cO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"cP" = (/obj/item/gun/energy/curse_tyrshotgun,/obj/item/clothing/head/helmet/alien,/obj/item/clothing/suit/armor/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"cP" = (/obj/item/gun/energy/curse_tyrshotgun,/obj/structure/table/rack,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"cR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA)
|
"cR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA)
|
||||||
"cT" = (/obj/item/prop/alien/prototype,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"cT" = (/obj/item/prop/alien/prototype,/obj/structure/table/rack,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"cU" = (/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
"cU" = (/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
||||||
"cV" = (/obj/machinery/door/airlock/hatch,/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageA)
|
"cV" = (/obj/machinery/door/airlock/hatch,/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageA)
|
||||||
"cY" = (/obj/item/gun/energy/energyballchain,/obj/item/holosign_creator/forcewand,/obj/item/holosign_creator/forcewand,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"cY" = (/obj/item/gun/energy/energyballchain,/obj/item/holosign_creator/forcewand,/obj/item/holosign_creator/forcewand,/obj/structure/table/rack,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"cZ" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom)
|
"cZ" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom)
|
||||||
"da" = (/obj/effect/floor_decal/corner/orange/border{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"da" = (/obj/effect/floor_decal/corner/orange/border{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"dd" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom)
|
"dd" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom)
|
||||||
"de" = (/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/docks)
|
"de" = (/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/docks)
|
||||||
"df" = (/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/docks)
|
"df" = (/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/docks)
|
||||||
"dg" = (/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold)
|
"dg" = (/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold)
|
||||||
"dh" = (/obj/item/clothing/head/helmet/alien,/obj/item/clothing/suit/armor/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"dh" = (/obj/item/rig/ch/tyrprecursor,/obj/item/rig/ch/tyrprecursor,/obj/structure/table/rack,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"di" = (/obj/machinery/door/blast/puzzle/tyrdoor{id = "tyrbonuspuzzlesix"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"di" = (/obj/machinery/door/blast/puzzle/tyrdoor{id = "tyrbonuspuzzlesix"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"dj" = (/obj/structure/table/steel,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/item/xenobio/monkey_gun,/obj/effect/floor_decal/corner/purple/diagonal,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB)
|
"dj" = (/obj/structure/table/steel,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/item/xenobio/monkey_gun,/obj/effect/floor_decal/corner/purple/diagonal,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB)
|
||||||
"dk" = (/obj/machinery/door/blast/puzzle/tyrdoor{id = "tyrbonuspuzzlefive"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"dk" = (/obj/machinery/door/blast/puzzle/tyrdoor{id = "tyrbonuspuzzlefive"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
@@ -106,7 +106,7 @@
|
|||||||
"dp" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA)
|
"dp" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA)
|
||||||
"dr" = (/obj/random/vendordrink,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold)
|
"dr" = (/obj/random/vendordrink,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold)
|
||||||
"ds" = (/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"ds" = (/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"dt" = (/obj/item/holosign_creator/forcewand,/obj/item/holosign_creator/forcewand,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"dt" = (/obj/item/holosign_creator/forcewand,/obj/item/holosign_creator/forcewand,/obj/structure/table/rack,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"du" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold)
|
"du" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold)
|
||||||
"dv" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks)
|
"dv" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks)
|
||||||
"dw" = (/obj/effect/shuttle_landmark{base_area = /area/surface/tyr/northern_wilderness; base_turf = /turf/simulated/floor/outdoors/desert_planet/sand/tyr; landmark_tag = "valley_w"; name = "Anomalous Tyr Drop Site"},/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/northern_wilderness)
|
"dw" = (/obj/effect/shuttle_landmark{base_area = /area/surface/tyr/northern_wilderness; base_turf = /turf/simulated/floor/outdoors/desert_planet/sand/tyr; landmark_tag = "valley_w"; name = "Anomalous Tyr Drop Site"},/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/northern_wilderness)
|
||||||
@@ -114,7 +114,7 @@
|
|||||||
"dB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
"dB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
||||||
"dE" = (/obj/structure/table/steel,/obj/item/storage/box/donut,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold)
|
"dE" = (/obj/structure/table/steel,/obj/item/storage/box/donut,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold)
|
||||||
"dF" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"dF" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"dH" = (/obj/machinery/optable,/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"dH" = (/obj/machinery/optable,/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"dL" = (/obj/effect/zone_divider,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe)
|
"dL" = (/obj/effect/zone_divider,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe)
|
||||||
"dM" = (/obj/machinery/seed_extractor,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe)
|
"dM" = (/obj/machinery/seed_extractor,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe)
|
||||||
"dO" = (/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold)
|
"dO" = (/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -175,7 +175,7 @@
|
|||||||
"fp" = (/obj/machinery/light/small{dir = 8},/obj/structure/table/standard,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks)
|
"fp" = (/obj/machinery/light/small{dir = 8},/obj/structure/table/standard,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks)
|
||||||
"fr" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold)
|
"fr" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold)
|
||||||
"ft" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"ft" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"fu" = (/obj/item/prop/alien/prototype,/obj/item/pickaxe/diamonddrill/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"fu" = (/obj/item/prop/alien/prototype,/obj/item/pickaxe/diamonddrill/alien,/obj/structure/table/rack,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"fw" = (/obj/machinery/vending/fooddessert,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom)
|
"fw" = (/obj/machinery/vending/fooddessert,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom)
|
||||||
"fx" = (/obj/machinery/door/blast/puzzle/tyrdoor{id = "tyrbonuspuzzlefour"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"fx" = (/obj/machinery/door/blast/puzzle/tyrdoor{id = "tyrbonuspuzzlefour"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"fy" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel)
|
"fy" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel)
|
||||||
@@ -192,7 +192,7 @@
|
|||||||
"fP" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/curtain/medical,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice)
|
"fP" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/curtain/medical,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice)
|
||||||
"fQ" = (/obj/machinery/door/blast/puzzle/tyrdoor{id = "tyrbonuspuzzlethree"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"fQ" = (/obj/machinery/door/blast/puzzle/tyrdoor{id = "tyrbonuspuzzlethree"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"fR" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/teslastorage)
|
"fR" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/teslastorage)
|
||||||
"fS" = (/obj/item/prop/alien/prototype,/obj/item/weldingtool/experimental/hybrid/alien,/obj/item/weldingtool/experimental/hybrid/alien,/obj/item/tool/wirecutters/hybrid/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"fS" = (/obj/item/prop/alien/prototype,/obj/item/weldingtool/experimental/hybrid/alien,/obj/item/weldingtool/experimental/hybrid/alien,/obj/item/tool/wirecutters/hybrid/alien,/obj/structure/table/rack,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"fT" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"fT" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"fY" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
"fY" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
||||||
"ga" = (/obj/structure/table/standard,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/head/bio_hood/anomaly,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
"ga" = (/obj/structure/table/standard,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/head/bio_hood/anomaly,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -211,7 +211,7 @@
|
|||||||
"gs" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics)
|
"gs" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics)
|
||||||
"gt" = (/obj/effect/zone_divider,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/viro)
|
"gt" = (/obj/effect/zone_divider,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/viro)
|
||||||
"gw" = (/obj/structure/table/standard,/obj/item/storage/pill_bottle/adranol{pixel_x = -6; pixel_y = 1},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro)
|
"gw" = (/obj/structure/table/standard,/obj/item/storage/pill_bottle/adranol{pixel_x = -6; pixel_y = 1},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro)
|
||||||
"gy" = (/obj/item/prop/alien/prototype,/obj/item/ammo_casing/microbattery/medical/normalsize,/obj/item/ammo_casing/microbattery/medical/normalsize,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"gy" = (/obj/item/prop/alien/prototype,/obj/item/ammo_casing/microbattery/medical/normalsize,/obj/item/ammo_casing/microbattery/medical/normalsize,/obj/structure/table/rack,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"gz" = (/obj/machinery/computer/scan_consolenew{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics)
|
"gz" = (/obj/machinery/computer/scan_consolenew{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics)
|
||||||
"gA" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold)
|
"gA" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold)
|
||||||
"gB" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 8},/obj/random/maintenance/medical,/obj/random/maintenance/research,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage)
|
"gB" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 8},/obj/random/maintenance/medical,/obj/random/maintenance/research,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage)
|
||||||
@@ -255,7 +255,7 @@
|
|||||||
"hB" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold)
|
"hB" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold)
|
||||||
"hF" = (/obj/structure/window/plastitanium,/obj/structure/grille,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
"hF" = (/obj/structure/window/plastitanium,/obj/structure/grille,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
||||||
"hG" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = -32; pixel_y = -5},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks)
|
"hG" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = -32; pixel_y = -5},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks)
|
||||||
"hH" = (/obj/item/prop/alien/prototype,/obj/item/melee/energy/sword/dualsaber,/obj/item/melee/energy/sword/dualsaber,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"hH" = (/obj/item/prop/alien/prototype,/obj/item/melee/energy/sword/dualsaber,/obj/item/melee/energy/sword/dualsaber,/obj/structure/table/rack,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"hM" = (/obj/structure/bed/chair/bay/chair/padded{dir = 1},/obj/machinery/light/small,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks)
|
"hM" = (/obj/structure/bed/chair/bay/chair/padded{dir = 1},/obj/machinery/light/small,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks)
|
||||||
"hO" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb)
|
"hO" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb)
|
||||||
"hQ" = (/obj/structure/window/plastitanium{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
"hQ" = (/obj/structure/window/plastitanium{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
||||||
@@ -276,7 +276,7 @@
|
|||||||
"io" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"io" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"ip" = (/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/poolroom)
|
"ip" = (/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/poolroom)
|
||||||
"iq" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold)
|
"iq" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold)
|
||||||
"ir" = (/turf/simulated/wall/r_lead,/area/surface/tyr/northern_wilderness)
|
"ir" = (/turf/simulated/wall/r_lead,/area/surface/tyr/huntery)
|
||||||
"iu" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA)
|
"iu" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA)
|
||||||
"iv" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers)
|
"iv" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers)
|
||||||
"iw" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/poolroom)
|
"iw" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/poolroom)
|
||||||
@@ -287,7 +287,7 @@
|
|||||||
"iB" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium,/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageB)
|
"iB" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium,/obj/structure/curtain/black,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageB)
|
||||||
"iC" = (/mob/living/simple_mob/mechanical/mecha/eclipse/engimecha,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold)
|
"iC" = (/mob/living/simple_mob/mechanical/mecha/eclipse/engimecha,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold)
|
||||||
"iD" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers)
|
"iD" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers)
|
||||||
"iF" = (/obj/item/pickaxe/diamonddrill/alien,/obj/item/pickaxe/diamonddrill/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"iF" = (/obj/item/pickaxe/diamonddrill/alien,/obj/item/pickaxe/diamonddrill/alien,/obj/structure/table/rack,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"iG" = (/mob/living/simple_mob/slime,/obj/machinery/light/small,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/slimeresearch)
|
"iG" = (/mob/living/simple_mob/slime,/obj/machinery/light/small,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/slimeresearch)
|
||||||
"iI" = (/obj/machinery/shower{dir = 1},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers)
|
"iI" = (/obj/machinery/shower{dir = 1},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers)
|
||||||
"iJ" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold)
|
"iJ" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -306,7 +306,7 @@
|
|||||||
"iZ" = (/obj/structure/bed/pillowpile/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/engihead)
|
"iZ" = (/obj/structure/bed/pillowpile/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold/engihead)
|
||||||
"jb" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC)
|
"jb" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC)
|
||||||
"jc" = (/obj/effect/zone_divider,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"jc" = (/obj/effect/zone_divider,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"jd" = (/obj/structure/table/wooden_reinforced,/obj/item/flame/candle/everburn,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/northern_wilderness)
|
"jd" = (/obj/structure/table/wooden_reinforced,/obj/item/flame/candle/everburn,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/town_hall)
|
||||||
"je" = (/obj/item/clothing/head/wizard,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold)
|
"je" = (/obj/item/clothing/head/wizard,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold)
|
||||||
"jg" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold)
|
"jg" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold)
|
||||||
"jh" = (/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold)
|
"jh" = (/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -323,11 +323,11 @@
|
|||||||
"jx" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold)
|
"jx" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold)
|
||||||
"jy" = (/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/structure/table/rack/shelf,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentB)
|
"jy" = (/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/structure/table/rack/shelf,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentB)
|
||||||
"jz" = (/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
"jz" = (/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
||||||
"jC" = (/obj/item/gun/energy/curse_lasershooter,/obj/item/pickaxe/diamonddrill/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"jC" = (/obj/item/gun/energy/curse_lasershooter,/obj/item/pickaxe/diamonddrill/alien,/obj/structure/table/rack,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"jD" = (/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/northern_wilderness)
|
"jD" = (/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/northern_wilderness)
|
||||||
"jE" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold)
|
"jE" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold)
|
||||||
"jF" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"jF" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"jG" = (/obj/item/gun/energy/curse_blaster,/obj/item/tool/screwdriver/hybrid/alien,/obj/item/tool/screwdriver/hybrid/alien,/obj/item/tool/wirecutters/hybrid/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"jG" = (/obj/item/gun/energy/curse_blaster,/obj/item/tool/screwdriver/hybrid/alien,/obj/item/tool/screwdriver/hybrid/alien,/obj/item/tool/wirecutters/hybrid/alien,/obj/structure/table/rack,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"jK" = (/obj/structure/toilet/prison{dir = 4},/obj/structure/window/plastitanium,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
"jK" = (/obj/structure/toilet/prison{dir = 4},/obj/structure/window/plastitanium,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
||||||
"jL" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers)
|
"jL" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers)
|
||||||
"jM" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentB)
|
"jM" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentB)
|
||||||
@@ -346,7 +346,7 @@
|
|||||||
"ke" = (/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"ke" = (/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"kf" = (/obj/structure/closet/toolcloset,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool/power,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage)
|
"kf" = (/obj/structure/closet/toolcloset,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool/power,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage)
|
||||||
"kg" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/poolroom)
|
"kg" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/poolroom)
|
||||||
"kh" = (/obj/item/tool/crowbar/hybrid/alien,/obj/item/tool/crowbar/hybrid/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"kh" = (/obj/item/tool/crowbar/hybrid/alien,/obj/item/tool/crowbar/hybrid/alien,/obj/structure/table/rack,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"ki" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/machinery/door/airlock/silver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens)
|
"ki" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/machinery/door/airlock/silver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens)
|
||||||
"kj" = (/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"kj" = (/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"kn" = (/obj/structure/curtain,/mob/living/simple_mob/humanoid/eclipse/head/medical,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice)
|
"kn" = (/obj/structure/curtain,/mob/living/simple_mob/humanoid/eclipse/head/medical,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice)
|
||||||
@@ -399,7 +399,7 @@
|
|||||||
"lG" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks)
|
"lG" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks)
|
||||||
"lH" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"lH" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"lI" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryB)
|
"lI" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryB)
|
||||||
"lK" = (/obj/structure/inflatable/door,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/northern_wilderness)
|
"lK" = (/obj/structure/inflatable/door,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/town_hall)
|
||||||
"lL" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany)
|
"lL" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany)
|
||||||
"lN" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/engihead)
|
"lN" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/engihead)
|
||||||
"lO" = (/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/cafe)
|
"lO" = (/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/cafe)
|
||||||
@@ -444,13 +444,13 @@
|
|||||||
"mR" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany)
|
"mR" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany)
|
||||||
"mU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
"mU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
||||||
"mX" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold)
|
"mX" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold)
|
||||||
"mY" = (/obj/item/ammo_casing/microbattery/medical/haste,/obj/item/ammo_casing/microbattery/medical/haste,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"mY" = (/obj/item/ammo_casing/microbattery/medical/haste,/obj/item/ammo_casing/microbattery/medical/haste,/obj/structure/table/rack,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"mZ" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"mZ" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"na" = (/obj/effect/floor_decal/corner/pink{dir = 8},/obj/effect/floor_decal/corner/red{dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/surgery)
|
"na" = (/obj/effect/floor_decal/corner/pink{dir = 8},/obj/effect/floor_decal/corner/red{dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/surgery)
|
||||||
"nb" = (/obj/machinery/chemical_dispenser/xenoflora/full,/obj/structure/table/standard,/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany)
|
"nb" = (/obj/machinery/chemical_dispenser/xenoflora/full,/obj/structure/table/standard,/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany)
|
||||||
"nc" = (/obj/item/ammo_casing/microbattery/medical/grow,/obj/item/ammo_casing/microbattery/medical/grow,/obj/item/ammo_casing/microbattery/medical/shrink,/obj/item/ammo_casing/microbattery/medical/shrink,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"nc" = (/obj/item/ammo_casing/microbattery/medical/grow,/obj/item/ammo_casing/microbattery/medical/grow,/obj/item/ammo_casing/microbattery/medical/shrink,/obj/item/ammo_casing/microbattery/medical/shrink,/obj/structure/table/rack,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"ne" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/bed/double,/obj/item/bedsheet/hopdouble,/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryB)
|
"ne" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/bed/double,/obj/item/bedsheet/hopdouble,/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryB)
|
||||||
"nf" = (/obj/item/melee/energy/sword/dualsaber,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"nf" = (/obj/item/melee/energy/sword/dualsaber,/obj/structure/table/rack,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
||||||
"ng" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/surface/tyr/eclipse_stronghold/poolroom)
|
"ng" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/surface/tyr/eclipse_stronghold/poolroom)
|
||||||
"ni" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/seed_extractor,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany)
|
"ni" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/seed_extractor,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany)
|
||||||
"nj" = (/obj/structure/table/standard,/obj/item/storage/box/monkeycubes/neaeracubes,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold)
|
"nj" = (/obj/structure/table/standard,/obj/item/storage/box/monkeycubes/neaeracubes,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -458,7 +458,7 @@
|
|||||||
"nn" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"nn" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"np" = (/obj/effect/shuttle_landmark{base_area = /area/surface/tyr/town; base_turf = /turf/simulated/floor/outdoors/desert_planet/sand/tyr; landmark_tag = "valley_e"; name = "Anomalous Tyr Drop Site"},/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/northern_wilderness)
|
"np" = (/obj/effect/shuttle_landmark{base_area = /area/surface/tyr/town; base_turf = /turf/simulated/floor/outdoors/desert_planet/sand/tyr; landmark_tag = "valley_e"; name = "Anomalous Tyr Drop Site"},/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/northern_wilderness)
|
||||||
"nu" = (/obj/machinery/shieldwallgen,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold)
|
"nu" = (/obj/machinery/shieldwallgen,/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold)
|
||||||
"nv" = (/obj/effect/zone_divider,/turf/simulated/wall/shull,/area/surface/tyr/northern_wilderness)
|
"nv" = (/obj/effect/zone_divider,/turf/simulated/wall/shull,/area/surface/tyr/huntery)
|
||||||
"nx" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/item/toy/plushie,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA)
|
"nx" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/item/toy/plushie,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA)
|
||||||
"ny" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/distillery)
|
"ny" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/distillery)
|
||||||
"nz" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold)
|
"nz" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -467,11 +467,11 @@
|
|||||||
"nG" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"nG" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"nH" = (/obj/structure/table/standard,/obj/item/storage/fancy/vials,/obj/item/storage/fancy/vials,/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro)
|
"nH" = (/obj/structure/table/standard,/obj/item/storage/fancy/vials,/obj/item/storage/fancy/vials,/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro)
|
||||||
"nJ" = (/obj/effect/floor_decal/corner/pink{dir = 8},/obj/effect/floor_decal/corner/red{dir = 4},/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/surgery)
|
"nJ" = (/obj/effect/floor_decal/corner/pink{dir = 8},/obj/effect/floor_decal/corner/red{dir = 4},/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/surgery)
|
||||||
"nK" = (/obj/machinery/door/airlock/hatch{req_one_access = null},/obj/structure/fans/hardlight,/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"nK" = (/obj/machinery/door/airlock/hatch{req_one_access = null},/obj/structure/fans/hardlight,/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"nL" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe)
|
"nL" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe)
|
||||||
"nM" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"nM" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"nO" = (/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/secoffice)
|
"nO" = (/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/secoffice)
|
||||||
"nP" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"nP" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"nQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash)
|
"nQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash)
|
||||||
"nS" = (/obj/machinery/power/tesla_coil,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage)
|
"nS" = (/obj/machinery/power/tesla_coil,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage)
|
||||||
"nT" = (/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
"nT" = (/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
||||||
@@ -500,7 +500,7 @@
|
|||||||
"oA" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/machinery/computer,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks)
|
"oA" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/machinery/computer,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks)
|
||||||
"oC" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace)
|
"oC" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace)
|
||||||
"oD" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold)
|
"oD" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold)
|
||||||
"oE" = (/obj/structure/inflatable/door,/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/northern_wilderness)
|
"oE" = (/obj/structure/inflatable/door,/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/mining_depot)
|
||||||
"oF" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"oF" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"oH" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold)
|
"oH" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold)
|
||||||
"oI" = (/obj/effect/zone_divider,/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/precursorruins/finale)
|
"oI" = (/obj/effect/zone_divider,/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/precursorruins/finale)
|
||||||
@@ -510,7 +510,7 @@
|
|||||||
"oN" = (/obj/effect/floor_decal/corner/pink{dir = 8},/obj/effect/floor_decal/corner/red{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/surgery)
|
"oN" = (/obj/effect/floor_decal/corner/pink{dir = 8},/obj/effect/floor_decal/corner/red{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/surgery)
|
||||||
"oP" = (/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/obj/structure/grille,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
"oP" = (/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/obj/structure/grille,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
||||||
"oQ" = (/obj/structure/filingcabinet,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/filestorage)
|
"oQ" = (/obj/structure/filingcabinet,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet,/area/surface/tyr/eclipse_stronghold/filestorage)
|
||||||
"oR" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"oR" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"oS" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/sink{pixel_y = 16},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice)
|
"oS" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/sink{pixel_y = 16},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice)
|
||||||
"oT" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/botany/extractor,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany)
|
"oT" = (/obj/effect/floor_decal/corner/green{dir = 1},/obj/effect/floor_decal/corner/lime,/obj/effect/floor_decal/corner/white{dir = 8},/obj/machinery/botany/extractor,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/alienbotany)
|
||||||
"oU" = (/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold)
|
"oU" = (/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -521,7 +521,7 @@
|
|||||||
"oZ" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"oZ" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"pb" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 5},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold)
|
"pb" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 5},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold)
|
||||||
"pc" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC)
|
"pc" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC)
|
||||||
"pd" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"pd" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"pe" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"pe" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"pg" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
"pg" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
||||||
"ph" = (/obj/effect/floor_decal/corner/orange/border{dir = 10},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"ph" = (/obj/effect/floor_decal/corner/orange/border{dir = 10},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -550,7 +550,7 @@
|
|||||||
"pS" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace)
|
"pS" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace)
|
||||||
"pT" = (/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics)
|
"pT" = (/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/genetics)
|
||||||
"pU" = (/obj/structure/cable/orange{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks)
|
"pU" = (/obj/structure/cable/orange{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/docks)
|
||||||
"pV" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/eastleft,/obj/item/clothing/suit/space/void/salvagecorp_shipbreaker,/obj/item/clothing/head/helmet/space/void/salvagecorp_shipbreaker,/obj/item/flashlight/maglight,/obj/item/pickaxe/plasmacutter,/obj/item/gun/energy/mininglaser,/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"pV" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/eastleft,/obj/item/clothing/suit/space/void/salvagecorp_shipbreaker,/obj/item/clothing/head/helmet/space/void/salvagecorp_shipbreaker,/obj/item/flashlight/maglight,/obj/item/pickaxe/plasmacutter,/obj/item/gun/energy/mininglaser,/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"pW" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA)
|
"pW" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA)
|
||||||
"pY" = (/obj/machinery/light/small,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold)
|
"pY" = (/obj/machinery/light/small,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold)
|
||||||
"pZ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom)
|
"pZ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom)
|
||||||
@@ -565,7 +565,7 @@
|
|||||||
"ql" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/meatstorage)
|
"ql" = (/obj/effect/floor_decal/corner_steel_grid/diagonal,/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/meatstorage)
|
||||||
"qm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"qm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"qo" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"qo" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"qp" = (/obj/machinery/suit_cycler/refit_only,/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"qp" = (/obj/machinery/suit_cycler/refit_only,/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"qs" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens)
|
"qs" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens)
|
||||||
"qw" = (/obj/structure/closet,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/secoffice)
|
"qw" = (/obj/structure/closet,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/secoffice)
|
||||||
"qx" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
"qx" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
||||||
@@ -589,7 +589,7 @@
|
|||||||
"qY" = (/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"qY" = (/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"qZ" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 1},/obj/random/maintenance/medical,/obj/random/mega_nukies,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage)
|
"qZ" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 1},/obj/random/maintenance/medical,/obj/random/mega_nukies,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage)
|
||||||
"rc" = (/obj/effect/zone_divider,/obj/structure/window/plastitanium,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro)
|
"rc" = (/obj/effect/zone_divider,/obj/structure/window/plastitanium,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro)
|
||||||
"rd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/zone_divider,/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"rd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/zone_divider,/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"re" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom)
|
"re" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom)
|
||||||
"rf" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"rf" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"rg" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"rg" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -599,7 +599,7 @@
|
|||||||
"rl" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB)
|
"rl" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB)
|
||||||
"rn" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemista)
|
"rn" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemista)
|
||||||
"ro" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/solar/nuclear,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe)
|
"ro" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/solar/nuclear,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe)
|
||||||
"rp" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/westleft,/obj/item/clothing/suit/space/void/salvagecorp_shipbreaker,/obj/item/clothing/head/helmet/space/void/salvagecorp_shipbreaker,/obj/item/flashlight/maglight,/obj/item/pickaxe/plasmacutter,/obj/item/gun/energy/mininglaser,/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"rp" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/westleft,/obj/item/clothing/suit/space/void/salvagecorp_shipbreaker,/obj/item/clothing/head/helmet/space/void/salvagecorp_shipbreaker,/obj/item/flashlight/maglight,/obj/item/pickaxe/plasmacutter,/obj/item/gun/energy/mininglaser,/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"rq" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/item/toy/plushie,/obj/item/gun/energy/sizegun,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA)
|
"rq" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/item/toy/plushie,/obj/item/gun/energy/sizegun,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA)
|
||||||
"rr" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/researchleadoffice)
|
"rr" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/researchleadoffice)
|
||||||
"rs" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe)
|
"rs" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe)
|
||||||
@@ -679,9 +679,9 @@
|
|||||||
"tz" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentB)
|
"tz" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentB)
|
||||||
"tB" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb)
|
"tB" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb)
|
||||||
"tC" = (/obj/effect/floor_decal/corner/black,/obj/effect/floor_decal/corner/grey{dir = 1},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/morgue)
|
"tC" = (/obj/effect/floor_decal/corner/black,/obj/effect/floor_decal/corner/grey{dir = 1},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/morgue)
|
||||||
"tH" = (/mob/living/simple_mob/animal/tyr/mineral_ants/queen,/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/northern_wilderness)
|
"tH" = (/mob/living/simple_mob/animal/tyr/mineral_ants/queen,/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/mining_depot)
|
||||||
"tI" = (/obj/effect/floor_decal/corner/orange/bordercorner{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"tI" = (/obj/effect/floor_decal/corner/orange/bordercorner{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"tJ" = (/obj/effect/landmark{name = "JoinLateTyrVillage"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"tJ" = (/obj/effect/landmark{name = "JoinLateTyrVillage"},/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"tL" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/docks)
|
"tL" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/docks)
|
||||||
"tM" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
"tM" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
||||||
"tN" = (/obj/machinery/light/small{dir = 8},/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold)
|
"tN" = (/obj/machinery/light/small{dir = 8},/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -691,7 +691,7 @@
|
|||||||
"tS" = (/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice)
|
"tS" = (/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice)
|
||||||
"tT" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/docks)
|
"tT" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/docks)
|
||||||
"tU" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/mob/living/simple_mob/humanoid/eclipse/solar/medicalsquish,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery)
|
"tU" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/mob/living/simple_mob/humanoid/eclipse/solar/medicalsquish,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery)
|
||||||
"tW" = (/obj/structure/table/standard,/obj/item/radio,/obj/item/radio,/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"tW" = (/obj/structure/table/standard,/obj/item/radio,/obj/item/radio,/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"tX" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/item/reagent_containers/glass/beaker/large,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemista)
|
"tX" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/table/standard,/obj/item/reagent_containers/glass/beaker/large,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemista)
|
||||||
"tY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 4},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/docks)
|
"tY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 4},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/docks)
|
||||||
"ub" = (/obj/machinery/light/small{dir = 8},/obj/structure/table/steel,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB)
|
"ub" = (/obj/machinery/light/small{dir = 8},/obj/structure/table/steel,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB)
|
||||||
@@ -714,9 +714,9 @@
|
|||||||
"uB" = (/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 8},/obj/structure/grille,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
"uB" = (/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 8},/obj/structure/grille,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
||||||
"uC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/docks)
|
"uC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/docks)
|
||||||
"uD" = (/turf/simulated/floor/tiled/steel_ridged,/area/surface/tyr/eclipse_stronghold/poolroom)
|
"uD" = (/turf/simulated/floor/tiled/steel_ridged,/area/surface/tyr/eclipse_stronghold/poolroom)
|
||||||
"uF" = (/obj/machinery/power/rtg/fake_reactor,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"uF" = (/obj/machinery/power/rtg/fake_reactor,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"uH" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/antroom)
|
"uH" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/antroom)
|
||||||
"uK" = (/obj/structure/bed/chair/bay/chair/padded/red/bignest,/obj/effect/landmark{name = "JoinLateTyrVillage"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"uK" = (/obj/structure/bed/chair/bay/chair/padded/red/bignest,/obj/effect/landmark{name = "JoinLateTyrVillage"},/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"uL" = (/obj/structure/closet/toolcloset,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage)
|
"uL" = (/obj/structure/closet/toolcloset,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage)
|
||||||
"uM" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentA)
|
"uM" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentA)
|
||||||
"uN" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"uN" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -731,8 +731,8 @@
|
|||||||
"uY" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold)
|
"uY" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold)
|
||||||
"uZ" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold)
|
"uZ" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold)
|
||||||
"va" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery)
|
"va" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/distillery)
|
||||||
"vb" = (/obj/machinery/cryopod/robot/door/gateway/quiet,/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"vb" = (/obj/machinery/cryopod/robot/door/gateway/quiet,/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"vc" = (/obj/machinery/computer/cryopod/gateway{pixel_x = 32},/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"vc" = (/obj/machinery/computer/cryopod/gateway{pixel_x = 32},/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"vd" = (/obj/machinery/atmospherics/unary/engine{dir = 1},/turf/simulated/shuttle/plating/airless/carry,/area/surface/tyr/eclipse_stronghold/docks)
|
"vd" = (/obj/machinery/atmospherics/unary/engine{dir = 1},/turf/simulated/shuttle/plating/airless/carry,/area/surface/tyr/eclipse_stronghold/docks)
|
||||||
"ve" = (/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"ve" = (/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"vf" = (/obj/item/shovel/spade,/obj/item/shovel/spade,/obj/structure/table/standard,/obj/effect/floor_decal/corner/lime/diagonal,/obj/item/seeds/random,/obj/item/seeds/random,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe)
|
"vf" = (/obj/item/shovel/spade,/obj/item/shovel/spade,/obj/structure/table/standard,/obj/effect/floor_decal/corner/lime/diagonal,/obj/item/seeds/random,/obj/item/seeds/random,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/cafe)
|
||||||
@@ -754,13 +754,13 @@
|
|||||||
"vH" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 4},/obj/random/maintenance/morestuff,/obj/random/maintenance/security,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage)
|
"vH" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 4},/obj/random/maintenance/morestuff,/obj/random/maintenance/security,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage)
|
||||||
"vI" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
"vI" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
||||||
"vJ" = (/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
"vJ" = (/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
||||||
"vK" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"vK" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"vL" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"vL" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"vM" = (/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/obj/structure/grille,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
"vM" = (/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/obj/structure/grille,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
||||||
"vN" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"vN" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"vO" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA)
|
"vO" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA)
|
||||||
"vQ" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light/small,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
"vQ" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light/small,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
||||||
"vR" = (/obj/structure/table/standard,/obj/item/storage/firstaid/surgery,/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"vR" = (/obj/structure/table/standard,/obj/item/storage/firstaid/surgery,/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"vT" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA)
|
"vT" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA)
|
||||||
"vX" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/machinery/light/small,/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold)
|
"vX" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/machinery/light/small,/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold)
|
||||||
"vZ" = (/obj/machinery/light/small,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold)
|
"vZ" = (/obj/machinery/light/small,/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -780,12 +780,12 @@
|
|||||||
"wC" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold)
|
"wC" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold)
|
||||||
"wD" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"wD" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"wF" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold)
|
"wF" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold)
|
||||||
"wH" = (/obj/machinery/door/airlock/hatch,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"wH" = (/obj/machinery/door/airlock/hatch,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"wI" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 10},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel)
|
"wI" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 10},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel)
|
||||||
"wK" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace)
|
"wK" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/furnace)
|
||||||
"wM" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
"wM" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
||||||
"wN" = (/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers)
|
"wN" = (/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/showers)
|
||||||
"wO" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"wO" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"wP" = (/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/servicesquish,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
"wP" = (/obj/effect/floor_decal/corner/grey/diagonal,/mob/living/simple_mob/humanoid/eclipse/lunar/servicesquish,/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
||||||
"wS" = (/obj/machinery/chemical_dispenser/bar_coffee/full,/obj/structure/table/hardwoodtable,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/cafe)
|
"wS" = (/obj/machinery/chemical_dispenser/bar_coffee/full,/obj/structure/table/hardwoodtable,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/cafe)
|
||||||
"wU" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool/power,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage)
|
"wU" = (/obj/structure/closet/toolcloset,/obj/structure/window/plastitanium{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool/power,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage)
|
||||||
@@ -793,7 +793,7 @@
|
|||||||
"wX" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb)
|
"wX" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/effect/floor_decal/corner/blue/diagonal,/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/chemistb)
|
||||||
"wY" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/eclipse_stronghold/sectorfinale)
|
"wY" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/eclipse_stronghold/sectorfinale)
|
||||||
"wZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB)
|
"wZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB)
|
||||||
"xb" = (/obj/machinery/power/rtg/fake_reactor,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/effect/zone_divider,/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"xb" = (/obj/machinery/power/rtg/fake_reactor,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/effect/zone_divider,/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"xd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC)
|
"xd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorC)
|
||||||
"xf" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold)
|
"xf" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold)
|
||||||
"xh" = (/obj/effect/floor_decal/corner/orange/bordercorner,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"xh" = (/obj/effect/floor_decal/corner/orange/bordercorner,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -805,9 +805,9 @@
|
|||||||
"xq" = (/obj/structure/table/standard,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/head/bio_hood/anomaly,/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold)
|
"xq" = (/obj/structure/table/standard,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/head/bio_hood/anomaly,/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold)
|
||||||
"xr" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold)
|
"xr" = (/obj/effect/floor_decal/corner/blue/diagonal,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/old_tile/blue,/area/surface/tyr/eclipse_stronghold)
|
||||||
"xs" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"xs" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"xu" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"xu" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"xv" = (/obj/structure/table/standard,/obj/item/storage/box/monkeycubes/farwacubes,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold)
|
"xv" = (/obj/structure/table/standard,/obj/item/storage/box/monkeycubes/farwacubes,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold)
|
||||||
"xx" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"xx" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"xz" = (/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 4},/obj/structure/grille,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
"xz" = (/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 4},/obj/structure/grille,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
||||||
"xA" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"xA" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"xB" = (/mob/living/simple_mob/humanoid/eclipse/solar/nuclear,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold)
|
"xB" = (/mob/living/simple_mob/humanoid/eclipse/solar/nuclear,/turf/simulated/floor/tiled/old_tile/beige,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -838,15 +838,15 @@
|
|||||||
"yl" = (/obj/effect/floor_decal/corner/orange/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"yl" = (/obj/effect/floor_decal/corner/orange/border{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"ym" = (/obj/structure/table/standard,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold)
|
"ym" = (/obj/structure/table/standard,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold)
|
||||||
"yn" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
"yn" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
||||||
"yo" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"yo" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"yp" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold)
|
"yp" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold)
|
||||||
"yq" = (/obj/structure/flora/tyr/lilly,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/northern_wilderness)
|
"yq" = (/obj/structure/flora/tyr/lilly,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/northern_wilderness)
|
||||||
"yr" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/docks)
|
"yr" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/docks)
|
||||||
"ys" = (/obj/machinery/power/rtg/fake_reactor,/obj/structure/cable,/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"ys" = (/obj/machinery/power/rtg/fake_reactor,/obj/structure/cable,/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"yt" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash)
|
"yt" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/stash)
|
||||||
"yu" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"yu" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"yw" = (/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold)
|
"yw" = (/turf/simulated/floor/carpet/oracarpet,/area/surface/tyr/eclipse_stronghold)
|
||||||
"yx" = (/obj/structure/table/standard,/obj/item/stack/medical/advanced/bruise_pack,/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"yx" = (/obj/structure/table/standard,/obj/item/stack/medical/advanced/bruise_pack,/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"yy" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"yy" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"yz" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold)
|
"yz" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold)
|
||||||
"yA" = (/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice)
|
"yA" = (/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/cmooffice)
|
||||||
@@ -856,7 +856,7 @@
|
|||||||
"yI" = (/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"yI" = (/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"yJ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"yJ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"yL" = (/obj/machinery/power/rtg/advanced,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA)
|
"yL" = (/obj/machinery/power/rtg/advanced,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA)
|
||||||
"yM" = (/obj/structure/table/standard,/obj/item/stack/medical/splint,/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"yM" = (/obj/structure/table/standard,/obj/item/stack/medical/splint,/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"yN" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"yN" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"yO" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"yO" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"yP" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold)
|
"yP" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -969,14 +969,14 @@
|
|||||||
"BU" = (/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/genetics)
|
"BU" = (/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/genetics)
|
||||||
"BV" = (/obj/effect/floor_decal/corner/lime/border,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"BV" = (/obj/effect/floor_decal/corner/lime/border,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"BX" = (/obj/machinery/power/tesla_coil/amplifier,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage)
|
"BX" = (/obj/machinery/power/tesla_coil/amplifier,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage)
|
||||||
"BY" = (/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"BY" = (/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"BZ" = (/obj/structure/sink{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/researchleadoffice)
|
"BZ" = (/obj/structure/sink{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/tyr/eclipse_stronghold/researchleadoffice)
|
||||||
"Ca" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/surface/tyr/eclipse_stronghold/poolroom)
|
"Ca" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/surface/tyr/eclipse_stronghold/poolroom)
|
||||||
"Cb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/cafe)
|
"Cb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/cafe)
|
||||||
"Cd" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro)
|
"Cd" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro)
|
||||||
"Ce" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice)
|
"Ce" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice)
|
||||||
"Cg" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold)
|
"Cg" = (/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold)
|
||||||
"Ch" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"Ch" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"Ci" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/door/airlock/silver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel)
|
"Ci" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/door/airlock/silver,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel)
|
||||||
"Cj" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
"Cj" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/tiled/old_tile/gray,/area/surface/tyr/eclipse_stronghold)
|
||||||
"Ck" = (/obj/machinery/light/small,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold)
|
"Ck" = (/obj/machinery/light/small,/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -1139,7 +1139,7 @@
|
|||||||
"GR" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB)
|
"GR" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageB)
|
||||||
"GS" = (/turf/simulated/floor/reinforced{nitrogen = 0; oxygen = 0; phoron = 500},/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
"GS" = (/turf/simulated/floor/reinforced{nitrogen = 0; oxygen = 0; phoron = 500},/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
||||||
"GU" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe)
|
"GU" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe)
|
||||||
"GW" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/obj/machinery/door/blast/puzzle/tyrdoor/finale,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale)
|
"GW" = (/turf/simulated/wall/stonelogs,/area/surface/tyr/mining_depot)
|
||||||
"GX" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/poolroom)
|
"GX" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/poolroom)
|
||||||
"GY" = (/obj/structure/window/plastitanium{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
"GY" = (/obj/structure/window/plastitanium{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
||||||
"GZ" = (/obj/structure/table/reinforced,/obj/item/mecha_parts/mecha_equipment/weapon/honker,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom)
|
"GZ" = (/obj/structure/table/reinforced,/obj/item/mecha_parts/mecha_equipment/weapon/honker,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom)
|
||||||
@@ -1274,7 +1274,7 @@
|
|||||||
"KX" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1},/turf/simulated/floor/reinforced{nitrogen = 500; oxygen = 0},/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
"KX" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1},/turf/simulated/floor/reinforced{nitrogen = 500; oxygen = 0},/area/surface/tyr/eclipse_stronghold/chemicalgas)
|
||||||
"KY" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA)
|
"KY" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA)
|
||||||
"La" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe)
|
"La" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/cafe)
|
||||||
"Lc" = (/obj/structure/table/standard,/obj/item/stack/medical/advanced/ointment,/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"Lc" = (/obj/structure/table/standard,/obj/item/stack/medical/advanced/ointment,/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"Lg" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentA)
|
"Lg" = (/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/obj/structure/cable,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/radequipmentA)
|
||||||
"Lh" = (/obj/machinery/power/rad_collector,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage)
|
"Lh" = (/obj/machinery/power/rad_collector,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/teslastorage)
|
||||||
"Li" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
"Li" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
||||||
@@ -1285,7 +1285,7 @@
|
|||||||
"Lq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/poolroom)
|
"Lq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel,/area/surface/tyr/eclipse_stronghold/poolroom)
|
||||||
"Lr" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/bathroom)
|
"Lr" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/surface/tyr/eclipse_stronghold/bathroom)
|
||||||
"Ls" = (/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"Ls" = (/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"Lt" = (/obj/structure/inflatable,/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"Lt" = (/obj/structure/inflatable,/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"Lu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold)
|
"Lu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/old_tile/yellow,/area/surface/tyr/eclipse_stronghold)
|
||||||
"Lw" = (/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro)
|
"Lw" = (/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro)
|
||||||
"Lx" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom)
|
"Lx" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/old_tile/green,/area/surface/tyr/eclipse_stronghold/antroom)
|
||||||
@@ -1338,7 +1338,7 @@
|
|||||||
"ML" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB)
|
"ML" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB)
|
||||||
"MO" = (/obj/effect/floor_decal/corner/lime/bordercorner,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"MO" = (/obj/effect/floor_decal/corner/lime/bordercorner,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"MP" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"MP" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"MQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"MQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"MR" = (/turf/simulated/shuttle/wall/alien/blue{density = 0},/area/surface/tyr/precursorruins/finale)
|
"MR" = (/turf/simulated/shuttle/wall/alien/blue{density = 0},/area/surface/tyr/precursorruins/finale)
|
||||||
"MT" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens)
|
"MT" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantgens)
|
||||||
"MW" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/purple/diagonal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA)
|
"MW" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/corner/purple/diagonal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/old_tile/purple,/area/surface/tyr/eclipse_stronghold/creaturestorageA)
|
||||||
@@ -1404,7 +1404,7 @@
|
|||||||
"OR" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/docks)
|
"OR" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/docks)
|
||||||
"OT" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage)
|
"OT" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage)
|
||||||
"OU" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA)
|
"OU" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorA)
|
||||||
"OV" = (/obj/effect/zone_divider,/turf/simulated/wall/r_lead,/area/surface/tyr/northern_wilderness)
|
"OV" = (/obj/effect/zone_divider,/turf/simulated/wall/r_lead,/area/surface/tyr/huntery)
|
||||||
"OW" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro)
|
"OW" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/viro)
|
||||||
"OX" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold)
|
"OX" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold)
|
||||||
"OY" = (/obj/effect/zone_divider,/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"OY" = (/obj/effect/zone_divider,/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -1423,7 +1423,7 @@
|
|||||||
"Pu" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 4},/obj/random/maintenance/engineering,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage)
|
"Pu" = (/obj/structure/closet,/obj/structure/window/plastitanium{dir = 4},/obj/random/maintenance/engineering,/obj/random/plushie,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/miscstorage)
|
||||||
"Pv" = (/obj/structure/cable,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
"Pv" = (/obj/structure/cable,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
||||||
"Px" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold)
|
"Px" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold)
|
||||||
"Py" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"Py" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"Pz" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold)
|
"Pz" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold)
|
||||||
"PA" = (/obj/structure/table/fancyblack,/obj/structure/stripper_pole,/mob/living/simple_mob/humanoid/eclipse/head/scientist,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice)
|
"PA" = (/obj/structure/table/fancyblack,/obj/structure/stripper_pole,/mob/living/simple_mob/humanoid/eclipse/head/scientist,/turf/simulated/floor/carpet/purcarpet,/area/surface/tyr/eclipse_stronghold/researchleadoffice)
|
||||||
"PC" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"PC" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -1551,6 +1551,7 @@
|
|||||||
"Tp" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"Tp" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"Tr" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold)
|
"Tr" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold)
|
||||||
"Tv" = (/obj/machinery/vending/snack,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom)
|
"Tv" = (/obj/machinery/vending/snack,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom)
|
||||||
|
"Ty" = (/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/mining_depot)
|
||||||
"Tz" = (/obj/effect/floor_decal/corner/lime/border{dir = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"Tz" = (/obj/effect/floor_decal/corner/lime/border{dir = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"TA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
"TA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
||||||
"TB" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/bed/double,/obj/item/bedsheet/hopdouble,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA)
|
"TB" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/obj/structure/bed/double,/obj/item/bedsheet/hopdouble,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryA)
|
||||||
@@ -1586,7 +1587,7 @@
|
|||||||
"UN" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold)
|
"UN" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold)
|
||||||
"UO" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/recoveryC)
|
"UO" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/recoveryC)
|
||||||
"UP" = (/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage)
|
"UP" = (/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/yellow,/area/surface/tyr/eclipse_stronghold/toolstorage)
|
||||||
"UQ" = (/obj/structure/grille,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor,/area/surface/tyr/northern_wilderness)
|
"UQ" = (/obj/structure/grille,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor,/area/surface/tyr/huntery)
|
||||||
"UR" = (/mob/living/simple_mob/vore/spacecritter/solarray/galaxyray,/obj/effect/zone_divider,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageB)
|
"UR" = (/mob/living/simple_mob/vore/spacecritter/solarray/galaxyray,/obj/effect/zone_divider,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/creaturestorageB)
|
||||||
"UT" = (/obj/effect/zone_divider,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/cmooffice)
|
"UT" = (/obj/effect/zone_divider,/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/cmooffice)
|
||||||
"UU" = (/obj/structure/table/standard,/obj/item/toy/plushie,/obj/machinery/light/small,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice)
|
"UU" = (/obj/structure/table/standard,/obj/item/toy/plushie,/obj/machinery/light/small,/turf/simulated/floor/carpet/tealcarpet,/area/surface/tyr/eclipse_stronghold/cmooffice)
|
||||||
@@ -1648,7 +1649,7 @@
|
|||||||
"WQ" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold)
|
"WQ" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 1},/obj/effect/floor_decal/corner/lightorange,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold)
|
||||||
"WS" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/mob/living/simple_mob/vore/spacecritter/livingice/iceberg,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel)
|
"WS" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/mob/living/simple_mob/vore/spacecritter/livingice/iceberg,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel)
|
||||||
"WT" = (/obj/effect/floor_decal/corner/purple/border,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"WT" = (/obj/effect/floor_decal/corner/purple/border,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"WU" = (/turf/simulated/wall/shull,/area/surface/tyr/northern_wilderness)
|
"WU" = (/turf/simulated/wall/shull,/area/surface/tyr/huntery)
|
||||||
"WV" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB)
|
"WV" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/generatorB)
|
||||||
"WX" = (/obj/structure/bed,/obj/machinery/light/small{dir = 4},/obj/structure/window/plastitanium,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
"WX" = (/obj/structure/bed,/obj/machinery/light/small{dir = 4},/obj/structure/window/plastitanium,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/jailhouse)
|
||||||
"Xa" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/mob/living/simple_mob/vore/spacecritter/solarray/galaxyray,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel)
|
"Xa" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/mob/living/simple_mob/vore/spacecritter/solarray/galaxyray,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel)
|
||||||
@@ -1670,7 +1671,7 @@
|
|||||||
"Xx" = (/obj/machinery/vending/loadout/costume,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom)
|
"Xx" = (/obj/machinery/vending/loadout/costume,/turf/simulated/floor/carpet/bcarpet,/area/surface/tyr/eclipse_stronghold/breakroom)
|
||||||
"XA" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryC)
|
"XA" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/recoveryC)
|
||||||
"XD" = (/obj/machinery/light/small,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold)
|
"XD" = (/obj/machinery/light/small,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold)
|
||||||
"XE" = (/turf/simulated/wall/stonelogs,/area/surface/tyr/northern_wilderness)
|
"XE" = (/turf/simulated/wall/stonelogs,/area/surface/tyr/town_hall)
|
||||||
"XG" = (/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
"XG" = (/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"XI" = (/obj/structure/table/standard,/obj/machinery/chemical_dispenser/bar_coffee/full,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe)
|
"XI" = (/obj/structure/table/standard,/obj/machinery/chemical_dispenser/bar_coffee/full,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe)
|
||||||
"XL" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro)
|
"XL" = (/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/viro)
|
||||||
@@ -1705,7 +1706,7 @@
|
|||||||
"YL" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe)
|
"YL" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/cafe)
|
||||||
"YM" = (/obj/effect/floor_decal/corner/purple/border{dir = 10},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"YM" = (/obj/effect/floor_decal/corner/purple/border{dir = 10},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"YN" = (/obj/effect/floor_decal/corner/orange/bordercorner{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
"YN" = (/obj/effect/floor_decal/corner/orange/bordercorner{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold)
|
||||||
"YP" = (/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/northern_wilderness)
|
"YP" = (/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/town_hall)
|
||||||
"YS" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/mob/living/simple_mob/vore/spacecritter/solarray/galaxyray,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel)
|
"YS" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/mob/living/simple_mob/vore/spacecritter/solarray/galaxyray,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/powerplantfuel)
|
||||||
"YV" = (/obj/random/multiple/gun/projectile/shotgun,/obj/structure/table/gold,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold)
|
"YV" = (/obj/random/multiple/gun/projectile/shotgun,/obj/structure/table/gold,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold)
|
||||||
"YW" = (/obj/machinery/papershredder,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold)
|
"YW" = (/obj/machinery/papershredder,/turf/simulated/floor/tiled,/area/surface/tyr/eclipse_stronghold)
|
||||||
@@ -1888,14 +1889,14 @@ MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUo
|
|||||||
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoWaWaWaWaWaWaWaWaWaWaUoUoUoUoUoUoUoUoWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi
|
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoWaWaWaWaWaWaWaWaWaWaUoUoUoUoUoUoUoUoWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi
|
||||||
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUonpUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoWaWaWaWaWaWaWaWaWaWaUoUoUoUoUoUoUoWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi
|
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUonpUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoWaWaWaWaWaWaWaWaWaWaUoUoUoUoUoUoUoWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi
|
||||||
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoWaWaWaWaWaWaWaWaWaWaWaUoUoUoUoUoUoWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi
|
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoWaWaWaWaWaWaWaWaWaWaWaUoUoUoUoUoUoWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi
|
||||||
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoWaWaWaWaWaUoUoWaWaWaWaWaWaWaUoUoUoUoWaWaWaUoUoUoUoXEXEXEXEXEXEXEXEXEXEXEUoUoUoUoUoMi
|
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoWaWaWaWaWaUoUoWaWaWaWaWaWaWaUoUoUoUoWaWaWaUoUoUoUoGWGWGWGWGWGWGWGWGWGWGWUoUoUoUoUoMi
|
||||||
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZWaWaWaWaWaUoUoUoUoUoUoUoWaWaWaUoUoUoWaWaWaWaUoUoUoUoXEWaWaWaWaWaWaWaWaWaXEUoUoUoUoUoMi
|
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZWaWaWaWaWaUoUoUoUoUoUoUoWaWaWaUoUoUoWaWaWaWaUoUoUoUoGWTyTyTyTyTyTyTyTyTyGWUoUoUoUoUoMi
|
||||||
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZWaWaWaUoUoUoUoUoUoUoUoUoUoWaWaWaUoWaWaWaWaUoUoUoUoWaXEWaWaWaWaWaWaWaWaWaXEUoUoUoUoUoMi
|
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZWaWaWaUoUoUoUoUoUoUoUoUoUoWaWaWaUoWaWaWaWaUoUoUoUoWaGWTyTyTyTyTyTyTyTyTyGWUoUoUoUoUoMi
|
||||||
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoWUWUWUWUWUWUWUWUWUWUWUWUWUnvWUnKnKWUWUnPLtLtWUWUWUWUUoUoWaWaWaWaWaWaWaWaUoUoWaWaoEWaWaWaWaWaWaWaWaWaXEUoUoUoUoUoMi
|
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoWUWUWUWUWUWUWUWUWUWUWUWUWUnvWUnKnKWUWUnPLtLtWUWUWUWUUoUoWaWaWaWaWaWaWaWaUoUoWaWaoETyTyTyTyTyTyTyTyTyGWUoUoUoUoUoMi
|
||||||
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUooIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtBYBYBYBYBYBYBYBYBYoRPyPyPyrdPyPypdWUpVBYqpBYrpWUWUWUWUUoUoWaWaWaWaWaWaWaWaWaWaWaoEWaWaWaWaWatHWaWaWaXEUoUoUoUoUoMi
|
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUooIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtBYBYBYBYBYBYBYBYBYoRPyPyPyrdPyPypdWUpVBYqpBYrpWUWUWUWUUoUoWaWaWaWaWaWaWaWaWaWaWaoETyTyTyTyTytHTyTyTyGWUoUoUoUoUoMi
|
||||||
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUooIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtBYBYBYWUWUWUBYWUMQiririrOVirBYMQWUpVtJBYBYrpWUtWtWWUWUUoWaWaWajDjDjDWaWaWaWaWaXEWaWaWaWaWaWaWaWaWaXEUoUoUoUoUoMi
|
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUooIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtBYBYBYWUWUWUBYWUMQiririrOVirBYMQWUpVtJBYBYrpWUtWtWWUWUUoWaWaWajDjDjDWaWaWaWaWaGWTyTyTyTyTyTyTyTyTyGWUoUoUoUoUoMi
|
||||||
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUooIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtBYBYBYWUBYBYBYWUMQiriruFOVirBYMQWUWUWUvKWUWUWUBYuKBYLtUoWaWajDjDjDjDjDWaWaWaUoXEWaWaWaWaWaWaWaWaWaXEUoUoUoUoUoMi
|
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUooIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtBYBYBYWUBYBYBYWUMQiriruFOVirBYMQWUWUWUvKWUWUWUBYuKBYLtUoWaWajDjDjDjDjDWaWaWaUoGWTyTyTyTyTyTyTyTyTyGWUoUoUoUoUoMi
|
||||||
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUooIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtBYBYWUvbBYvcWUvNwHPywOxbirxuxxBYBYBYBYBYBYvKBYBYBYyoUoWaWajDjDyqjDjDWaWaUoUoXEXEXEXEXEXEXEXEXEXEXEUoUoUoUoUoMi
|
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUooIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtBYBYWUvbBYvcWUvNwHPywOxbirxuxxBYBYBYBYBYBYvKBYBYBYyoUoWaWajDjDyqjDjDWaWaUoUoGWGWGWGWGWGWGWGWGWGWGWUoUoUoUoUoMi
|
||||||
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUooIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtLtBYBYWUBYBYBYWUMQirirysOVirBYMQWUWUWUvKWUWUWUBYuKBYyoUoWaWajDjDjDjDjDWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi
|
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUooIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtLtBYBYWUBYBYBYWUMQirirysOVirBYMQWUWUWUvKWUWUWUBYuKBYyoUoWaWajDjDjDjDjDWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi
|
||||||
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMzMzMzoIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIMzMzUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtBYBYBYBYWUWUWUBYWUMQiririrOVirBYMQWUvRBYBYtJLcWUtWtWWUWUUoWaWaWajDjDjDWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi
|
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMzMzMzoIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIMzMzUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtBYBYBYBYWUWUWUBYWUMQiririrOVirBYMQWUvRBYBYtJLcWUtWtWWUWUUoWaWaWajDjDjDWaWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi
|
||||||
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMzMzMzoIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIMzMzUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtLtBYBYBYBYBYBYBYChPyPyPyrdPyPyyuWUyxdHyMdHvRWUWUWUWUUoUoUoWaWaWaWaWazvWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi
|
MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMzMzMzoIMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzoIMzMzUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoLtLtBYBYBYBYBYBYBYChPyPyPyrdPyPyyuWUyxdHyMdHvRWUWUWUWUUoUoUoWaWaWaWaWazvWaWaWaUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoMi
|
||||||
@@ -1948,8 +1949,8 @@ lfOQOQOQOQOQOQOQOQNcCUNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQ
|
|||||||
lfOQOQOQOQOQOQOQOQOQNcNcNcNcNcCUOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQCUNcNcNcNcNcNcNcOQBENcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQNcOQOQOQOQOQOQNcNcOQOQMzMzMzMzSWSWMzSWSWSWMzSWSWSWMzMzSWMzSWSWSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXxXxXxXxXxXxXwdxXxXxXxXwdxXMzMzMzMzNcNcNcNceieieieiNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNceiOQOQOQOQOQOQeieieieieiNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQlf
|
lfOQOQOQOQOQOQOQOQOQNcNcNcNcNcCUOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQCUNcNcNcNcNcNcNcOQBENcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQNcOQOQOQOQOQOQNcNcOQOQMzMzMzMzSWSWMzSWSWSWMzSWSWSWMzMzSWMzSWSWSWMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzxXxXxXxXxXxXxXxXxXwdxXxXxXxXwdxXMzMzMzMzNcNcNcNceieieieiNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNceiOQOQOQOQOQOQeieieieieiNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQlf
|
||||||
lfOQOQOQOQOQOQOQOQOQNcNcNcCUNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQBENcNcCUNcNcNcBEOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcOQMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzNcNcNcNceieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNceieieieiOQOQeieieieieieieiNcNcNcNcNcNcNcNcNcNcNcOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQlf
|
lfOQOQOQOQOQOQOQOQOQNcNcNcCUNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQBENcNcCUNcNcNcBEOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcOQMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzNcNcNcNceieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNceieieieiOQOQeieieieieieieiNcNcNcNcNcNcNcNcNcNcNcOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQlf
|
||||||
lfOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcOQMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNceieieieieieieieieieieieieieieiNcNcNcNcNcNcNcNcNcOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQlf
|
lfOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcOQMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNceieieieieieieieieieieieieieieiNcNcNcNcNcNcNcNcNcOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQlf
|
||||||
lfOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcBEOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcThThThThThFPThGvThGLThThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzThThKOKOKOKOKOKOKOKOThThThGWNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieieieieieieieieieieiNcxmNcNcNcNcNcNcNcOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQlf
|
lfOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcBEOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcThThThThThFPThGvThGLThThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzThThKOKOKOKOKOKOKOKOThThThczNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieieieieieieieieieieiNcxmNcNcNcNcNcNcNcOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQlf
|
||||||
lfOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcCUOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcCUNcNcNcNcCUNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcThThThThThThThGvThThThThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzThKOKOKOKOKOKOKOKOKOThThThGWNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieiDkeieieieieieieieiBOeiNcNcNcNcNcNcOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQlf
|
lfOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcCUOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcCUNcNcNcNcCUNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcThThThThThThThGvThThThThThThThMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzThKOKOKOKOKOKOKOKOKOThThThczNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieiDkeieieieieieieieiBOeiNcNcNcNcNcNcOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQlf
|
||||||
lfOQOQOQOQOQOQOQOQOQOQOQCUNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcBEOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzHuHuHuHKHuGvuhThuhuhuhMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOKOKOKOThKOKOKOKOKOKOKOMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieiDWeieieieieieieieieieiNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQlf
|
lfOQOQOQOQOQOQOQOQOQOQOQCUNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcBEOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzHuHuHuHKHuGvuhThuhuhuhMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOKOKOKOThKOKOKOKOKOKOKOMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieiDWeieieieieieieieieieiNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQlf
|
||||||
lfOQOQOQOQOQOQOQOQOQOQOQNcNcNcCUNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzHuHuHuHKHuGvuhThuhuhuhMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOKOKOThThThKOKOKOKOKOKOMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieieieieieieieieieieieieiOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQlf
|
lfOQOQOQOQOQOQOQOQOQOQOQNcNcNcCUNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzHuHuHuHKHuGvuhThuhuhuhMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOKOKOThThThKOKOKOKOKOKOMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieieieieieieieieieieieieiOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQlf
|
||||||
lfOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzHuHuHuHKHuGvuhThuhuhuhMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOThKOKOThKOKOKOKOThKOKOMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcxmNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieieieiCleieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQlf
|
lfOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzHuHuHuHKHuGvuhThuhuhuhMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzKOThKOKOThKOKOKOKOThKOKOMzMzMzMzOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcxmNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieieieiCleieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQlf
|
||||||
|
|||||||
@@ -4930,6 +4930,7 @@
|
|||||||
#include "modular_chomp\code\modules\clothing\spacesuits\rig\crystal.dm"
|
#include "modular_chomp\code\modules\clothing\spacesuits\rig\crystal.dm"
|
||||||
#include "modular_chomp\code\modules\clothing\spacesuits\rig\other.dm"
|
#include "modular_chomp\code\modules\clothing\spacesuits\rig\other.dm"
|
||||||
#include "modular_chomp\code\modules\clothing\spacesuits\rig\precursor.dm"
|
#include "modular_chomp\code\modules\clothing\spacesuits\rig\precursor.dm"
|
||||||
|
#include "modular_chomp\code\modules\clothing\spacesuits\rig\tyr.dm"
|
||||||
#include "modular_chomp\code\modules\clothing\spacesuits\rig\modules\specific\defib.dm"
|
#include "modular_chomp\code\modules\clothing\spacesuits\rig\modules\specific\defib.dm"
|
||||||
#include "modular_chomp\code\modules\clothing\spacesuits\rig\modules\specific\mounted_gun.dm"
|
#include "modular_chomp\code\modules\clothing\spacesuits\rig\modules\specific\mounted_gun.dm"
|
||||||
#include "modular_chomp\code\modules\clothing\spacesuits\rig\suits\alien.dm"
|
#include "modular_chomp\code\modules\clothing\spacesuits\rig\suits\alien.dm"
|
||||||
|
|||||||