diff --git a/code/_helpers/global_lists_ch.dm b/code/_helpers/global_lists_ch.dm index 89048a1169..b8ca9300db 100644 --- a/code/_helpers/global_lists_ch.dm +++ b/code/_helpers/global_lists_ch.dm @@ -58,7 +58,7 @@ var/global/list/vr_mob_tf_options = list( "Construct Artificer" = /mob/living/simple_mob/construct/artificer, "Tech golem" = /mob/living/simple_mob/mechanical/technomancer_golem, "Metroid" = /mob/living/simple_mob/metroid/juvenile/baby, - "Otie" = /mob/living/simple_mob/otie/cotie/chubby, + "Otie" = /mob/living/simple_mob/vore/otie/cotie/chubby, "Shadekin" = /mob/living/simple_mob/shadekin, "Slime" = /mob/living/simple_mob/slime/xenobio/metal, "Corrupt hound" = /mob/living/simple_mob/vore/aggressive/corrupthound, @@ -73,7 +73,7 @@ var/global/list/vr_mob_tf_options = list( //"Dragon" = /mob/living/simple_mob/vore/bigdragon/friendly, //Currently adds 12 bellies to the user when transformed into. Do not uncomment without fixing this. "Riftwalker" = /mob/living/simple_mob/vore/demon/wendigo, "Horse" = /mob/living/simple_mob/vore/horse/big, - "Morph" = /mob/living/simple_mob/vore/hostile/morph, + "Morph" = /mob/living/simple_mob/vore/morph, "Leopardmander" = /mob/living/simple_mob/vore/leopardmander, "Rabbit" = /mob/living/simple_mob/vore/rabbit, "Red panda" = /mob/living/simple_mob/vore/redpanda, diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm index 17fb795809..27e000d0ba 100644 --- a/code/_helpers/global_lists_vr.dm +++ b/code/_helpers/global_lists_vr.dm @@ -728,15 +728,15 @@ var/global/list/xenobio_gold_mobs_hostile = list( /mob/living/simple_mob/vore/aggressive/dino, /mob/living/simple_mob/vore/aggressive/dragon, /mob/living/simple_mob/vore/aggressive/frog, - /mob/living/simple_mob/otie, - /mob/living/simple_mob/otie/red, + /mob/living/simple_mob/vore/otie, + /mob/living/simple_mob/vore/otie/red, /mob/living/simple_mob/vore/aggressive/panther, /mob/living/simple_mob/vore/aggressive/rat, /mob/living/simple_mob/vore/aggressive/giant_snake, /mob/living/simple_mob/vore/sect_drone, /mob/living/simple_mob/vore/sect_queen, /mob/living/simple_mob/vore/weretiger, - /mob/living/simple_mob/animal/wolf, + /mob/living/simple_mob/vore/wolf, /mob/living/simple_mob/vore/xeno_defanged) var/global/list/xenobio_gold_mobs_bosses = list( @@ -783,7 +783,7 @@ var/global/list/xenobio_gold_mobs_safe = list( /mob/living/simple_mob/vore/fennix, /mob/living/simple_mob/vore/hippo, /mob/living/simple_mob/vore/horse, - /mob/living/simple_mob/animal/space/jelly, + /mob/living/simple_mob/vore/jelly, /mob/living/simple_mob/vore/oregrub, /mob/living/simple_mob/vore/oregrub/lava, /mob/living/simple_mob/vore/rabbit, @@ -935,14 +935,14 @@ var/global/list/event_wildlife_roaming = list( list( list(/mob/living/simple_mob/vore/aggressive/frog = 1), list(/mob/living/simple_mob/tomato = 1), - list(/mob/living/simple_mob/animal/wolf = 1), + list(/mob/living/simple_mob/vore/wolf = 1), list(/mob/living/simple_mob/vore/aggressive/dino = 1), list(/mob/living/simple_mob/animal/space/bats = 1) ), list( list(/mob/living/simple_mob/animal/space/bear = 1), list(/mob/living/simple_mob/vore/aggressive/deathclaw = 1), - list(/mob/living/simple_mob/otie = 1), + list(/mob/living/simple_mob/vore/otie = 1), list(/mob/living/simple_mob/vore/aggressive/panther = 1), list(/mob/living/simple_mob/vore/aggressive/rat = 1), list(/mob/living/simple_mob/vore/aggressive/giant_snake = 1), diff --git a/code/game/objects/effects/semirandom_mobs_vr.dm b/code/game/objects/effects/semirandom_mobs_vr.dm index 343bf77e7f..1143078536 100644 --- a/code/game/objects/effects/semirandom_mobs_vr.dm +++ b/code/game/objects/effects/semirandom_mobs_vr.dm @@ -56,8 +56,8 @@ var/global/list/semirandom_mob_spawner_decisions = list() list(/mob/living/simple_mob/animal/passive/tindalos), list(/mob/living/simple_mob/animal/passive/yithian), list( - /mob/living/simple_mob/animal/wolf = 10, - /mob/living/simple_mob/animal/wolf/direwolf = 5, + /mob/living/simple_mob/vore/wolf = 10, + /mob/living/simple_mob/vore/wolf/direwolf = 5, /mob/living/simple_mob/vore/greatwolf = 1, /mob/living/simple_mob/vore/greatwolf/black = 1, /mob/living/simple_mob/vore/greatwolf/grey = 1 @@ -75,10 +75,10 @@ var/global/list/semirandom_mob_spawner_decisions = list() /mob/living/simple_mob/animal/space/bear/brown ), list( - /mob/living/simple_mob/otie/feral, - /mob/living/simple_mob/otie/feral/chubby, - /mob/living/simple_mob/otie/red, - /mob/living/simple_mob/otie/red/chubby + /mob/living/simple_mob/vore/otie/feral, + /mob/living/simple_mob/vore/otie/feral/chubby, + /mob/living/simple_mob/vore/otie/red, + /mob/living/simple_mob/vore/otie/red/chubby ), list(/mob/living/simple_mob/animal/sif/diyaab), list(/mob/living/simple_mob/animal/sif/duck), @@ -144,7 +144,7 @@ var/global/list/semirandom_mob_spawner_decisions = list() /mob/living/simple_mob/animal/space/carp/large/huge = 5 ), list(/mob/living/simple_mob/animal/space/goose), - list(/mob/living/simple_mob/animal/space/jelly), + list(/mob/living/simple_mob/vore/jelly), list(/mob/living/simple_mob/animal/space/tree), list( /mob/living/simple_mob/vore/aggressive/corrupthound = 10, @@ -245,12 +245,12 @@ var/global/list/semirandom_mob_spawner_decisions = list() list(/mob/living/simple_mob/mechanical/wahlem), list(/mob/living/simple_mob/animal/passive/fox/syndicate), list(/mob/living/simple_mob/animal/passive/fox), - list(/mob/living/simple_mob/animal/space/jelly), + list(/mob/living/simple_mob/vore/jelly), list( - /mob/living/simple_mob/otie/feral, - /mob/living/simple_mob/otie/feral/chubby, - /mob/living/simple_mob/otie/red, - /mob/living/simple_mob/otie/red/chubby + /mob/living/simple_mob/vore/otie/feral, + /mob/living/simple_mob/vore/otie/feral/chubby, + /mob/living/simple_mob/vore/otie/red, + /mob/living/simple_mob/vore/otie/red/chubby ), list( /mob/living/simple_mob/shadekin/blue = 100, @@ -377,8 +377,8 @@ var/global/list/semirandom_mob_spawner_decisions = list() list(/mob/living/simple_mob/animal/passive/tindalos) = 10, list(/mob/living/simple_mob/animal/passive/yithian) = 10, list( - /mob/living/simple_mob/animal/wolf = 10, - /mob/living/simple_mob/animal/wolf/direwolf = 5, + /mob/living/simple_mob/vore/wolf = 10, + /mob/living/simple_mob/vore/wolf/direwolf = 5, /mob/living/simple_mob/vore/greatwolf = 1, /mob/living/simple_mob/vore/greatwolf/black = 1, /mob/living/simple_mob/vore/greatwolf/grey = 1 @@ -396,10 +396,10 @@ var/global/list/semirandom_mob_spawner_decisions = list() /mob/living/simple_mob/animal/space/bear/brown ) = 1, list( - /mob/living/simple_mob/otie/feral = 50, - /mob/living/simple_mob/otie/feral/chubby = 10, - /mob/living/simple_mob/otie/red = 5, - /mob/living/simple_mob/otie/red/chubby = 1 + /mob/living/simple_mob/vore/otie/feral = 50, + /mob/living/simple_mob/vore/otie/feral/chubby = 10, + /mob/living/simple_mob/vore/otie/red = 5, + /mob/living/simple_mob/vore/otie/red/chubby = 1 ) = 5, list(/mob/living/simple_mob/vore/aggressive/rat) = 15, list(/mob/living/simple_mob/animal/sif/diyaab) = 5, @@ -467,8 +467,8 @@ var/global/list/semirandom_mob_spawner_decisions = list() /mob/living/simple_mob/shadekin/purple = 10 ) = 1, list( - /mob/living/simple_mob/animal/wolf = 10, - /mob/living/simple_mob/animal/wolf/direwolf = 5, + /mob/living/simple_mob/vore/wolf = 10, + /mob/living/simple_mob/vore/wolf/direwolf = 5, /mob/living/simple_mob/vore/greatwolf = 1, /mob/living/simple_mob/vore/greatwolf/black = 1, /mob/living/simple_mob/vore/greatwolf/grey = 1 @@ -502,13 +502,13 @@ var/global/list/semirandom_mob_spawner_decisions = list() /mob/living/simple_mob/animal/space/carp/large/huge = 5 ) = 50, list(/mob/living/simple_mob/animal/space/goose) = 50, - list(/mob/living/simple_mob/animal/space/jelly) = 40, + list(/mob/living/simple_mob/vore/jelly) = 40, list(/mob/living/simple_mob/animal/space/tree) = 15, list( - /mob/living/simple_mob/otie/feral = 50, - /mob/living/simple_mob/otie/feral/chubby = 10, - /mob/living/simple_mob/otie/red = 5, - /mob/living/simple_mob/otie/red/chubby = 1 + /mob/living/simple_mob/vore/otie/feral = 50, + /mob/living/simple_mob/vore/otie/feral/chubby = 10, + /mob/living/simple_mob/vore/otie/red = 5, + /mob/living/simple_mob/vore/otie/red/chubby = 1 ) = 40, list( /mob/living/simple_mob/vore/aggressive/corrupthound = 10, @@ -719,17 +719,17 @@ var/global/list/semirandom_mob_spawner_decisions = list() possible_mob_types = list( list( - /mob/living/simple_mob/animal/wolf/direwolf = 5, + /mob/living/simple_mob/vore/wolf/direwolf = 5, /mob/living/simple_mob/vore/greatwolf = 1, /mob/living/simple_mob/vore/greatwolf/black = 1, /mob/living/simple_mob/vore/greatwolf/grey = 1 ) = 100, - list(/mob/living/simple_mob/animal/space/jelly) = 70, + list(/mob/living/simple_mob/vore/jelly) = 70, list( - /mob/living/simple_mob/otie/feral, - /mob/living/simple_mob/otie/feral/chubby, - /mob/living/simple_mob/otie/red, - /mob/living/simple_mob/otie/red/chubby + /mob/living/simple_mob/vore/otie/feral, + /mob/living/simple_mob/vore/otie/feral/chubby, + /mob/living/simple_mob/vore/otie/red, + /mob/living/simple_mob/vore/otie/red/chubby ) = 50, list( /mob/living/simple_mob/shadekin/blue = 100, diff --git a/code/game/objects/items/devices/denecrotizer_vr.dm b/code/game/objects/items/devices/denecrotizer_vr.dm index 3b8fb1c761..2416dbe6ed 100644 --- a/code/game/objects/items/devices/denecrotizer_vr.dm +++ b/code/game/objects/items/devices/denecrotizer_vr.dm @@ -29,7 +29,7 @@ //The stuff we want to be revivable normally /mob/living/simple_mob/animal ic_revivable = TRUE -/mob/living/simple_mob/otie +/mob/living/simple_mob/vore/otie ic_revivable = TRUE /mob/living/simple_mob/vore ic_revivable = TRUE diff --git a/code/game/objects/items/devices/scanners/health.dm b/code/game/objects/items/devices/scanners/health.dm index a747dc5f09..c5108b550a 100644 --- a/code/game/objects/items/devices/scanners/health.dm +++ b/code/game/objects/items/devices/scanners/health.dm @@ -15,12 +15,20 @@ var/mode = 1; var/advscan = 0 var/showadvscan = 1 + var/guide = FALSE /obj/item/device/healthanalyzer/New() if(advscan >= 1) verbs += /obj/item/device/healthanalyzer/proc/toggle_adv ..() +/obj/item/device/healthanalyzer/examine(mob/user) + . = ..() + if(guide) + . += "Guidance is currently enabled." + else + . += "Guidance is currently disabled." + /obj/item/device/healthanalyzer/do_surgery(mob/living/M, mob/living/user) if(user.a_intent != I_HELP) //in case it is ever used as a surgery tool return ..() @@ -109,19 +117,14 @@ severity = "Lethal" else if(M.radiation >= 600) severity = "Critical" - else if(M.radiation >= 50) else if(M.radiation >= 400) severity = "Severe" - else if(M.radiation >= 25) else if(M.radiation >= 300) severity = "Moderate" - else if(M.radiation >= 1) else if(M.radiation >= 100) severity = "Low" - dat += "[severity] levels of radiation detected. [(severity == "Critical") ? " Immediate treatment advised." : ""]
" dat += "[severity] levels of acute radiation sickness detected. [round(M.radiation/50)]Gy. [(severity == "Critical" || severity == "Lethal") ? " Immediate treatment advised." : ""]
" else - dat += "Radiation detected.
" dat += "Acute radiation sickness detected.
" if(M.accumulated_rads) if(advscan >= 2 && showadvscan == 1) @@ -303,6 +306,8 @@ dat += "Subject is a Xenochimera. Treat accordingly." // VOREStation Edit End user.show_message(dat, 1) + if(guide) + guide(M, user) /obj/item/device/healthanalyzer/verb/toggle_mode() set name = "Switch Verbosity" diff --git a/code/game/objects/items/weapons/capture_crystal.dm b/code/game/objects/items/weapons/capture_crystal.dm index da096cd0f0..3b982d39ae 100644 --- a/code/game/objects/items/weapons/capture_crystal.dm +++ b/code/game/objects/items/weapons/capture_crystal.dm @@ -592,8 +592,8 @@ list(/mob/living/simple_mob/animal/passive/tindalos), list(/mob/living/simple_mob/animal/passive/yithian), list( - /mob/living/simple_mob/animal/wolf, - /mob/living/simple_mob/animal/wolf/direwolf + /mob/living/simple_mob/vore/wolf, + /mob/living/simple_mob/vore/wolf/direwolf ), list(/mob/living/simple_mob/vore/rabbit), list(/mob/living/simple_mob/vore/redpanda), @@ -608,10 +608,10 @@ /mob/living/simple_mob/animal/space/bear/brown ), list( - /mob/living/simple_mob/otie/feral, - /mob/living/simple_mob/otie/feral/chubby, - /mob/living/simple_mob/otie/red, - /mob/living/simple_mob/otie/red/chubby + /mob/living/simple_mob/vore/otie/feral, + /mob/living/simple_mob/vore/otie/feral/chubby, + /mob/living/simple_mob/vore/otie/red, + /mob/living/simple_mob/vore/otie/red/chubby ), list(/mob/living/simple_mob/animal/sif/diyaab), list(/mob/living/simple_mob/animal/sif/duck), @@ -650,8 +650,8 @@ /mob/living/simple_mob/animal/giant_spider/webslinger = 5, /mob/living/simple_mob/animal/giant_spider/broodmother = 1), list( - /mob/living/simple_mob/animal/wolf = 10, - /mob/living/simple_mob/animal/wolf/direwolf = 5, + /mob/living/simple_mob/vore/wolf = 10, + /mob/living/simple_mob/vore/wolf/direwolf = 5, /mob/living/simple_mob/vore/greatwolf = 1, /mob/living/simple_mob/vore/greatwolf/black = 1, /mob/living/simple_mob/vore/greatwolf/grey = 1 @@ -684,7 +684,7 @@ /mob/living/simple_mob/animal/space/carp/large/huge = 5 ), list(/mob/living/simple_mob/animal/space/goose), - list(/mob/living/simple_mob/animal/space/jelly), + list(/mob/living/simple_mob/vore/jelly), list(/mob/living/simple_mob/animal/space/tree), list( /mob/living/simple_mob/vore/aggressive/corrupthound = 10, @@ -785,13 +785,13 @@ list(/mob/living/simple_mob/mechanical/wahlem), list(/mob/living/simple_mob/animal/passive/fox/syndicate), list(/mob/living/simple_mob/animal/passive/fox), - list(/mob/living/simple_mob/animal/wolf/direwolf), - list(/mob/living/simple_mob/animal/space/jelly), + list(/mob/living/simple_mob/vore/wolf/direwolf), + list(/mob/living/simple_mob/vore/jelly), list( - /mob/living/simple_mob/otie/feral, - /mob/living/simple_mob/otie/feral/chubby, - /mob/living/simple_mob/otie/red, - /mob/living/simple_mob/otie/red/chubby + /mob/living/simple_mob/vore/otie/feral, + /mob/living/simple_mob/vore/otie/feral/chubby, + /mob/living/simple_mob/vore/otie/red, + /mob/living/simple_mob/vore/otie/red/chubby ), list( /mob/living/simple_mob/shadekin/blue = 100, diff --git a/code/game/objects/items/weapons/grenades/spawnergrenade_ch.dm b/code/game/objects/items/weapons/grenades/spawnergrenade_ch.dm index 30f8369353..4e64813ece 100644 --- a/code/game/objects/items/weapons/grenades/spawnergrenade_ch.dm +++ b/code/game/objects/items/weapons/grenades/spawnergrenade_ch.dm @@ -102,17 +102,17 @@ /obj/item/weapon/grenade/spawnergrenade/casino/otie desc = "It is set to detonate in 5 seconds. It will release a otie that has been won from the golden goose casino!" name = "Casino Creature Container (Otie)" - spawner_type = /mob/living/simple_mob/otie/friendly + spawner_type = /mob/living/simple_mob/vore/otie/friendly /obj/item/weapon/grenade/spawnergrenade/casino/otie/chubby desc = "It is set to detonate in 5 seconds. It will release a chonker otie that has been won from the golden goose casino!" name = "Casino Creature Container (Well feed Otie)" - spawner_type = /mob/living/simple_mob/otie/friendly/chubby + spawner_type = /mob/living/simple_mob/vore/otie/friendly/chubby /obj/item/weapon/grenade/spawnergrenade/casino/zorgoia desc = "It is set to detonate in 5 seconds. It will release a zorgoia that has been won from the golden goose casino!" name = "Casino Creature Container (Zorgoia)" - spawner_type = /mob/living/simple_mob/otie/zorgoia/friendly + spawner_type = /mob/living/simple_mob/vore/otie/zorgoia/friendly /obj/item/weapon/grenade/spawnergrenade/casino/gygax desc = "You feel great power inside this small round sphere, with great powers comes great responsibilities!" diff --git a/code/game/objects/micro_structures.dm b/code/game/objects/micro_structures.dm index f47ced1475..55c0cbe81a 100644 --- a/code/game/objects/micro_structures.dm +++ b/code/game/objects/micro_structures.dm @@ -13,7 +13,7 @@ var/static/non_micro_types = list( /mob/living/simple_mob/vore/squirrel, /mob/living/simple_mob/vore/alienanimals/catslug, - /mob/living/simple_mob/vore/hostile/morph, + /mob/living/simple_mob/vore/morph, /mob/living/simple_mob/protean_blob, /mob/living/simple_mob/slime ) diff --git a/code/game/objects/mob_spawner_ch.dm b/code/game/objects/mob_spawner_ch.dm index 38e5b27e7d..4752b77410 100644 --- a/code/game/objects/mob_spawner_ch.dm +++ b/code/game/objects/mob_spawner_ch.dm @@ -13,7 +13,7 @@ /mob/living/simple_mob/animal/space/carp = 10, /obj/structure/closet/crate/mimic = 2, /mob/living/simple_mob/animal/space/bats = 70, - /mob/living/simple_mob/animal/space/jelly = 25, + /mob/living/simple_mob/vore/jelly = 25, /mob/living/simple_mob/animal/space/bear = 1, /mob/living/simple_mob/vore/aggressive/deathclaw = 1, /mob/living/simple_mob/animal/space/goose = 60, diff --git a/code/game/objects/mob_spawner_vr.dm b/code/game/objects/mob_spawner_vr.dm index 3693bf85e2..6feebec885 100644 --- a/code/game/objects/mob_spawner_vr.dm +++ b/code/game/objects/mob_spawner_vr.dm @@ -157,7 +157,7 @@ It also makes it so a ghost wont know where all the goodies/mobs are. invisibility = 101 spawn_types = list( /mob/living/simple_mob/animal/passive/gaslamp = 20, -// /mob/living/simple_mob/otie/feral = 10, +// /mob/living/simple_mob/vore/otie/feral = 10, /mob/living/simple_mob/vore/aggressive/dino/virgo3b = 5, /mob/living/simple_mob/vore/aggressive/dragon/virgo3b = 1 ) diff --git a/code/game/objects/random/mob_vr.dm b/code/game/objects/random/mob_vr.dm index 5eb18d7de0..66c058a68a 100644 --- a/code/game/objects/random/mob_vr.dm +++ b/code/game/objects/random/mob_vr.dm @@ -184,7 +184,7 @@ /obj/random/outside_mob/item_to_spawn() // Special version for mobs to have the same faction. return pick( prob(50);/mob/living/simple_mob/animal/passive/gaslamp, -// prob(50);/mob/living/simple_mob/otie/feral, // Removed until Otie code is unfucked. +// prob(50);/mob/living/simple_mob/vore/otie/feral, // Removed until Otie code is unfucked. prob(20);/mob/living/simple_mob/vore/aggressive/dino/virgo3b, prob(1);/mob/living/simple_mob/vore/aggressive/dragon/virgo3b) diff --git a/code/game/objects/structures/crates_lockers/largecrate_vr.dm b/code/game/objects/structures/crates_lockers/largecrate_vr.dm index 47ec0eedf0..87755f5960 100644 --- a/code/game/objects/structures/crates_lockers/largecrate_vr.dm +++ b/code/game/objects/structures/crates_lockers/largecrate_vr.dm @@ -47,16 +47,16 @@ /mob/living/simple_mob/vore/horse, /mob/living/simple_mob/vore/aggressive/panther, /mob/living/simple_mob/vore/aggressive/giant_snake, - /mob/living/simple_mob/animal/wolf, + /mob/living/simple_mob/vore/wolf, /mob/living/simple_mob/animal/space/bear;0.5, /mob/living/simple_mob/animal/space/carp, /mob/living/simple_mob/vore/aggressive/mimic, /mob/living/simple_mob/vore/aggressive/rat, /mob/living/simple_mob/vore/aggressive/rat/tame, - /mob/living/simple_mob/otie/zorgoia, //CHOMPstation edit + /mob/living/simple_mob/vore/otie/zorgoia, //CHOMPstation edit /mob/living/simple_mob/vore/rabbit, /mob/living/simple_mob/vore/weretiger;0.5, - /mob/living/simple_mob/otie;0.5 +// /mob/living/simple_mob/vore/otie;0.5 )) return ..() @@ -72,9 +72,9 @@ /mob/living/simple_mob/animal/space/alien/drone, /mob/living/simple_mob/animal/space/alien/sentinel, /mob/living/simple_mob/animal/space/alien/queen, - /mob/living/simple_mob/otie/feral, - /mob/living/simple_mob/otie/feral/chubby, - /mob/living/simple_mob/otie/red, + /mob/living/simple_mob/vore/otie/feral, //ChompEDIT uncomment + /mob/living/simple_mob/vore/otie/feral/chubby, //ChompEDIT add + /mob/living/simple_mob/vore/otie/red, //ChompEDIT uncomment /mob/living/simple_mob/vore/aggressive/corrupthound)) return ..() @@ -83,11 +83,11 @@ desc = "The VARMAcorp bioengineering division flagship product on trained optimal snowflake guard dogs." icon = 'icons/obj/storage_vr.dmi' icon_state = "sotiecrate" - starts_with = list(/mob/living/simple_mob/otie/security) + starts_with = list(/mob/living/simple_mob/vore/otie/security) /obj/structure/largecrate/animal/otie/guardbeast/Initialize() - starts_with = list(pick(/mob/living/simple_mob/otie/security, - /mob/living/simple_mob/otie/security/chubby)) + starts_with = list(pick(/mob/living/simple_mob/vore/otie/security, + /mob/living/simple_mob/vore/otie/security/chubby)) return ..() /obj/structure/largecrate/animal/guardmutant @@ -95,12 +95,12 @@ desc = "The VARMAcorp bioengineering division flagship product on trained optimal snowflake guard dogs. This one can survive hostile atmosphere." icon = 'icons/obj/storage_vr.dmi' icon_state = "sotiecrate" - starts_with = list(/mob/living/simple_mob/otie/security/phoron) + starts_with = list(/mob/living/simple_mob/vore/otie/security/phoron) /obj/structure/largecrate/animal/otie/guardmutant/Initialize() - starts_with = list(pick(/mob/living/simple_mob/otie/security/phoron;2, - /mob/living/simple_mob/otie/security/phoron/red;0.5, - /mob/living/simple_mob/otie/security/phoron/red/chubby;0.5)) + starts_with = list(pick(/mob/living/simple_mob/vore/otie/security/phoron;2, + /mob/living/simple_mob/vore/otie/security/phoron/red;0.5, + /mob/living/simple_mob/vore/otie/security/phoron/red/chubby;0.5)) return ..() /obj/structure/largecrate/animal/otie @@ -108,23 +108,23 @@ desc = "A warning on the side says the creature inside was returned to the supplier after injuring or devouring several unlucky members of the previous adoption family. It was given a second chance with the next customer. Godspeed and good luck with your new pet!" icon = 'icons/obj/storage_vr.dmi' icon_state = "otiecrate2" - starts_with = list(/mob/living/simple_mob/otie/cotie) + starts_with = list(/mob/living/simple_mob/vore/otie/cotie) var/taped = 1 /obj/structure/largecrate/animal/otie/Initialize() - starts_with = list(pick(/mob/living/simple_mob/otie/cotie, - /mob/living/simple_mob/otie/cotie/chubby)) + starts_with = list(pick(/mob/living/simple_mob/vore/otie/cotie, + /mob/living/simple_mob/vore/otie/cotie/chubby)) return ..() /obj/structure/largecrate/animal/otie/phoron name = "VARMAcorp adaptive beta subject (Experimental)" desc = "VARMAcorp experimental hostile environment adaptive breeding development kit. WARNING, DO NOT RELEASE IN WILD!" - starts_with = list(/mob/living/simple_mob/otie/cotie/phoron) + starts_with = list(/mob/living/simple_mob/vore/otie/cotie/phoron) /obj/structure/largecrate/animal/otie/phoron/Initialize() - starts_with = list(pick(/mob/living/simple_mob/otie/cotie/phoron;2, - /mob/living/simple_mob/otie/red/friendly;0.5, - /mob/living/simple_mob/otie/red/chubby;0.5)) + starts_with = list(pick(/mob/living/simple_mob/vore/otie/cotie/phoron;2, + /mob/living/simple_mob/vore/otie/red/friendly;0.5, + /mob/living/simple_mob/vore/otie/red/chubby;0.5)) //ChompEDIT add return ..() /obj/structure/largecrate/animal/otie/attack_hand(mob/living/carbon/human/M as mob)//I just couldn't decide between the icons lmao diff --git a/code/game/objects/structures/ghost_pods/event_vr.dm b/code/game/objects/structures/ghost_pods/event_vr.dm index 9d951133eb..df50537103 100644 --- a/code/game/objects/structures/ghost_pods/event_vr.dm +++ b/code/game/objects/structures/ghost_pods/event_vr.dm @@ -29,10 +29,10 @@ "Lizardman" = /mob/living/simple_mob/vore/aggressive/lizardman,//CHOMPedit: more mobs "Giant Frog" = /mob/living/simple_mob/vore/aggressive/frog, "Giant Rat" = /mob/living/simple_mob/vore/aggressive/rat, - "Jelly Blob" = /mob/living/simple_mob/animal/space/jelly, - "Wolf" = /mob/living/simple_mob/animal/wolf, - "Dire Wolf" = /mob/living/simple_mob/animal/wolf/direwolf,//CHOMPedit: more mobs - "Large Dog" = /mob/living/simple_mob/animal/wolf/direwolf/dog,//CHOMPedit: more mobs + "Jelly Blob" = /mob/living/simple_mob/vore/jelly, + "Wolf" = /mob/living/simple_mob/vore/wolf, + "Dire Wolf" = /mob/living/simple_mob/vore/wolf/direwolf,//CHOMPedit: more mobs + "Large Dog" = /mob/living/simple_mob/vore/wolf/direwolf/dog,//CHOMPedit: more mobs "Hyena" = /mob/living/simple_mob/animal/hyena,//CHOMPedit: more mobs "Juvenile Solargrub" = /mob/living/simple_mob/vore/solargrub, "Sect Queen" = /mob/living/simple_mob/vore/sect_queen, @@ -41,13 +41,13 @@ "Panther" = /mob/living/simple_mob/vore/aggressive/panther, "Giant Snake" = /mob/living/simple_mob/vore/aggressive/giant_snake, "Deathclaw" = /mob/living/simple_mob/vore/aggressive/deathclaw, - "Otie" = /mob/living/simple_mob/otie, - "Chubby Otie" = /mob/living/simple_mob/otie/friendly/chubby,//CHOMPedit: more mobs - "Mutated Otie" = /mob/living/simple_mob/otie/feral, - "Chubby Mutated Otie" = /mob/living/simple_mob/otie/feral/chubby,//CHOMPedit: more mobs - "Red Otie" = /mob/living/simple_mob/otie/red, - "Chubby Red Otie" = /mob/living/simple_mob/otie/red/chubby,//CHOMPedit: more mobs - "Zorgoia" = /mob/living/simple_mob/otie/zorgoia,//CHOMPedit: more mobs + "Otie" = /mob/living/simple_mob/vore/otie, + "Chubby Otie" = /mob/living/simple_mob/vore/otie/friendly/chubby,//CHOMPedit: more mobs + "Mutated Otie" =/mob/living/simple_mob/vore/otie/feral, + "Chubby Mutated Otie" = /mob/living/simple_mob/vore/otie/feral/chubby,//CHOMPedit: more mobs + "Red Otie" = /mob/living/simple_mob/vore/otie/red, + "Chubby Red Otie" = /mob/living/simple_mob/vore/otie/red/chubby,//CHOMPedit: more mobs + "Zorgoia" = /mob/living/simple_mob/vore/otie/zorgoia,//CHOMPedit: more mobs "Corrupt Hound" = /mob/living/simple_mob/vore/aggressive/corrupthound, "Corrupt Corrupt Hound" = /mob/living/simple_mob/vore/aggressive/corrupthound/prettyboi, "Hunter Giant Spider" = /mob/living/simple_mob/animal/giant_spider/hunter, @@ -125,7 +125,7 @@ /obj/structure/ghost_pod/ghost_activated/morphspawn/create_occupant(var/mob/M) ..() - var/mob/living/simple_mob/vore/hostile/morph/newMorph = new /mob/living/simple_mob/vore/hostile/morph(get_turf(src)) + var/mob/living/simple_mob/vore/morph/newMorph = new /mob/living/simple_mob/vore/morph(get_turf(src)) newMorph.voremob_loaded = TRUE //CHOMPedit: On-demand belly loading. newMorph.init_vore() //CHOMPedit: On-demand belly loading. if(M.mind) diff --git a/code/game/turfs/flooring/seasonal.dm b/code/game/turfs/flooring/seasonal.dm index 21ebbccbdc..1ff4695ca6 100644 --- a/code/game/turfs/flooring/seasonal.dm +++ b/code/game/turfs/flooring/seasonal.dm @@ -55,9 +55,9 @@ var/world_time_season /mob/living/simple_mob/vore/alienanimals/dustjumper = 20, /mob/living/simple_mob/vore/bee = 20, /mob/living/simple_mob/vore/horse/big = 5, - /mob/living/simple_mob/animal/wolf = 5, - /mob/living/simple_mob/animal/wolf/direwolf = 1, - /mob/living/simple_mob/animal/wolf/direwolf/dog = 1, + /mob/living/simple_mob/vore/wolf = 5, + /mob/living/simple_mob/vore/wolf/direwolf = 1, + /mob/living/simple_mob/vore/wolf/direwolf/dog = 1, /mob/living/simple_mob/vore/squirrel = 20 ) grass_types = list( @@ -97,7 +97,7 @@ var/world_time_season /mob/living/simple_mob/vore/horse/big = 5, /mob/living/simple_mob/vore/pakkun = 2, /mob/living/simple_mob/vore/fennix = 1, - /mob/living/simple_mob/animal/wolf/direwolf/dog = 1, + /mob/living/simple_mob/vore/wolf/direwolf/dog = 1, /mob/living/simple_mob/animal/passive/bird/parrot = 1, /mob/living/simple_mob/vore/squirrel = 20 ) @@ -123,9 +123,9 @@ var/world_time_season /mob/living/simple_mob/vore/horse/big = 10, /mob/living/simple_mob/vore/alienanimals/dustjumper = 20, /mob/living/simple_mob/vore/horse/big = 1, - /mob/living/simple_mob/animal/wolf = 1, - /mob/living/simple_mob/animal/wolf/direwolf = 1, - /mob/living/simple_mob/animal/wolf/direwolf/dog = 1, + /mob/living/simple_mob/vore/wolf = 1, + /mob/living/simple_mob/vore/wolf/direwolf = 1, + /mob/living/simple_mob/vore/wolf/direwolf/dog = 1, /mob/living/simple_mob/vore/squirrel = 20 ) grass_types = list( @@ -148,13 +148,13 @@ var/world_time_season /mob/living/simple_mob/vore/alienanimals/teppi = 10, /mob/living/simple_mob/vore/alienanimals/teppi/mutant = 1, /mob/living/simple_mob/vore/redpanda = 10, - /mob/living/simple_mob/animal/wolf = 10, - /mob/living/simple_mob/animal/wolf/direwolf = 1, - /mob/living/simple_mob/animal/wolf/direwolf/dog = 1, - /mob/living/simple_mob/otie/friendly = 2, - /mob/living/simple_mob/otie/friendly/chubby = 1, - /mob/living/simple_mob/otie/red/friendly = 1, - /mob/living/simple_mob/otie/red/chubby = 1, + /mob/living/simple_mob/vore/wolf = 10, + /mob/living/simple_mob/vore/wolf/direwolf = 1, + /mob/living/simple_mob/vore/wolf/direwolf/dog = 1, + /mob/living/simple_mob/vore/otie/friendly = 2, + /mob/living/simple_mob/vore/otie/friendly/chubby = 1, + /mob/living/simple_mob/vore/otie/red/friendly = 1, + /mob/living/simple_mob/vore/otie/red/chubby = 1, /mob/living/simple_mob/vore/squirrel = 20 ) if(prob(snow_chance)) diff --git a/code/modules/casino/spawnergrenade_casino.dm b/code/modules/casino/spawnergrenade_casino.dm index 4a3cf8e535..70bf00bf16 100644 --- a/code/modules/casino/spawnergrenade_casino.dm +++ b/code/modules/casino/spawnergrenade_casino.dm @@ -73,7 +73,7 @@ /obj/item/weapon/grenade/spawnergrenade/casino/otie desc = "It is set to detonate in 5 seconds. It will release a otie won from the casino prize vendor!" name = "Casino Creature Container (Otie)" - spawner_type = /mob/living/simple_mob/otie/friendly + spawner_type = /mob/living/simple_mob/vore/otie/friendly /obj/item/weapon/grenade/spawnergrenade/casino/goldcrest desc = "It is set to detonate in 5 seconds. It will release a bird won from the casino prize vendor!" @@ -102,4 +102,4 @@ /obj/item/weapon/grenade/spawnergrenade/casino/gygax/shuttlepod name = "Casino Mech Container (Shuttlepod)" - spawner_type = /obj/mecha/working/hoverpod/shuttlepod \ No newline at end of file + spawner_type = /obj/mecha/working/hoverpod/shuttlepod diff --git a/code/modules/events/spider_infestation.dm b/code/modules/events/spider_infestation.dm index cccf1485a6..58fc5e3298 100644 --- a/code/modules/events/spider_infestation.dm +++ b/code/modules/events/spider_infestation.dm @@ -11,7 +11,7 @@ kill() return announceWhen = rand(announceWhen, announceWhen + 60) - spawncount = rand(6 * severity, 14 * severity) //spiderlings only have a 50% chance to grow big and strong //CHOMP Edit: old: 2/4 new: 6/14 + spawncount = rand(4 * severity, 10 * severity) //spiderlings only have a 50% chance to grow big and strong //CHOMP Edit: old: 2/4 new: 6/14 new: 4/10 sent_spiders_to_station = 0 /datum/event/spider_infestation/announce() @@ -35,8 +35,9 @@ var/obj/vent = pick(vents) //CHOMPEDIT START adding spider EGGS to the possible spawns instead of singular spiderling spawns. var/spawn_spiderlings = pickweight(list( - /obj/effect/spider/spiderling = 90, - /obj/effect/spider/eggcluster = 10 + /obj/effect/spider/spiderling = 85, + /obj/effect/spider/eggcluster = 10, + /obj/effect/spider/eggcluster/royal = 5 )) new spawn_spiderlings(vent.loc) //VOREStation Edit - No nurses //Oh my JESUS CHRIST, this slipped past me. Literally no nurses. Well guess what, nurses are back. //CHOMPEDIT END diff --git a/code/modules/food/food/snacks.dm b/code/modules/food/food/snacks.dm index 7dd6269339..14004df83f 100644 --- a/code/modules/food/food/snacks.dm +++ b/code/modules/food/food/snacks.dm @@ -4784,8 +4784,8 @@ var/composition_reagent var/composition_reagent_quantity -/mob/living/simple_mob/adultslime - composition_reagent = "slimejelly" +///mob/living/simple_mob/adultslime //The literal only thing in the game that uses this is commented out, so I comment out this too +// composition_reagent = "slimejelly" /mob/living/carbon/alien/diona composition_reagent = "nutriment"//Dionae are plants, so eating them doesn't give animal protein diff --git a/code/modules/mob/living/silicon/robot/drone/drone_items.dm b/code/modules/mob/living/silicon/robot/drone/drone_items.dm index 862993b884..926fb2698f 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone_items.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone_items.dm @@ -22,7 +22,7 @@ /obj/item/weapon/circuitboard, /obj/item/weapon/smes_coil, /obj/item/weapon/fuel_assembly, - /obj/item/weapon/ore/bluespace_crystal + /obj/item/weapon/bluespace_crystal //Chomp EDIT ) // CHOMPEdit - Buffing the gripper to allow bluespace crystal use for telesci building. var/obj/item/wrapped = null // Item currently being held. diff --git a/code/modules/mob/living/simple_mob/sd_pets.dm b/code/modules/mob/living/simple_mob/sd_pets.dm index 87a0216b8f..119bb2c23d 100644 --- a/code/modules/mob/living/simple_mob/sd_pets.dm +++ b/code/modules/mob/living/simple_mob/sd_pets.dm @@ -104,7 +104,7 @@ value = CATALOGUER_REWARD_TRIVIAL //Worth less points since it lives on the ship -/mob/living/simple_mob/otie/red/chubby/cocoa +/mob/living/simple_mob/vore/otie/red/chubby/cocoa name = "Cocoa" desc = "A good boi, eats the scraps when you're not looking." devourable = 0 @@ -113,9 +113,9 @@ mob_bump_flag = 32 ai_holder_type = /datum/ai_holder/simple_mob/melee/evasive/otie/cocoa catalogue_data = list(/datum/category_item/catalogue/fauna/otie/cocoa) - + /datum/ai_holder/simple_mob/melee/evasive/otie/cocoa hostile = 0 retaliate = 0 - violent_breakthrough = 0 \ No newline at end of file + violent_breakthrough = 0 diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm b/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm index 95a6eea482..7a22edf533 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm @@ -5,7 +5,7 @@ GLOBAL_VAR_INIT(chicken_count, 0) // How mant chickens DO we have? name = "chicken" desc = "Hopefully the eggs are good this season." tt_desc = "E Gallus gallus" - icon_state = "chicken" + icon_state = "chicken_white" icon_living = "chicken" icon_dead = "chicken_dead" diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/goia_ch.dm b/code/modules/mob/living/simple_mob/subtypes/vore/goia_ch.dm index b4a63adb93..f6db5841c4 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/goia_ch.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/goia_ch.dm @@ -1,4 +1,4 @@ -/mob/living/simple_mob/otie/zorgoia //Yes im basing the goias on oties for now, sue me....please dont sue me - Jack +/mob/living/simple_mob/vore/otie/zorgoia //Yes im basing the goias on oties for now, sue me....please dont sue me - Jack name = "zorgoia" desc = "It's a a reptilian mammal hybrid, known for its voracious nature and love for fruits. By more popular terms its refered to as the furry slinky!" tt_desc = "Zorgoyuh slinkus" @@ -33,7 +33,7 @@ pain_emote_1p = list("yelp", "whine", "bark", "growl") pain_emote_3p = list("yelps", "whines", "barks", "growls") -/mob/living/simple_mob/otie/zorgoia/New() +/mob/living/simple_mob/vore/otie/zorgoia/New() ..() switch(rand(9)) if(0) @@ -57,7 +57,7 @@ if(9) color = "#393939" -/mob/living/simple_mob/otie/zorgoia/feral //gets the pet2tame feature. starts out hostile tho so get gamblin' +/mob/living/simple_mob/vore/otie/zorgoia/feral //gets the pet2tame feature. starts out hostile tho so get gamblin' name = "agressive zorgoia" desc = "It's a a reptilian mammal hybrid, known for its voracious nature and love for fruits. By more popular terms its refered to as the furry slinky! This one seems quite hungry and in a bad mood!" faction = "virgo3b" @@ -71,7 +71,7 @@ min_n2 = 0 max_n2 = 0 -/mob/living/simple_mob/otie/zorgoia/friendly //gets the pet2tame feature and doesn't kill you right away +/mob/living/simple_mob/vore/otie/zorgoia/friendly //gets the pet2tame feature and doesn't kill you right away name = "friendly zorgoia" desc = "It's a a reptilian mammal hybrid, known for its voracious nature and love for fruits. By more popular terms its refered to as the furry slinky! This one seems harmless and friendly!" faction = "neutral" diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/jelly.dm b/code/modules/mob/living/simple_mob/subtypes/vore/jelly.dm index 0715a62d0c..1c364a0a54 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/jelly.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/jelly.dm @@ -1,4 +1,4 @@ -/mob/living/simple_mob/animal/space/jelly +/mob/living/simple_mob/vore/jelly name = "jelly blob" desc = "Some sort of undulating blob of slime!" @@ -19,8 +19,17 @@ can_be_drop_prey = FALSE //CHOMP Add + min_oxy = 0 + max_oxy = 0 + min_tox = 0 + max_tox = 0 + min_co2 = 0 + max_co2 = 0 + min_n2 = 0 + max_n2 = 0 + minbodytemp = 0 + // Activate Noms! -/mob/living/simple_mob/animal/space/jelly vore_active = 1 vore_pounce_chance = 0 vore_icons = SA_ICON_LIVING diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/Big.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/Big.dm index 92a8a46306..62c53af4d6 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/Big.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/Big.dm @@ -1,4 +1,4 @@ -/mob/living/simple_mob/mobs_monsters/clowns/big +/mob/living/simple_mob/clowns/big tt_desc = "E Homo sapiens corydon horrificus" //this clown is stronk faction = "clown" @@ -18,8 +18,6 @@ loot_list = list(/obj/item/weapon/bikehorn = 100) - -/mob/living/simple_mob/mobs_monsters/clowns/big min_oxy = 0 max_oxy = 500 min_tox = 0 @@ -41,4 +39,4 @@ can_flee = FALSE speak_chance = 3 wander = TRUE - base_wander_delay = 9 \ No newline at end of file + base_wander_delay = 9 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/Clowns.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/Clowns.dm index 9e0130f2aa..78dd49c4ab 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/Clowns.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/Clowns.dm @@ -1,4 +1,4 @@ -/mob/living/simple_mob/mobs_monsters/clowns/ +/mob/living/simple_mob/clowns/ tt_desc = "E Homo sapiens corydon" //this is a clown faction = "clown" movement_sound = 'sound/effects/clownstep2.ogg' diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/bigclowns.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/bigclowns.dm index 7602016b9e..6232d96d00 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/bigclowns.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/bigclowns.dm @@ -1,4 +1,4 @@ -/mob/living/simple_mob/mobs_monsters/clowns/big/normal +/mob/living/simple_mob/clowns/big/normal name = "Clown" desc = "A regular, every tuesday Clown." tt_desc = "E Homo sapiens corydon" //this is a clown @@ -10,7 +10,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/big/honkmunculus +/mob/living/simple_mob/clowns/big/honkmunculus name = "A Clown?" desc = "That clown has some interesting proportions." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -28,7 +28,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/cluwne +/mob/living/simple_mob/clowns/big/cluwne name = "A Clown?" desc = "Oh no not that thing." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -40,7 +40,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/big/tunnelclown +/mob/living/simple_mob/clowns/big/tunnelclown name = "A Clown?" desc = "Have you heard about our lord and savior, Honkus Chrust?" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -52,7 +52,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/big/sentinel +/mob/living/simple_mob/clowns/big/sentinel name = "A Clown?" desc = "This guy means business..." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -64,7 +64,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/big/punished +/mob/living/simple_mob/clowns/big/punished name = "A Clown?" desc = "A clown at peak performance." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -82,7 +82,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/thicc +/mob/living/simple_mob/clowns/big/thicc name = "A Clown..." desc = "I mean, you see it don't you?" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -100,7 +100,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/perm +/mob/living/simple_mob/clowns/big/perm name = "A Clown?" desc = "That clown really needs to get that hair under control." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -118,7 +118,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/wide +/mob/living/simple_mob/clowns/big/wide name = "A Clown?" desc = "He looks good from some angles!" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -136,7 +136,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/thin +/mob/living/simple_mob/clowns/big/thin name = "A Clown?" desc = "Is he eating enough?" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -148,7 +148,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/big/hulk +/mob/living/simple_mob/clowns/big/hulk name = "A Clown?" desc = "Just look at those muscles." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -168,7 +168,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/longface +/mob/living/simple_mob/clowns/big/longface name = "A Clown?" desc = "Why the long face?" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -186,7 +186,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/giggles +/mob/living/simple_mob/clowns/big/giggles name = "A Giggles?" desc = "Oh sweet space christ." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -198,7 +198,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/big/destroyer +/mob/living/simple_mob/clowns/big/destroyer name = "A Clown?" desc = "That clown looks like he means business." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -239,7 +239,7 @@ ) -/mob/living/simple_mob/mobs_monsters/clowns/big/chlown +/mob/living/simple_mob/clowns/big/chlown name = "A Clown?" desc = "No." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -257,7 +257,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/scary +/mob/living/simple_mob/clowns/big/scary name = "A Clown?" desc = "Hey that clown looks familiar!" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -269,7 +269,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/big/flesh +/mob/living/simple_mob/clowns/big/flesh name = "A Clown?" desc = "WOOOOO STREAKING WOOOO!" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -281,7 +281,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/big/clowns +/mob/living/simple_mob/clowns/big/clowns name = "Definitely a singular clown" desc = "Is it one clown, or many clowns in not a trenchcoat?" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -299,7 +299,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/mutant +/mob/living/simple_mob/clowns/big/mutant name = "A Clown?" desc = "Oh sweet space christ." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -317,7 +317,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/blob +/mob/living/simple_mob/clowns/big/blob name = "A Clown?" desc = "Go to a gym fatty!" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -335,7 +335,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/mayor +/mob/living/simple_mob/clowns/big/mayor name = "A clown?" desc = "One speaks in riddles..." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -353,7 +353,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/honkling +/mob/living/simple_mob/clowns/big/honkling name = "A Clown?" desc = "Oh sweet space christ." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -367,7 +367,7 @@ //template -///mob/living/simple_mob/mobs_monsters/clowns/big/ +///mob/living/simple_mob/clowns/big/ // name = "A Clown?" // desc = "Oh sweet space christ." // tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/bus.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/bus.dm index 8a51b77018..6ecc2b5bb7 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/bus.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/bus.dm @@ -1,7 +1,7 @@ -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift +/mob/living/simple_mob/clowns/big/c_shift tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown faction = "clown" -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/New() +/mob/living/simple_mob/clowns/big/c_shift/New() ..() - verbs += /mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/proc/phase_shift \ No newline at end of file + verbs += /mob/living/simple_mob/clowns/big/c_shift/proc/phase_shift diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/busclowns.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/busclowns.dm index 21b201bb37..6c0311ec0a 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/busclowns.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/busclowns.dm @@ -1,4 +1,4 @@ -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/anormal +/mob/living/simple_mob/clowns/big/c_shift/anormal name = "Clown" desc = "A regular, every tuesday Clown." tt_desc = "E Homo sapiens corydon" //this is a clown @@ -10,7 +10,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/honkmunculus +/mob/living/simple_mob/clowns/big/c_shift/honkmunculus name = "A Clown?" desc = "That clown has some interesting proportions." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -28,7 +28,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/cluwne +/mob/living/simple_mob/clowns/big/c_shift/cluwne name = "A Clown?" desc = "Oh no not that thing." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -40,7 +40,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/tunnelclown +/mob/living/simple_mob/clowns/big/c_shift/tunnelclown name = "A Clown?" desc = "Have you heard about our lord and savior, Honkus Chrust?" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -52,7 +52,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/sentinel +/mob/living/simple_mob/clowns/big/c_shift/sentinel name = "A Clown?" desc = "This guy means business..." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -64,7 +64,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/punished +/mob/living/simple_mob/clowns/big/c_shift/punished name = "A Clown?" desc = "A clown at peak performance." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -82,7 +82,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/thicc +/mob/living/simple_mob/clowns/big/c_shift/thicc name = "A Clown..." desc = "I mean, you see it don't you?" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -100,7 +100,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/perm +/mob/living/simple_mob/clowns/big/c_shift/perm name = "A Clown?" desc = "That clown really needs to get that hair under control." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -118,7 +118,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/wide +/mob/living/simple_mob/clowns/big/c_shift/wide name = "A Clown?" desc = "He looks good from some angles!" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -136,7 +136,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/thin +/mob/living/simple_mob/clowns/big/c_shift/thin name = "A Clown?" desc = "Is he eating enough?" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -148,7 +148,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/hulk +/mob/living/simple_mob/clowns/big/c_shift/hulk name = "A Clown?" desc = "Just look at those muscles." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -168,7 +168,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/longface +/mob/living/simple_mob/clowns/big/c_shift/longface name = "A Clown?" desc = "Why the long face?" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -186,7 +186,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/giggles +/mob/living/simple_mob/clowns/big/c_shift/giggles name = "A Giggles?" desc = "Oh sweet space christ." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -198,7 +198,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/destroyer +/mob/living/simple_mob/clowns/big/c_shift/destroyer name = "A Clown?" desc = "That clown looks like he means business." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -239,7 +239,7 @@ ) -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/chlown +/mob/living/simple_mob/clowns/big/c_shift/chlown name = "A Clown?" desc = "No." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -257,7 +257,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/scary +/mob/living/simple_mob/clowns/big/c_shift/scary name = "A Clown?" desc = "Hey that clown looks familiar!" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -269,7 +269,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/flesh +/mob/living/simple_mob/clowns/big/c_shift/flesh name = "A Clown?" desc = "WOOOOO STREAKING WOOOO!" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -281,7 +281,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/clowns +/mob/living/simple_mob/clowns/big/c_shift/clowns name = "Definitely a singular clown" desc = "Is it one clown, or many clowns in not a trenchcoat?" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -299,7 +299,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/mutant +/mob/living/simple_mob/clowns/big/c_shift/mutant name = "A Clown?" desc = "Oh sweet space christ." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -317,7 +317,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/blob +/mob/living/simple_mob/clowns/big/c_shift/blob name = "A Clown?" desc = "Go to a gym fatty!" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -335,7 +335,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/mayor +/mob/living/simple_mob/clowns/big/c_shift/mayor name = "A clown?" desc = "One speaks in riddles..." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -353,7 +353,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/honkling +/mob/living/simple_mob/clowns/big/c_shift/honkling name = "A Clown?" desc = "Oh sweet space christ." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/c_shift.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/c_shift.dm index bf56fd4e0e..a576a3e39e 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/c_shift.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/c_shift.dm @@ -1,8 +1,8 @@ -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift +/mob/living/simple_mob/clowns/big/c_shift var/ability_flags = 0 //Flags for active abilities // Phase shifting procs (and related procs) -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/proc/phase_shift() +/mob/living/simple_mob/clowns/big/c_shift/proc/phase_shift() var/turf/T = get_turf(src) if(!T.CanPass(src,T) || loc != T) to_chat(src,"You can't use that here!") @@ -73,23 +73,23 @@ density = FALSE force_max_speed = TRUE -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/UnarmedAttack() +/mob/living/simple_mob/clowns/big/c_shift/UnarmedAttack() if(ability_flags & AB_PHASE_SHIFTED) return FALSE //Nope. . = ..() -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/can_fall() +/mob/living/simple_mob/clowns/big/c_shift/can_fall() if(ability_flags & AB_PHASE_SHIFTED) return FALSE //Nope! return ..() -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/zMove(direction) +/mob/living/simple_mob/clowns/big/c_shift/zMove(direction) if(ability_flags & AB_PHASE_SHIFTED) var/turf/destination = (direction == UP) ? GetAbove(src) : GetBelow(src) if(destination) forceMove(destination) return TRUE - return ..() \ No newline at end of file + return ..() diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/hespawner.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/hespawner.dm index f92a9a07e6..42d553b8f1 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/hespawner.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/hespawner.dm @@ -17,7 +17,7 @@ /obj/structure/ghost_pod/manual/clegg/create_occupant(var/mob/M) lightning_strike(get_turf(src), cosmetic = TRUE) - var/list/choices = list(/mob/living/simple_mob/mobs_monsters/clowns/normal, /mob/living/simple_mob/mobs_monsters/clowns/honkling, /mob/living/simple_mob/mobs_monsters/clowns/mayor, /mob/living/simple_mob/mobs_monsters/clowns/blob, /mob/living/simple_mob/mobs_monsters/clowns/mutant, /mob/living/simple_mob/mobs_monsters/clowns/clowns, /mob/living/simple_mob/mobs_monsters/clowns/flesh, /mob/living/simple_mob/mobs_monsters/clowns/scary, /mob/living/simple_mob/mobs_monsters/clowns/chlown, /mob/living/simple_mob/mobs_monsters/clowns/destroyer, /mob/living/simple_mob/mobs_monsters/clowns/giggles, /mob/living/simple_mob/mobs_monsters/clowns/longface, /mob/living/simple_mob/mobs_monsters/clowns/hulk, /mob/living/simple_mob/mobs_monsters/clowns/thin, /mob/living/simple_mob/mobs_monsters/clowns/wide, /mob/living/simple_mob/mobs_monsters/clowns/perm, /mob/living/simple_mob/mobs_monsters/clowns/thicc, /mob/living/simple_mob/mobs_monsters/clowns/punished, /mob/living/simple_mob/mobs_monsters/clowns/sentinel, /mob/living/simple_mob/mobs_monsters/clowns/tunnelclown, /mob/living/simple_mob/mobs_monsters/clowns/cluwne, /mob/living/simple_mob/mobs_monsters/clowns/honkmunculus) + var/list/choices = list(/mob/living/simple_mob/clowns/normal, /mob/living/simple_mob/clowns/honkling, /mob/living/simple_mob/clowns/mayor, /mob/living/simple_mob/clowns/blob, /mob/living/simple_mob/clowns/mutant, /mob/living/simple_mob/clowns/clowns, /mob/living/simple_mob/clowns/flesh, /mob/living/simple_mob/clowns/scary, /mob/living/simple_mob/clowns/chlown, /mob/living/simple_mob/clowns/destroyer, /mob/living/simple_mob/clowns/giggles, /mob/living/simple_mob/clowns/longface, /mob/living/simple_mob/clowns/hulk, /mob/living/simple_mob/clowns/thin, /mob/living/simple_mob/clowns/wide, /mob/living/simple_mob/clowns/perm, /mob/living/simple_mob/clowns/thicc, /mob/living/simple_mob/clowns/punished, /mob/living/simple_mob/clowns/sentinel, /mob/living/simple_mob/clowns/tunnelclown, /mob/living/simple_mob/clowns/cluwne, /mob/living/simple_mob/clowns/honkmunculus) var/chosen_clown = tgui_input_list(M, "Redspace clowns like themes, what's yours?", "Theme Choice", choices) density = FALSE var/mob/living/simple_mob/R = new chosen_clown(get_turf(src)) @@ -27,4 +27,4 @@ R.ckey = M.ckey visible_message("With a bright flash of light, \the [src] disappears, and in its place you see a... Clown?") log_and_message_admins("successfully touched \a [src] and summoned a mistake!") - ..() \ No newline at end of file + ..() diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/honkelemental.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/honkelemental.dm index 00dab095de..66807e24a2 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/honkelemental.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/honkelemental.dm @@ -1,4 +1,4 @@ -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/honkelemental +/mob/living/simple_mob/clowns/big/c_shift/honkelemental name = "Honk Elemental" desc = "That thing can't be real, right?" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -23,7 +23,7 @@ speak = list("HONK", "Honk!", "Henk!") emote_see = list("honks") -/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/honkelemental/verb/spawn_egg() +/mob/living/simple_mob/clowns/big/c_shift/honkelemental/verb/spawn_egg() set category = "Abilities" set name = "Spawn Clown Egg" set desc = "Spawns an egg that a player can touch, which will call on ghosts to spawn as clowns." @@ -32,4 +32,4 @@ return new /obj/structure/ghost_pod/manual/clegg(get_turf(src)) - flick("he_lay",src) \ No newline at end of file + flick("he_lay",src) diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/regularclowns.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/regularclowns.dm index d32af4a5ab..0db552feba 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/regularclowns.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/mobs_monsters/clowns/regularclowns.dm @@ -1,4 +1,4 @@ -/mob/living/simple_mob/mobs_monsters/clowns/ +/mob/living/simple_mob/clowns/ response_help = "pokes" response_disarm = "gently pushes aside" response_harm = "hits" @@ -13,7 +13,7 @@ -/mob/living/simple_mob/mobs_monsters/clowns/honkmunculus +/mob/living/simple_mob/clowns/honkmunculus name = "A Clown?" desc = "That clown has some interesting proportions." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -31,7 +31,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/cluwne +/mob/living/simple_mob/clowns/cluwne name = "A Clown?" desc = "Oh no not that thing." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -43,7 +43,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/tunnelclown +/mob/living/simple_mob/clowns/tunnelclown name = "A Clown?" desc = "Have you heard about our lord and savior, Honkus Chrust?" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -55,7 +55,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/sentinel +/mob/living/simple_mob/clowns/sentinel name = "A Clown?" desc = "This guy means business..." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -68,7 +68,7 @@ -/mob/living/simple_mob/mobs_monsters/clowns/punished +/mob/living/simple_mob/clowns/punished name = "A Clown?" desc = "A clown at peak performance." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -86,7 +86,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/thicc +/mob/living/simple_mob/clowns/thicc name = "A Clown..." desc = "I mean, you see it don't you?" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -104,7 +104,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/perm +/mob/living/simple_mob/clowns/perm name = "A Clown?" desc = "That clown really needs to get that hair under control." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -122,7 +122,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/wide +/mob/living/simple_mob/clowns/wide name = "A Clown?" desc = "He looks good from some angles!" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -140,7 +140,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/thin +/mob/living/simple_mob/clowns/thin name = "A Clown?" desc = "Is he eating enough?" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -152,7 +152,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/hulk +/mob/living/simple_mob/clowns/hulk name = "A Clown?" desc = "Just look at those muscles." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -170,7 +170,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/longface +/mob/living/simple_mob/clowns/longface name = "A Clown?" desc = "Why the long face?" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -188,7 +188,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/giggles +/mob/living/simple_mob/clowns/giggles name = "A Giggles?" desc = "Oh sweet space christ." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -200,7 +200,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/destroyer +/mob/living/simple_mob/clowns/destroyer name = "A Clown?" desc = "That clown looks like he means business." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -218,7 +218,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/chlown +/mob/living/simple_mob/clowns/chlown name = "A Clown?" desc = "No." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -236,7 +236,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/scary +/mob/living/simple_mob/clowns/scary name = "A Clown?" desc = "Hey that clown looks familiar!" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -248,7 +248,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/flesh +/mob/living/simple_mob/clowns/flesh name = "A Clown?" desc = "WOOOOO STREAKING WOOOO!" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -260,7 +260,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/clowns +/mob/living/simple_mob/clowns/clowns name = "Definitely a singular clown" desc = "Is it one clown, or many clowns in not a trenchcoat?" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -278,7 +278,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/mutant +/mob/living/simple_mob/clowns/mutant name = "A Clown?" desc = "Oh sweet space christ." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -296,7 +296,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/blob +/mob/living/simple_mob/clowns/blob name = "A Clown?" desc = "Go to a gym fatty!" tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -314,7 +314,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/mayor +/mob/living/simple_mob/clowns/mayor name = "A clown?" desc = "One speaks in riddles..." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -332,7 +332,7 @@ pixel_y = 0 -/mob/living/simple_mob/mobs_monsters/clowns/honkling +/mob/living/simple_mob/clowns/honkling name = "A Clown?" desc = "Oh sweet space christ." tt_desc = "E Homo sapiens corydon horrificus" //this is a redspace clown @@ -344,7 +344,7 @@ vis_height = 32 -/mob/living/simple_mob/mobs_monsters/clowns/normal +/mob/living/simple_mob/clowns/normal name = "Clown" desc = "A regular, every tuesday Clown." tt_desc = "E Homo sapiens corydon" //this is a clown @@ -361,4 +361,4 @@ response_help = "pokes" response_disarm = "gently pushes aside" - response_harm = "hits" \ No newline at end of file + response_harm = "hits" diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm b/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm index 7308bf7f8c..83f001f04a 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm @@ -1,6 +1,6 @@ #define MORPH_COOLDOWN 50 -/mob/living/simple_mob/vore/hostile/morph +/mob/living/simple_mob/vore/morph name = "morph" real_name = "morph" desc = "A revolting, pulsating pile of flesh." @@ -58,25 +58,25 @@ var/static/list/blacklist_typecache = typecacheof(list( /obj/screen, /obj/singularity, - /mob/living/simple_mob/vore/hostile/morph, + /mob/living/simple_mob/vore/morph, /obj/effect)) -/mob/living/simple_mob/vore/hostile/morph/Initialize() +/mob/living/simple_mob/vore/morph/Initialize() verbs += /mob/living/proc/ventcrawl - verbs += /mob/living/simple_mob/vore/hostile/morph/proc/take_over_prey - if(!istype(src, /mob/living/simple_mob/vore/hostile/morph/dominated_prey)) - verbs += /mob/living/simple_mob/vore/hostile/morph/proc/morph_color + verbs += /mob/living/simple_mob/vore/morph/proc/take_over_prey + if(!istype(src, /mob/living/simple_mob/vore/morph/dominated_prey)) + verbs += /mob/living/simple_mob/vore/morph/proc/morph_color return ..() -/mob/living/simple_mob/vore/hostile/morph/Destroy() +/mob/living/simple_mob/vore/morph/Destroy() form = null return ..() -/mob/living/simple_mob/vore/hostile/morph/proc/allowed(atom/movable/A) +/mob/living/simple_mob/vore/morph/proc/allowed(atom/movable/A) return !is_type_in_typecache(A, blacklist_typecache) && (isobj(A) || ismob(A)) -/mob/living/simple_mob/vore/hostile/morph/examine(mob/user) +/mob/living/simple_mob/vore/morph/examine(mob/user) if(morphed) . = form.examine(user) if(get_dist(user, src) <= 3 && !resting) @@ -84,7 +84,7 @@ else . = ..() -/mob/living/simple_mob/vore/hostile/morph/ShiftClickOn(atom/movable/A) +/mob/living/simple_mob/vore/morph/ShiftClickOn(atom/movable/A) if(Adjacent(A)) if(morph_time <= world.time && !stat) if(A == src) @@ -97,7 +97,7 @@ else ..() -/mob/living/simple_mob/vore/hostile/morph/proc/assume(atom/movable/target) +/mob/living/simple_mob/vore/morph/proc/assume(atom/movable/target) var/mob/living/carbon/human/humantarget = target if(istype(humantarget) && humantarget.resleeve_lock && ckey != humantarget.resleeve_lock) to_chat(src, "[target] cannot be impersonated!") @@ -142,7 +142,7 @@ return -/mob/living/simple_mob/vore/hostile/morph/proc/restore(var/silent = FALSE) +/mob/living/simple_mob/vore/morph/proc/restore(var/silent = FALSE) if(!morphed) to_chat(src, "You're already in your normal form!") return @@ -187,21 +187,21 @@ morph_time = world.time + MORPH_COOLDOWN -/mob/living/simple_mob/vore/hostile/morph/death(gibbed) +/mob/living/simple_mob/vore/morph/death(gibbed) if(morphed) visible_message("[src] twists and dissolves into a pile of flesh!") restore(TRUE) ..() -/mob/living/simple_mob/vore/hostile/morph/will_show_tooltip() +/mob/living/simple_mob/vore/morph/will_show_tooltip() return (!morphed) -/mob/living/simple_mob/vore/hostile/morph/resize(var/new_size, var/animate = TRUE, var/uncapped = FALSE, var/ignore_prefs = FALSE, var/aura_animation = TRUE) +/mob/living/simple_mob/vore/morph/resize(var/new_size, var/animate = TRUE, var/uncapped = FALSE, var/ignore_prefs = FALSE, var/aura_animation = TRUE) if(morphed && !ismob(form)) return return ..() -/mob/living/simple_mob/vore/hostile/morph/lay_down() +/mob/living/simple_mob/vore/morph/lay_down() if(morphed) var/temp_state = icon_state ..() @@ -225,18 +225,18 @@ else ..() -/mob/living/simple_mob/vore/hostile/morph/update_icon() +/mob/living/simple_mob/vore/morph/update_icon() if(morphed) return return ..() -/mob/living/simple_mob/vore/hostile/morph/update_icons() +/mob/living/simple_mob/vore/morph/update_icons() if(morphed) return return ..() -/mob/living/simple_mob/vore/hostile/morph/update_transform() +/mob/living/simple_mob/vore/morph/update_transform() if(morphed) var/matrix/M = matrix() M.Scale(icon_scale_x, icon_scale_y) @@ -245,7 +245,7 @@ else ..() -/mob/living/simple_mob/vore/hostile/morph/proc/morph_color() +/mob/living/simple_mob/vore/morph/proc/morph_color() set name = "Pick Color" set category = "Abilities" set desc = "You can set your color!" @@ -255,7 +255,7 @@ chosen_color = newcolor -/mob/living/simple_mob/vore/hostile/morph/proc/take_over_prey() +/mob/living/simple_mob/vore/morph/proc/take_over_prey() set name = "Take Over Prey" set category = "Abilities" set desc = "Take command of your prey's body." @@ -302,23 +302,23 @@ stop_pulling() original_ckey = ckey log_and_message_admins("[key_name_admin(src)] has swapped bodies with [key_name_admin(M)] as a morph at [get_area(src)] - [COORD(src)].") - new /mob/living/simple_mob/vore/hostile/morph/dominated_prey(M.vore_selected, M.ckey, src, M) + new /mob/living/simple_mob/vore/morph/dominated_prey(M.vore_selected, M.ckey, src, M) else to_chat(src, "\The [M] declined your request for control.") else to_chat(src, "\The [M] declined your request for control.") -/mob/living/simple_mob/vore/hostile/morph/dominated_prey +/mob/living/simple_mob/vore/morph/dominated_prey name = "subservient node" color = "#171717" digestable = 0 devourable = 0 - var/mob/living/simple_mob/vore/hostile/morph/parent_morph + var/mob/living/simple_mob/vore/morph/parent_morph var/mob/living/carbon/human/prey_body var/prey_ckey -/mob/living/simple_mob/vore/hostile/morph/dominated_prey/New(loc, pckey, parent, prey) +/mob/living/simple_mob/vore/morph/dominated_prey/New(loc, pckey, parent, prey) . = ..() if(pckey) prey_ckey = pckey @@ -336,17 +336,17 @@ else qdel(src) -/mob/living/simple_mob/vore/hostile/morph/dominated_prey/death(gibbed) +/mob/living/simple_mob/vore/morph/dominated_prey/death(gibbed) . = ..() undo_prey_takeover(FALSE) -/mob/living/simple_mob/vore/hostile/morph/dominated_prey/Destroy() +/mob/living/simple_mob/vore/morph/dominated_prey/Destroy() . = ..() parent_morph = null prey_body = null -/mob/living/simple_mob/vore/hostile/morph/dominated_prey/proc/undo_prey_takeover(ooc_escape) +/mob/living/simple_mob/vore/morph/dominated_prey/proc/undo_prey_takeover(ooc_escape) if(buckled) buckled.unbuckle_mob() if(prey_body.buckled) diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm b/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm index ba3a14bccd..2ddc698837 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm @@ -6,7 +6,7 @@ **the catalogue entry ends here.**" value = CATALOGUER_REWARD_MEDIUM -/mob/living/simple_mob/otie //Spawn this one only if you're looking for a bad time. Not friendly. +/mob/living/simple_mob/vore/otie //Spawn this one only if you're looking for a bad time. Not friendly. name = "otie" desc = "The classic bioengineered longdog." tt_desc = "Otus robustus" @@ -57,7 +57,7 @@ // Activate Noms! -/mob/living/simple_mob/otie +/mob/living/simple_mob/vore/otie vore_active = 1 vore_capacity = 1 vore_pounce_chance = 20 @@ -68,7 +68,7 @@ vore_default_contamination_color = "black" vore_default_item_mode = IM_DIGEST -/mob/living/simple_mob/otie/feral //gets the pet2tame feature. starts out hostile tho so get gamblin' +/mob/living/simple_mob/vore/otie/feral //gets the pet2tame feature. starts out hostile tho so get gamblin' name = "mutated feral otie" desc = "The classic bioengineered longdog. No pets. Only bite. This one seems to have developed a mutation from an abnormally phoron-rich diet." //CHOMPedit tt_desc = "Otus phoronis" @@ -89,14 +89,14 @@ max_n2 = 0 has_eye_glow = TRUE -/mob/living/simple_mob/otie/feral/chubby +/mob/living/simple_mob/vore/otie/feral/chubby name = "chubby mutated feral otie" desc = "The classic bioengineered longdog. No pets. Only bite. This one seems to have developed a mutation from an abnormally phoron-rich diet. What an absolute unit." //CHOMPedit icon_state = "photiec" icon_living = "photiec" icon_rest = "photiec_rest" -/mob/living/simple_mob/otie/red +/mob/living/simple_mob/vore/otie/red name = "feral red otie" desc = "Seems this ominous looking longdog has been infused with wicked infernal forces." tt_desc = "Otus infernalis" @@ -118,13 +118,13 @@ maxbodytemp = 1000 has_eye_glow = TRUE -/mob/living/simple_mob/otie/red/friendly //gets the pet2tame feature and doesn't kill you right away +/mob/living/simple_mob/vore/otie/red/friendly //gets the pet2tame feature and doesn't kill you right away name = "red otie" desc = "Seems this ominous looking longdog has been infused with wicked infernal forces. This one seems rather peaceful though." faction = "neutral" tamed = 1 -/mob/living/simple_mob/otie/red/chubby //gets the pet2tame feature and doesn't kill you right away +/mob/living/simple_mob/vore/otie/red/chubby //gets the pet2tame feature and doesn't kill you right away name = "chubby red otie" desc = "Seems this ominous looking longdog has been infused with wicked infernal forces. What an absolute unit." icon_state = "hotiec" @@ -133,20 +133,20 @@ faction = "neutral" tamed = 1 -/mob/living/simple_mob/otie/friendly //gets the pet2tame feature and doesn't kill you right away +/mob/living/simple_mob/vore/otie/friendly //gets the pet2tame feature and doesn't kill you right away name = "otie" desc = "The classic bioengineered longdog. This one might even tolerate you!" faction = "neutral" tamed = 1 -/mob/living/simple_mob/otie/friendly/chubby +/mob/living/simple_mob/vore/otie/friendly/chubby name = "chubby otie" desc = "The classic bioengineered longdog. This one might even tolerate you! What an absolute unit" icon_state = "fotie" icon_living = "fotie" icon_rest = "fotie_rest" -/mob/living/simple_mob/otie/cotie //same as above but has a little collar :v +/mob/living/simple_mob/vore/otie/cotie //same as above but has a little collar :v name = "tamed otie" desc = "The classic bioengineered longdog. This one has a nice little collar on its neck. However a proper domesticated otie is an oxymoron and the collar is likely just a decoration." icon_state = "cotie" @@ -155,14 +155,14 @@ faction = "neutral" tamed = 1 -/mob/living/simple_mob/otie/cotie/chubby +/mob/living/simple_mob/vore/otie/cotie/chubby name = "chubby tamed otie" desc = "The classic bioengineered longdog. This one has a nice little collar on its neck. What an absolute unit." icon_state = "fcotie" icon_living = "fcotie" icon_rest = "fcotie_rest" -/mob/living/simple_mob/otie/cotie/phoron //friendly phoron pup with collar +/mob/living/simple_mob/vore/otie/cotie/phoron //friendly phoron pup with collar name = "mutated otie" desc = "Looks like someone did manage to domesticate one of those wild phoron mutants. What a badass." tt_desc = "Otus phoronis" @@ -180,7 +180,7 @@ max_n2 = 0 has_eye_glow = TRUE -/mob/living/simple_mob/otie/security //tame by default unless you're a marked crimester. can be befriended to follow with pets tho. +/mob/living/simple_mob/vore/otie/security //tame by default unless you're a marked crimester. can be befriended to follow with pets tho. name = "guard otie" desc = "The VARMAcorp bioengineering division flagship product on big mean guard dogs." icon_state = "sotie" @@ -198,7 +198,7 @@ var/check_records = 0 // If true, arrests people without a record. var/check_arrest = 1 // If true, arrests people who are set to arrest. -/mob/living/simple_mob/otie/security/chubby +/mob/living/simple_mob/vore/otie/security/chubby name = "chubby guard otie" desc = "The VARMAcorp bioengineering division flagship product on big mean guard dogs. What an absolute unit." icon_state = "fsotie" @@ -206,7 +206,7 @@ icon_rest = "fsotie_rest" icon_dead = "fsotie-dead" -/mob/living/simple_mob/otie/security/phoron +/mob/living/simple_mob/vore/otie/security/phoron name = "mutated guard otie" desc = "An extra rare phoron resistant version of the VARMAcorp trained guard dogs adapted for hostile environments." tt_desc = "Otus phoronis" @@ -223,7 +223,7 @@ min_n2 = 0 max_n2 = 0 -/mob/living/simple_mob/otie/security/phoron/red +/mob/living/simple_mob/vore/otie/security/phoron/red name = "red guard otie" desc = "An ominous looking version of the big mean VARMAcorp guard dogs." tt_desc = "Otus infernalis" @@ -233,20 +233,20 @@ icon_dead = "sechotie-dead" maxbodytemp = 1000 -/mob/living/simple_mob/otie/security/phoron/red/chubby +/mob/living/simple_mob/vore/otie/security/phoron/red/chubby name = "chubby red guard otie" desc = "An ominous looking version of the big mean VARMAcorp guard dogs. What an absolute unit." icon_state = "hotiesc" icon_living = "hotiesc" icon_rest = "hotiesc_rest" -/mob/living/simple_mob/otie/attackby(var/obj/item/O, var/mob/user) // Trade donuts for bellybrig victims. +/mob/living/simple_mob/vore/otie/attackby(var/obj/item/O, var/mob/user) // Trade donuts for bellybrig victims. if(istype(O, /obj/item/weapon/reagent_containers/food)) qdel(O) playsound(src,'sound/items/eatfood.ogg', rand(10,50), 1) if(!has_AI())//No autobarf on player control. return - if(istype(O, /obj/item/weapon/reagent_containers/food/snacks/donut) && istype(src, /mob/living/simple_mob/otie/security)) + if(istype(O, /obj/item/weapon/reagent_containers/food/snacks/donut) && istype(src, /mob/living/simple_mob/vore/otie/security)) to_chat(user,"The guard pup accepts your offer for their catch.") release_vore_contents() else if(prob(2)) //Small chance to get prey out from non-sec oties. @@ -255,7 +255,7 @@ return . = ..() -/mob/living/simple_mob/otie/security/feed_grabbed_to_self(var/mob/living/user, var/mob/living/prey) // Make the gut start out safe for bellybrigging. +/mob/living/simple_mob/vore/otie/security/feed_grabbed_to_self(var/mob/living/user, var/mob/living/prey) // Make the gut start out safe for bellybrigging. if(ishuman(prey)) vore_selected.digest_mode = DM_HOLD if(check_threat(prey) >= 4) @@ -264,12 +264,12 @@ vore_selected.digest_mode = DM_DIGEST . = ..() -/mob/living/simple_mob/otie/security/proc/check_threat(var/mob/living/M) +/mob/living/simple_mob/vore/otie/security/proc/check_threat(var/mob/living/M) if(!M || !ishuman(M) || M.stat == DEAD || src == M) return 0 return M.assess_perp(0, 0, 0, check_records, check_arrest) -/mob/living/simple_mob/otie/security/proc/target_name(mob/living/T) +/mob/living/simple_mob/vore/otie/security/proc/target_name(mob/living/T) if(ishuman(T)) var/mob/living/carbon/human/H = T return H.get_id_name("unidentified person") @@ -277,7 +277,7 @@ //Pet 4 friendly -/mob/living/simple_mob/otie/attack_hand(mob/living/carbon/human/M as mob) +/mob/living/simple_mob/vore/otie/attack_hand(mob/living/carbon/human/M as mob) switch(M.a_intent) if(I_HELP) @@ -314,12 +314,12 @@ else ..() -/mob/living/simple_mob/otie/death(gibbed, deathmessage = "dies!") +/mob/living/simple_mob/vore/otie/death(gibbed, deathmessage = "dies!") .=..() resting = 0 icon_state = icon_dead -/mob/living/simple_mob/otie/Login() +/mob/living/simple_mob/vore/otie/Login() . = ..() if(!riding_datum) riding_datum = new /datum/riding/simple_mob(src) @@ -327,7 +327,7 @@ verbs |= /mob/living/proc/toggle_rider_reins movement_cooldown = 0 -/mob/living/simple_mob/otie/MouseDrop_T(mob/living/M, mob/living/user) +/mob/living/simple_mob/vore/otie/MouseDrop_T(mob/living/M, mob/living/user) return /datum/say_list/otie @@ -339,7 +339,7 @@ /datum/ai_holder/simple_mob/melee/evasive/otie -/datum/ai_holder/simple_mob/melee/evasive/otie/New(var/mob/living/simple_mob/otie/new_holder) +/datum/ai_holder/simple_mob/melee/evasive/otie/New(var/mob/living/simple_mob/vore/otie/new_holder) .=..() if(new_holder.tamed) hostile = FALSE diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm b/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm index d0f63a8730..428f68e113 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm @@ -5,7 +5,7 @@ love to nip and bite at things, as well as sniffing around. They seem to mark their territory by way of scent-marking/urinating on things." value = CATALOGUER_REWARD_EASY -/mob/living/simple_mob/animal/wolf +/mob/living/simple_mob/vore/wolf name = "grey wolf" desc = "My, what big jaws it has!" tt_desc = "Canis lupus" @@ -42,7 +42,7 @@ // Activate Noms! -/mob/living/simple_mob/animal/wolf +/mob/living/simple_mob/vore/wolf vore_active = 1 vore_icons = SA_ICON_LIVING @@ -59,7 +59,7 @@ B.belly_fullscreen = "anim_belly" // CHOMPedit - Belly Fullscreen // Space edition, stronger and bitier -/mob/living/simple_mob/animal/wolf/space +/mob/living/simple_mob/vore/wolf/space name = "space wolf" tt_desc = "Canis lupus aetherius" @@ -83,10 +83,10 @@ minbodytemp = 0 maxbodytemp = 700 -/mob/living/simple_mob/animal/wolf/space/Process_Spacemove(var/check_drift = 0) +/mob/living/simple_mob/vore/wolf/space/Process_Spacemove(var/check_drift = 0) return TRUE -/mob/living/simple_mob/animal/wolf/direwolf +/mob/living/simple_mob/vore/wolf/direwolf name = "dire wolf" desc = "The biggest and baddest wolf around." tt_desc = "Canis maxdirus" @@ -116,7 +116,7 @@ buckle_lying = FALSE vore_icons = SA_ICON_LIVING | SA_ICON_REST -/mob/living/simple_mob/animal/wolf/direwolf/Login() +/mob/living/simple_mob/vore/wolf/direwolf/Login() . = ..() if(!riding_datum) riding_datum = new /datum/riding/simple_mob(src) @@ -124,10 +124,10 @@ verbs |= /mob/living/proc/toggle_rider_reins movement_cooldown = -1 -/mob/living/simple_mob/animal/wolf/direwolf/MouseDrop_T(mob/living/M, mob/living/user) +/mob/living/simple_mob/vore/wolf/direwolf/MouseDrop_T(mob/living/M, mob/living/user) return -/mob/living/simple_mob/animal/wolf/direwolf/dog +/mob/living/simple_mob/vore/wolf/direwolf/dog name = "large dog" desc = "The biggest and goodest dog around." tt_desc = "Canis maxdirus familiaris" @@ -136,7 +136,7 @@ icon_state = "diredog" icon_rest = "diredog_rest" -/mob/living/simple_mob/animal/wolf/direwolf/dog/sec +/mob/living/simple_mob/vore/wolf/direwolf/dog/sec name = "large guard dog" desc = "The biggest and goodest guard dog around." icon_dead = "diredogs-dead" @@ -144,7 +144,7 @@ icon_state = "diredogs" icon_rest = "diredogs_rest" -/mob/living/simple_mob/animal/wolf/direwolf/sec +/mob/living/simple_mob/vore/wolf/direwolf/sec name = "dire guard wolf" desc = "The biggest and baddest guard wolf around." icon_dead = "direwolfs-dead" @@ -152,7 +152,7 @@ icon_state = "direwolfs" icon_rest = "direwolfs_rest" -/mob/living/simple_mob/animal/wolf/direwolf/rykka +/mob/living/simple_mob/vore/wolf/direwolf/rykka name = "Rykka" desc = "This big canine looks like a GSD. It has a collar tagged, 'Bitch'" tt_desc = "Canidae" @@ -186,7 +186,7 @@ vore_stomach_name = "Gut" vore_stomach_flavor = "A black-and-purple veined gut, pulsing warmly around you. Loud gurgles sound around you as the gut squishes inwards and attempts to crush you - Rykka seems intent on digesting you, like the meat you are." -/mob/living/simple_mob/animal/wolf/direwolf/andrews +/mob/living/simple_mob/vore/wolf/direwolf/andrews name = "andrewsarchus" desc = "That's one massive mean-looking piece of long extinct megafauna." tt_desc = "Andrewsarchus mongoliensis" diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm b/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm index 48cb351290..495c69963d 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm @@ -223,10 +223,11 @@ response_disarm = "gently pushes aside" response_harm = "hits" - +// Chomp EDIT /mob/living/simple_mob/hostile/carp/pike vore_active = 1 // NO VORE SPRITES +// Chomp EDIT END /mob/living/simple_mob/animal/space/carp/holographic vore_icons = 0 // NO VORE SPRITES diff --git a/code/modules/mob/theme_lists.dm b/code/modules/mob/theme_lists.dm new file mode 100644 index 0000000000..f93277c3c1 --- /dev/null +++ b/code/modules/mob/theme_lists.dm @@ -0,0 +1,10 @@ +//For use with various spawners! Put your selections inside of a list! +/var/global/list/theme_animal = list() +/var/global/list/theme_monster = list() +/var/global/list/theme_alien = list() +/var/global/list/theme_cold = list() +/var/global/list/theme_hot = list() +/var/global/list/theme_aquatic = list() +/var/global/list/theme_dark = list() +/var/global/list/theme_forest = list() +/var/global/list/theme_humanoid = list() diff --git a/code/modules/rogueminer_vr/controller.dm b/code/modules/rogueminer_vr/controller.dm index efff235f2e..47017c7620 100644 --- a/code/modules/rogueminer_vr/controller.dm +++ b/code/modules/rogueminer_vr/controller.dm @@ -75,17 +75,17 @@ var/datum/controller/rogue/rm_controller /mob/living/simple_mob/animal/space/bats/roguemines = 1, /mob/living/simple_mob/animal/space/carp/roguemines = 2, /mob/living/simple_mob/animal/space/goose/roguemines = 2, - /mob/living/simple_mob/animal/wolf/space/roguemines = 1), + /mob/living/simple_mob/vore/wolf/space/roguemines = 1), "tier3" = list( /mob/living/simple_mob/animal/space/carp/roguemines = 1, /mob/living/simple_mob/animal/space/goose/roguemines = 1, - /mob/living/simple_mob/animal/wolf/space/roguemines = 3, + /mob/living/simple_mob/vore/wolf/space/roguemines = 3, /mob/living/simple_mob/animal/space/carp/large/roguemines = 2, /mob/living/simple_mob/animal/space/bear/roguemines = 1), "tier4" = list( - /mob/living/simple_mob/animal/wolf/space/roguemines = 1, + /mob/living/simple_mob/vore/wolf/space/roguemines = 1, /mob/living/simple_mob/animal/space/carp/large/roguemines = 4, /mob/living/simple_mob/animal/space/bear/roguemines = 2), @@ -199,4 +199,4 @@ var/datum/controller/rogue/rm_controller var/datum/rogue/zonemaster/ZM_oldest = get_oldest_zone() if(ZM_oldest) ZM_oldest.clean_zone() - return ZM_target \ No newline at end of file + return ZM_target diff --git a/code/modules/rogueminer_vr/roguemines_mobs.dm b/code/modules/rogueminer_vr/roguemines_mobs.dm index a296c6d811..85c581d61e 100644 --- a/code/modules/rogueminer_vr/roguemines_mobs.dm +++ b/code/modules/rogueminer_vr/roguemines_mobs.dm @@ -7,7 +7,7 @@ /mob/living/simple_mob/animal/space/goose/roguemines faction = "roguemines" -/mob/living/simple_mob/animal/wolf/space/roguemines +/mob/living/simple_mob/vore/wolf/space/roguemines faction = "roguemines" /mob/living/simple_mob/animal/space/carp/large/roguemines @@ -20,4 +20,4 @@ faction = "roguemines" /mob/living/simple_mob/animal/space/carp/large/huge/roguemines - faction = "roguemines" \ No newline at end of file + faction = "roguemines" diff --git a/code/modules/telesci/telesci_computer.dm b/code/modules/telesci/telesci_computer.dm index 2ef55c1f03..d58956c110 100644 --- a/code/modules/telesci/telesci_computer.dm +++ b/code/modules/telesci/telesci_computer.dm @@ -207,12 +207,14 @@ sparks() if(telepad) var/L = get_turf(telepad) - var/blocked = list(/mob/living/simple_mob/hostile) - var/list/hostiles = typesof(/mob/living/simple_mob/hostile) - blocked + var/blocked = list(/mob/living/simple_mob/vore) + var/list/hostiles = typesof(/mob/living/simple_mob/vore) - blocked playsound(L, 'sound/effects/phasein.ogg', 100, 1, extrarange = 3, falloff = 5) for(var/i in 1 to rand(1,4)) var/chosen = pick(hostiles) - var/mob/living/simple_mob/hostile/H = new chosen + var/mob/living/simple_mob/vore/H = new chosen + if(H.ai_holder) + H.ai_holder.hostile = TRUE H.forceMove(L) return if(99) diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index 79fae032e4..238d556dc2 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -700,8 +700,8 @@ if (!(M in contents)) return 0 // They weren't in this belly anyway - if(istype(M, /mob/living/simple_mob/vore/hostile/morph/dominated_prey)) - var/mob/living/simple_mob/vore/hostile/morph/dominated_prey/p = M + if(istype(M, /mob/living/simple_mob/vore/morph/dominated_prey)) + var/mob/living/simple_mob/vore/morph/dominated_prey/p = M p.undo_prey_takeover(FALSE) return 0 for(var/mob/living/L in M.contents) diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index 7a429a2db0..28067cb97d 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -501,8 +501,8 @@ //You're in a belly! if(isbelly(loc)) //You've been taken over by a morph - if(istype(src, /mob/living/simple_mob/vore/hostile/morph/dominated_prey)) - var/mob/living/simple_mob/vore/hostile/morph/dominated_prey/s = src + if(istype(src, /mob/living/simple_mob/vore/morph/dominated_prey)) + var/mob/living/simple_mob/vore/morph/dominated_prey/s = src s.undo_prey_takeover(TRUE) return var/obj/belly/B = loc diff --git a/code/modules/vore/mouseray.dm b/code/modules/vore/mouseray.dm index 725deaef9c..ba154ea205 100644 --- a/code/modules/vore/mouseray.dm +++ b/code/modules/vore/mouseray.dm @@ -393,18 +393,18 @@ "space bear" = /mob/living/simple_mob/animal/space/bear, "voracious lizard" = /mob/living/simple_mob/vore/aggressive/dino, "giant frog" = /mob/living/simple_mob/vore/aggressive/frog, - "jelly blob" = /mob/living/simple_mob/animal/space/jelly, - "wolf" = /mob/living/simple_mob/animal/wolf, - "direwolf" = /mob/living/simple_mob/animal/wolf/direwolf, + "jelly blob" = /mob/living/simple_mob/vore/jelly, + "wolf" = /mob/living/simple_mob/vore/wolf, + "direwolf" = /mob/living/simple_mob/vore/wolf/direwolf, "great wolf" = /mob/living/simple_mob/vore/greatwolf, "sect queen" = /mob/living/simple_mob/vore/sect_queen, "sect drone" = /mob/living/simple_mob/vore/sect_drone, "panther" = /mob/living/simple_mob/vore/aggressive/panther, "giant snake" = /mob/living/simple_mob/vore/aggressive/giant_snake, "deathclaw" = /mob/living/simple_mob/vore/aggressive/deathclaw, - "otie" = /mob/living/simple_mob/otie, - "mutated otie" =/mob/living/simple_mob/otie/feral, - "red otie" = /mob/living/simple_mob/otie/red, + "otie" = /mob/living/simple_mob/vore/otie, + "mutated otie" =/mob/living/simple_mob/vore/otie/feral, + "red otie" = /mob/living/simple_mob/vore/otie/red, "defanged xenomorph" = /mob/living/simple_mob/vore/xeno_defanged, "catslug" = /mob/living/simple_mob/vore/alienanimals/catslug, "teppi" = /mob/living/simple_mob/vore/alienanimals/teppi, @@ -471,11 +471,11 @@ /obj/item/weapon/gun/energy/mouseray/otie name = "otie ray" - tf_type = /mob/living/simple_mob/otie + tf_type = /mob/living/simple_mob/vore/otie /obj/item/weapon/gun/energy/mouseray/direwolf name = "dire wolf ray" - tf_type = /mob/living/simple_mob/animal/wolf/direwolf + tf_type = /mob/living/simple_mob/vore/wolf/direwolf /obj/item/weapon/gun/energy/mouseray/giantrat name = "giant rat ray" diff --git a/code/modules/xenoarcheaology/artifacts/replicator_vr.dm b/code/modules/xenoarcheaology/artifacts/replicator_vr.dm index 8d5fc2cb0b..31763d9adc 100644 --- a/code/modules/xenoarcheaology/artifacts/replicator_vr.dm +++ b/code/modules/xenoarcheaology/artifacts/replicator_vr.dm @@ -19,8 +19,8 @@ /mob/living/simple_mob/vore/rabbit, /mob/living/simple_mob/animal/goat, /mob/living/simple_mob/animal/sif/tymisian, - /mob/living/simple_mob/animal/wolf/direwolf, - /mob/living/simple_mob/otie/friendly, + /mob/living/simple_mob/vore/wolf/direwolf, + /mob/living/simple_mob/vore/otie/friendly, /mob/living/simple_mob/vore/alienanimals/catslug, /mob/living/simple_mob/vore/alienanimals/teppi, /mob/living/simple_mob/vore/fennec, @@ -595,4 +595,4 @@ update_use_power(USE_POWER_ACTIVE) icon_state = "borgcharger1(old)" else - visible_message(fail_message) \ No newline at end of file + visible_message(fail_message) diff --git a/icons/inventory/face/mob_vr.dmi b/icons/inventory/face/mob_vr.dmi index 6270461d76..a4d9154749 100644 Binary files a/icons/inventory/face/mob_vr.dmi and b/icons/inventory/face/mob_vr.dmi differ diff --git a/icons/obj/device.dmi b/icons/obj/device.dmi index 9672e0feb1..35911a76e8 100644 Binary files a/icons/obj/device.dmi and b/icons/obj/device.dmi differ diff --git a/maps/expedition_vr/aerostat/_aerostat.dm b/maps/expedition_vr/aerostat/_aerostat.dm index fc63ab8678..6626fbe2e9 100644 --- a/maps/expedition_vr/aerostat/_aerostat.dm +++ b/maps/expedition_vr/aerostat/_aerostat.dm @@ -139,9 +139,11 @@ prob_fall = 30 //guard = 20 mobs_to_pick_from = list( - /mob/living/simple_mob/animal/space/jelly = 1, - /mob/living/simple_mob/mechanical/viscerator = 1, - /mob/living/simple_mob/vore/aggressive/corrupthound = 1 + /mob/living/simple_mob/vore/jelly = 6, + /mob/living/simple_mob/mechanical/viscerator = 6, + /mob/living/simple_mob/vore/aggressive/corrupthound = 3, + /mob/living/simple_mob/vore/oregrub = 2, + /mob/living/simple_mob/vore/oregrub/lava = 1 ) /obj/structure/old_roboprinter diff --git a/maps/expedition_vr/aerostat/_aerostat_science_outpost.dm b/maps/expedition_vr/aerostat/_aerostat_science_outpost.dm index 329f95d0d8..c181fba6a6 100644 --- a/maps/expedition_vr/aerostat/_aerostat_science_outpost.dm +++ b/maps/expedition_vr/aerostat/_aerostat_science_outpost.dm @@ -72,7 +72,7 @@ prob_fall = 50 //guard = 20 mobs_to_pick_from = list( - /mob/living/simple_mob/animal/space/jelly = 6, + /mob/living/simple_mob/vore/jelly = 6, /mob/living/simple_mob/mechanical/viscerator = 6, /mob/living/simple_mob/vore/aggressive/corrupthound = 3, /mob/living/simple_mob/vore/oregrub = 2, diff --git a/maps/gateway_archive_vr/snow_outpost.dm b/maps/gateway_archive_vr/snow_outpost.dm index de9d70dfb1..c1e0adc8ae 100644 --- a/maps/gateway_archive_vr/snow_outpost.dm +++ b/maps/gateway_archive_vr/snow_outpost.dm @@ -17,7 +17,7 @@ power_environ = 0 mobcountmax = 100 floracountmax = 7000 - valid_mobs = list(/mob/living/simple_mob/animal/sif/savik, /mob/living/simple_mob/animal/wolf, /mob/living/simple_mob/animal/sif/shantak, + valid_mobs = list(/mob/living/simple_mob/animal/sif/savik, /mob/living/simple_mob/vore/wolf, /mob/living/simple_mob/animal/sif/shantak, /mob/living/simple_mob/animal/sif/kururak, /mob/living/simple_mob/animal/sif/frostfly) valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green, diff --git a/maps/gateway_vr/snow_outpost.dm b/maps/gateway_vr/snow_outpost.dm index 1814683c45..84aae8da2f 100644 --- a/maps/gateway_vr/snow_outpost.dm +++ b/maps/gateway_vr/snow_outpost.dm @@ -23,7 +23,7 @@ dynamic_lighting = 0 mobcountmax = 50 floracountmax = 300 - valid_mobs = list(/mob/living/simple_mob/animal/sif/savik, /mob/living/simple_mob/animal/wolf, /mob/living/simple_mob/animal/sif/shantak, + valid_mobs = list(/mob/living/simple_mob/animal/sif/savik, /mob/living/simple_mob/vore/wolf, /mob/living/simple_mob/animal/sif/shantak, /mob/living/simple_mob/animal/sif/kururak, /mob/living/simple_mob/animal/sif/frostfly) valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green, diff --git a/maps/gateway_vr/snowfield.dm b/maps/gateway_vr/snowfield.dm index 3aed3117ba..8127505ae9 100644 --- a/maps/gateway_vr/snowfield.dm +++ b/maps/gateway_vr/snowfield.dm @@ -32,7 +32,7 @@ valid_mobs = list(/mob/living/simple_mob/animal/sif/sakimm/polar, /mob/living/simple_mob/animal/sif/diyaab/polar, /mob/living/simple_mob/animal/sif/shantak/polar, /mob/living/simple_mob/animal/space/bear/polar, - /mob/living/simple_mob/animal/wolf) + /mob/living/simple_mob/vore/wolf) valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green, /obj/structure/flora/grass/both, /obj/structure/flora/bush, /obj/structure/flora/ausbushes/grassybush, @@ -180,4 +180,4 @@ /obj/effect/floor_decal/derelict/d16 name = "derelict16" - icon_state = "derelict16" \ No newline at end of file + icon_state = "derelict16" diff --git a/maps/gateway_vr/wildwest.dm b/maps/gateway_vr/wildwest.dm index 69c3a26f21..eaeef9426e 100644 --- a/maps/gateway_vr/wildwest.dm +++ b/maps/gateway_vr/wildwest.dm @@ -208,8 +208,8 @@ /mob/living/simple_mob/humanoid/merc/melee = 100, /mob/living/simple_mob/humanoid/merc/ranged = 50, /mob/living/simple_mob/humanoid/merc/ranged/space = 5, - /mob/living/simple_mob/otie/feral = 10, - /mob/living/simple_mob/otie/feral/chubby = 5 + /mob/living/simple_mob/vore/otie/feral = 10, + /mob/living/simple_mob/vore/otie/feral/chubby = 5 ), list( @@ -224,8 +224,8 @@ list( /mob/living/simple_mob/humanoid/pirate = 100, /mob/living/simple_mob/humanoid/pirate/ranged = 50, - /mob/living/simple_mob/animal/wolf = 10, - /mob/living/simple_mob/animal/wolf/direwolf = 5 + /mob/living/simple_mob/vore/wolf = 10, + /mob/living/simple_mob/vore/wolf/direwolf = 5 ) ) diff --git a/maps/gateway_vr/zoo.dmm b/maps/gateway_vr/zoo.dmm index 19fa7fc4da..688e547acf 100644 --- a/maps/gateway_vr/zoo.dmm +++ b/maps/gateway_vr/zoo.dmm @@ -7806,7 +7806,7 @@ /turf/simulated/floor/wood, /area/awaymission/zoo) "un" = ( -/mob/living/simple_mob/animal/wolf{ +/mob/living/simple_mob/vore/wolf{ faction = "zoo" }, /turf/simulated/floor/holofloor/snow, diff --git a/maps/groundbase/gb-z2.dmm b/maps/groundbase/gb-z2.dmm index 1bf9266237..4b8ee8afa3 100644 --- a/maps/groundbase/gb-z2.dmm +++ b/maps/groundbase/gb-z2.dmm @@ -14730,6 +14730,9 @@ departmentType = 2; pixel_y = 30 }, +/obj/item/device/healthanalyzer/guide, +/obj/item/device/healthanalyzer/guide, +/obj/structure/table/glass, /turf/simulated/floor/tiled/white, /area/groundbase/medical/triage) "Po" = ( diff --git a/maps/stellar_delight/stellar_delight2.dmm b/maps/stellar_delight/stellar_delight2.dmm index fd6a33cfea..be8004e3e9 100644 --- a/maps/stellar_delight/stellar_delight2.dmm +++ b/maps/stellar_delight/stellar_delight2.dmm @@ -1,7 +1,3 @@ -<<<<<<< HEAD -<<<<<<< HEAD -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( /obj/structure/cable/orange{ @@ -173,10 +169,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/monotile, /area/hydroponics) "aq" = ( @@ -222,8 +215,6 @@ }, /turf/simulated/floor/tiled, /area/stellardelight/deck2/fore) -<<<<<<< HEAD -======= "av" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /mob/living/simple_mob/animal/goat{ @@ -231,7 +222,6 @@ }, /turf/simulated/floor/tiled/freezer/cold, /area/crew_quarters/kitchen) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "aw" = ( /obj/structure/table/standard, /obj/random/tech_supply, @@ -279,12 +269,9 @@ }, /turf/simulated/floor/tiled/eris/dark/orangecorner, /area/engineering/engine_eva) -<<<<<<< HEAD -======= "aA" = ( /turf/simulated/floor/tiled/monotile, /area/stellardelight/deck2/fore) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "aB" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -340,12 +327,9 @@ dir = 8 }, /obj/effect/floor_decal/milspec/color/white/half, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 4 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/central) "aG" = ( @@ -356,8 +340,6 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -<<<<<<< HEAD -======= "aH" = ( /obj/effect/floor_decal/milspec/color/black/corner, /obj/effect/floor_decal/milspec/color/silver/corner{ @@ -369,7 +351,6 @@ }, /turf/simulated/floor/tiled, /area/stellardelight/deck2/fore) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "aI" = ( /obj/structure/cable{ icon_state = "1-2" @@ -386,8 +367,6 @@ }, /turf/simulated/floor, /area/maintenance/stellardelight/deck2/starboardsolars) -<<<<<<< HEAD -======= "aJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -396,7 +375,6 @@ /mob/living/simple_mob/animal/passive/cow, /turf/simulated/floor/grass, /area/hydroponics) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "aK" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -432,8 +410,6 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled/eris/dark/orangecorner, /area/engineering/engine_eva) -<<<<<<< HEAD -======= "aP" = ( /obj/effect/floor_decal/milspec/color/black/corner{ dir = 1 @@ -447,7 +423,6 @@ }, /turf/simulated/floor/tiled, /area/stellardelight/deck2/fore) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "aQ" = ( /obj/structure/grille, /turf/simulated/floor/airless, @@ -484,8 +459,6 @@ /obj/structure/low_wall/bay/reinforced/steel, /turf/simulated/floor, /area/maintenance/stellardelight/deck2/portfore) -<<<<<<< HEAD -======= "aU" = ( /turf/simulated/floor/tiled/monotile, /area/stellardelight/deck2/aftport) @@ -493,7 +466,6 @@ /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor, /area/maintenance/stellardelight/deck2/portaft) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "aW" = ( /obj/structure/cable/orange{ icon_state = "4-8" @@ -533,8 +505,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/monitoring) -<<<<<<< HEAD -======= "ba" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -551,7 +521,6 @@ }, /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "bb" = ( /obj/machinery/light/floortube{ dir = 4; @@ -657,15 +626,6 @@ pixel_x = 32; pixel_y = 6 }, -<<<<<<< HEAD -/obj/structure/sign/directions{ - desc = "A direction sign, pointing out the way to the shuttle bay."; - name = "\improper Shuttle Bay"; - pixel_x = 32; - pixel_y = -6 - }, -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /obj/structure/sign/directions/security{ pixel_x = 32; pixel_y = 12 @@ -677,13 +637,10 @@ /obj/structure/railing/grey{ dir = 4 }, -<<<<<<< HEAD -======= /obj/structure/sign/directions/shuttle_bay{ pixel_x = 32; pixel_y = -6 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/monotile, /area/stellardelight/deck2/aftport) "bn" = ( @@ -726,10 +683,7 @@ /obj/effect/floor_decal/milspec/color/green/half{ dir = 8 }, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/hydroponics) "br" = ( @@ -740,15 +694,6 @@ pixel_x = -32; pixel_y = 6 }, -<<<<<<< HEAD -/obj/structure/sign/directions{ - desc = "A direction sign, pointing out the way to the shuttle bay."; - name = "\improper Shuttle Bay"; - pixel_x = -32; - pixel_y = -6 - }, -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /obj/structure/sign/directions/security{ pixel_x = -32; pixel_y = 12 @@ -760,13 +705,10 @@ /obj/structure/railing/grey{ dir = 8 }, -<<<<<<< HEAD -======= /obj/structure/sign/directions/shuttle_bay{ pixel_x = -32; pixel_y = -6 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/monotile, /area/stellardelight/deck2/aftstarboard) "bs" = ( @@ -790,10 +732,7 @@ /obj/effect/floor_decal/milspec/color/green/half{ dir = 8 }, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/hydroponics) "bu" = ( @@ -811,12 +750,9 @@ }, /turf/simulated/floor/tiled/eris/white/bluecorner, /area/stellardelight/deck2/triage) -<<<<<<< HEAD -======= "bv" = ( /turf/simulated/floor/tiled/monotile, /area/stellardelight/deck2/aftstarboard) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "bw" = ( /obj/machinery/power/pointdefense{ id_tag = "sd_pd" @@ -893,8 +829,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/wall/bay/r_wall/orange, /area/engineering/atmos/storage) -<<<<<<< HEAD -======= "bG" = ( /obj/structure/cable/yellow{ icon_state = "32-8" @@ -904,7 +838,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/quartermaster/storage) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "bH" = ( /obj/structure/cable/orange{ icon_state = "4-8" @@ -971,8 +904,6 @@ }, /turf/simulated/floor, /area/stellardelight/deck2/central) -<<<<<<< HEAD -======= "bM" = ( /obj/structure/cable/orange{ icon_state = "1-2" @@ -987,7 +918,6 @@ /mob/living/simple_mob/animal/passive/opossum/poppy, /turf/simulated/floor/tiled/eris/dark/gray_platform, /area/engineering/workshop) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "bN" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -1003,17 +933,14 @@ }, /turf/simulated/floor/tiled, /area/stellardelight/deck2/fore) -<<<<<<< HEAD -======= "bO" = ( /obj/item/device/radio/intercom{ dir = 1; pixel_y = 24 }, -/mob/living/simple_mob/otie/red/chubby/cocoa, +/mob/living/simple_mob/vore/otie/red/chubby/cocoa, /turf/simulated/floor/tiled/eris/steel/brown_platform, /area/crew_quarters/bar) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "bP" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -1023,10 +950,6 @@ dir = 6 }, /obj/machinery/alarm/angled, -<<<<<<< HEAD -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -======= /obj/machinery/space_heater, /turf/simulated/floor, /area/maintenance/stellardelight/deck2/portfore) @@ -1041,7 +964,6 @@ }, /turf/simulated/floor/wood, /area/quartermaster/qm) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "bR" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/orange{ @@ -1074,14 +996,6 @@ /turf/simulated/wall/bay/r_wall/steel, /area/engineering/storage) "bU" = ( -<<<<<<< HEAD -/mob/living/simple_mob/vore/alienanimals/teppi/baby, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -======= /obj/structure/filingcabinet, /obj/machinery/light, /obj/machinery/alarm/angled{ @@ -1089,7 +1003,6 @@ }, /turf/simulated/floor/wood, /area/quartermaster/qm) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "bV" = ( /obj/structure/table/woodentable, /obj/item/weapon/book/manual/bar_guide, @@ -1150,8 +1063,6 @@ /obj/structure/table/fancyblack, /turf/simulated/floor/carpet/sblucarpet, /area/stellardelight/deck2/briefingroom) -<<<<<<< HEAD -======= "cc" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Engine - Core"; @@ -1173,7 +1084,6 @@ /obj/machinery/floodlight, /turf/simulated/floor/plating, /area/engineering/storage) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "ce" = ( /obj/machinery/vending/wardrobe/cargodrobe, /obj/machinery/status_display/supply_display{ @@ -1257,8 +1167,6 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, /area/stellardelight/deck2/fore) -<<<<<<< HEAD -======= "cp" = ( /obj/machinery/light/small{ dir = 1 @@ -1266,7 +1174,6 @@ /obj/machinery/power/thermoregulator, /turf/simulated/floor/plating, /area/engineering/storage) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "cq" = ( /obj/machinery/air_sensor{ frequency = 1438; @@ -1437,11 +1344,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -<<<<<<< HEAD -/area/quartermaster/storage) -======= /area/stellardelight/deck2/aftport) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "cL" = ( /obj/structure/cable/cyan{ icon_state = "2-8" @@ -1521,13 +1424,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/eris/white/bluecorner, /area/medical/cmostore) -<<<<<<< HEAD -======= "cS" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "cT" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -1552,10 +1452,7 @@ /obj/effect/landmark{ name = "morphspawn" }, -<<<<<<< HEAD -======= /obj/structure/reagent_dispensers/fueltank, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor, /area/maintenance/stellardelight/deck2/portaft) "cW" = ( @@ -1588,11 +1485,6 @@ /area/stellardelight/deck2/fore) "cZ" = ( /obj/item/device/flashlight/lamp/green{ -<<<<<<< HEAD - pixel_y = 7 - }, -/obj/item/weapon/folder/blue_captain, -======= pixel_x = 7; pixel_y = 16 }, @@ -1600,7 +1492,6 @@ pixel_x = -6; pixel_y = 7 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /obj/structure/table/darkglass, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -1608,13 +1499,10 @@ /obj/machinery/requests_console/preset/captain{ pixel_x = -30 }, -<<<<<<< HEAD -======= /obj/item/weapon/melee/chainofcommand, /obj/item/weapon/folder/blue_captain{ pixel_x = -6 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/carpet/blucarpet, /area/crew_quarters/captain) "da" = ( @@ -1632,19 +1520,6 @@ /turf/simulated/floor/tiled/eris/dark/orangecorner, /area/engineering/locker_room) "db" = ( -<<<<<<< HEAD -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -======= /obj/structure/table/reinforced, /obj/item/weapon/paper{ info = "For those who didn't know yet, the big blue box in here is a 'grid checker' which will shut off the power if a dangerous power spike erupts into the powernet, shutting everything down protects everything from electrical damage, however the outages can be disruptive to ship operations, so it is designed to restore power after a somewhat significant delay, up to fifteen minutes or so. The grid checker can be manually hacked in order to end the outage sooner. To do that, you must cut three specific wires which do not cause a red light to shine, then pulse a fourth wire. Electrical protection is highly recommended when doing maintenance on the grid checker."; @@ -1657,7 +1532,6 @@ /obj/item/weapon/storage/box/lights/mixed, /turf/simulated/floor/plating, /area/engineering/storage) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "dc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/structure/cable/white{ @@ -1687,8 +1561,6 @@ }, /turf/simulated/floor, /area/maintenance/stellardelight/deck2/starboardfore) -<<<<<<< HEAD -======= "df" = ( /obj/structure/cable{ icon_state = "0-2" @@ -1697,7 +1569,6 @@ /obj/machinery/power/grid_checker, /turf/simulated/floor/plating, /area/engineering/storage) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "dg" = ( /obj/structure/cable/white{ icon_state = "4-8" @@ -1750,13 +1621,10 @@ }, /turf/simulated/floor/airless, /area/stellardelight/deck2/exterior) -<<<<<<< HEAD -======= "dl" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/engineering/storage) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "dm" = ( /obj/item/device/radio/intercom{ dir = 1; @@ -1766,8 +1634,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/eris/cafe, /area/crew_quarters/kitchen) -<<<<<<< HEAD -======= "dn" = ( /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 1 @@ -1776,7 +1642,6 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/stellardelight/deck2/port) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "do" = ( /turf/simulated/wall/bay/brown, /area/quartermaster/storage) @@ -1790,12 +1655,6 @@ /turf/simulated/floor/tiled, /area/stellardelight/deck2/central) "dq" = ( -<<<<<<< HEAD -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -1866,12 +1725,9 @@ dir = 1 }, /obj/effect/floor_decal/steeldecal/steel_decals5, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 4 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) "dz" = ( @@ -1946,10 +1802,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 1 }, -<<<<<<< HEAD -======= /obj/structure/closet/walllocker_double/emergency_engi/north, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/fore) "dH" = ( @@ -2317,32 +2170,16 @@ name = "Bridge Lockdown"; pixel_y = 2 }, -<<<<<<< HEAD -======= /obj/effect/floor_decal/milspec/color/blue/corner, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/gray_platform, /area/bridge) "ex" = ( /obj/structure/closet/hydrant{ -<<<<<<< HEAD - pixel_x = -32 - }, -/obj/effect/floor_decal/milspec/color/black/corner{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -======= dir = 4; pixel_x = 27 }, /turf/simulated/floor/tiled/eris/white/bluecorner, /area/stellardelight/deck2/triage) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "ey" = ( /obj/machinery/door/firedoor/glass, /obj/structure/window/bay/reinforced, @@ -2601,10 +2438,7 @@ dir = 1; req_one_access = list(35,28) }, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/grass, /area/hydroponics) "fb" = ( @@ -2775,12 +2609,9 @@ dir = 1 }, /obj/effect/floor_decal/steeldecal/steel_decals5, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 4 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/central) "fw" = ( @@ -2848,8 +2679,6 @@ }, /turf/simulated/floor/tiled/eris/steel/brown_platform, /area/crew_quarters/bar) -<<<<<<< HEAD -======= "fC" = ( /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 4 @@ -2884,7 +2713,6 @@ /obj/structure/closet/walllocker_double/misc_civ/north, /turf/simulated/floor/tiled/eris/dark/cargo, /area/crew_quarters/recreation_area) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "fF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/structure/cable/white{ @@ -2895,22 +2723,6 @@ /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 4 }, -<<<<<<< HEAD -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"fG" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/atmos/monitoring) -======= /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 9 }, @@ -2965,17 +2777,13 @@ /obj/structure/closet/walllocker_double/misc_civ/north, /turf/simulated/floor/tiled, /area/storage/art) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "fI" = ( /obj/effect/floor_decal/milspec/color/white/corner{ dir = 8 }, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 4 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/central) "fJ" = ( @@ -2992,13 +2800,6 @@ /turf/simulated/floor/tiled/eris/dark/cargo, /area/crew_quarters/recreation_area) "fL" = ( -<<<<<<< HEAD -/obj/machinery/computer/arcade/battle, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -======= /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/landmark/vermin, /obj/machinery/station_slot_machine, @@ -3022,7 +2823,6 @@ /obj/structure/closet/walllocker_double/command/east, /turf/simulated/floor/tiled/eris/dark/monofloor, /area/bridge) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "fN" = ( /obj/machinery/door/firedoor/glass, /obj/structure/window/bay/reinforced, @@ -3083,8 +2883,6 @@ }, /turf/simulated/floor/tiled, /area/stellardelight/deck2/port) -<<<<<<< HEAD -======= "fS" = ( /obj/structure/cable/blue{ icon_state = "4-8" @@ -3096,7 +2894,6 @@ /obj/structure/closet/walllocker_double/command/north, /turf/simulated/floor/wood, /area/crew_quarters/captain) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "fT" = ( /obj/structure/table/reinforced, /obj/fiftyspawner/steel, @@ -3104,14 +2901,6 @@ /obj/fiftyspawner/steel, /obj/fiftyspawner/steel, /obj/fiftyspawner/steel, -<<<<<<< HEAD -/obj/structure/closet/walllocker_double/north{ - dir = 4; - pixel_x = 32; - pixel_y = 0 - }, -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /obj/fiftyspawner/wood, /obj/item/stack/material/glass/phoronrglass{ amount = 20 @@ -3123,12 +2912,9 @@ /obj/item/stack/material/plasteel{ amount = 30 }, -<<<<<<< HEAD -======= /obj/structure/closet/walllocker_double/engineering/east{ name = "material sheets" }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/orangecorner, /area/engineering/workshop) "fU" = ( @@ -3189,14 +2975,6 @@ /turf/simulated/floor/tiled/eris/steel/cargo, /area/quartermaster/storage) "gc" = ( -<<<<<<< HEAD -/mob/living/simple_mob/animal/passive/cow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -======= /obj/structure/cable/cyan{ icon_state = "1-2" }, @@ -3205,7 +2983,6 @@ /obj/structure/closet/walllocker_double/engineering/west, /turf/simulated/floor/tiled/eris/dark/techfloor_grid, /area/engineering/engine_room) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "gd" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3385,8 +3162,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/stellardelight/deck2/combustionworkshop) -<<<<<<< HEAD -======= "gt" = ( /obj/item/weapon/storage/box/lights/mixed, /obj/item/weapon/tape_roll, @@ -3396,7 +3171,6 @@ /obj/structure/closet/walllocker_double/cargo/east, /turf/simulated/floor/tiled/eris/steel/cargo, /area/quartermaster/storage) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "gu" = ( /obj/machinery/firealarm/angled, /obj/item/device/defib_kit/loaded, @@ -3437,8 +3211,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/monitoring) -<<<<<<< HEAD -======= "gz" = ( /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 4 @@ -3446,7 +3218,6 @@ /obj/structure/closet/walllocker_double/emergency_engi/east, /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "gA" = ( /obj/structure/railing/grey{ dir = 4 @@ -3483,8 +3254,6 @@ }, /turf/simulated/floor/tiled/eris/dark/gray_platform, /area/bridge) -<<<<<<< HEAD -======= "gD" = ( /obj/structure/table/reinforced, /obj/random/powercell, @@ -3492,7 +3261,6 @@ /obj/item/device/t_scanner, /turf/simulated/floor/tiled/eris/dark/orangecorner, /area/engineering/workshop) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "gE" = ( /obj/structure/cable{ icon_state = "1-8" @@ -3515,14 +3283,6 @@ /turf/simulated/floor/airless, /area/stellardelight/deck2/exterior) "gG" = ( -<<<<<<< HEAD -/obj/structure/sign/poster{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -======= /obj/effect/floor_decal/milspec/color/green/half{ dir = 8 }, @@ -3534,7 +3294,6 @@ pixel_x = -24; plane = -34 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/hydroponics) "gH" = ( @@ -3552,8 +3311,6 @@ }, /turf/simulated/floor/tiled/eris/white/bluecorner, /area/medical/reception) -<<<<<<< HEAD -======= "gI" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -3563,7 +3320,6 @@ /obj/structure/closet/walllocker_double/engineering/north, /turf/simulated/floor/tiled/eris/dark/orangecorner, /area/engineering/engine_eva) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "gJ" = ( /obj/structure/medical_stand, /turf/simulated/floor/tiled/white, @@ -3599,12 +3355,6 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos/storage) "gN" = ( -<<<<<<< HEAD -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -3745,20 +3495,15 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos/storage) -<<<<<<< HEAD -======= "hf" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/bay/r_wall/green, /area/hydroponics) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "hg" = ( /obj/structure/shuttle/window, /obj/structure/grille, /turf/simulated/floor, /area/stellardelight/deck2/portescape) -<<<<<<< HEAD -======= "hh" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -3768,7 +3513,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/monotile, /area/hydroponics) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "hi" = ( /obj/structure/closet/walllocker_double/medical/north, /obj/item/weapon/storage/box/body_record_disk, @@ -3876,8 +3620,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/stellardelight/deck2/o2production) -<<<<<<< HEAD -======= "hv" = ( /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 4 @@ -3885,7 +3627,6 @@ /obj/structure/closet/walllocker_double/emergency_engi/east, /turf/simulated/floor/tiled, /area/stellardelight/deck2/port) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "hw" = ( /obj/structure/table/standard, /obj/machinery/alarm/angled, @@ -3913,21 +3654,6 @@ /turf/simulated/floor/airless, /area/stellardelight/deck2/exterior) "hA" = ( -<<<<<<< HEAD -/obj/structure/closet/walllocker_double/south{ - dir = 2; - pixel_y = 30 - }, -/obj/item/weapon/storage/pill_bottle/dice_nerd, -/obj/item/weapon/storage/pill_bottle/dice, -/obj/item/weapon/storage/dicecup, -/obj/item/weapon/deck/cah, -/obj/item/weapon/deck/cah/black, -/obj/item/weapon/deck/cards, -/obj/item/weapon/deck/cards/casino, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -======= /obj/structure/closet/walllocker_double/emergency_engi/south, /turf/simulated/floor/tiled/eris/white/cargo, /area/stellardelight/deck2/triage) @@ -3938,7 +3664,6 @@ /obj/structure/closet/walllocker_double/emergency_engi/east, /turf/simulated/floor/tiled, /area/stellardelight/deck2/fore) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "hC" = ( /obj/structure/filingcabinet/chestdrawer{ name = "Medical Forms" @@ -3952,8 +3677,6 @@ /obj/effect/landmark/start/visitor, /turf/simulated/floor/carpet/turcarpet, /area/crew_quarters/recreation_area) -<<<<<<< HEAD -======= "hE" = ( /obj/effect/floor_decal/milspec/color/green/half{ dir = 8 @@ -3961,7 +3684,6 @@ /obj/structure/closet/walllocker_double/emergency_engi/west, /turf/simulated/floor/tiled, /area/stellardelight/deck2/fore) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "hF" = ( /obj/machinery/vending/wallmed1{ dir = 1; @@ -3969,8 +3691,29 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgery2) -<<<<<<< HEAD -======= +"hG" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/disposal/wall/cleaner{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/locker) "hH" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -3983,7 +3726,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/hydroponics) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "hI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ dir = 6 @@ -4043,26 +3785,6 @@ /obj/structure/low_wall/bay/reinforced/steel, /turf/simulated/floor, /area/maintenance/stellardelight/deck2/portfore) -"hP" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/disposal/wall/cleaner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/locker) "hQ" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/surgery, @@ -4085,19 +3807,6 @@ /turf/simulated/floor/tiled/eris/steel/brown_platform, /area/quartermaster/storage) "hT" = ( -<<<<<<< HEAD -<<<<<<< HEAD -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "32-1" - }, -/turf/simulated/open, -/area/stellardelight/deck2/triage) -======= -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/tagger{ dir = 2; @@ -4106,10 +3815,6 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -<<<<<<< HEAD ->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "hU" = ( /obj/structure/disposalpipe/tagger/partial{ dir = 8; @@ -4272,15 +3977,6 @@ /obj/structure/low_wall/bay/reinforced/white, /turf/simulated/floor, /area/medical/psych) -<<<<<<< HEAD -"iq" = ( -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "ir" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -4405,10 +4101,7 @@ cur_coils = 4; input_attempt = 1; input_level = 500000; -<<<<<<< HEAD -======= name = "Main"; ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 output_level = 1e+006 }, /turf/simulated/floor/plating, @@ -4464,20 +4157,6 @@ }, /turf/simulated/floor, /area/stellardelight/deck2/starboardescape) -<<<<<<< HEAD -"iM" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/item/weapon/book/manual/command_guide, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/security_space_law, -/obj/structure/closet/walllocker_double/north, -/obj/item/weapon/book/manual/sd_guide, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "iN" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/angled_bay/standard/glass{ @@ -4911,11 +4590,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -<<<<<<< HEAD -/area/quartermaster/storage) -======= /area/stellardelight/deck2/aftport) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "jO" = ( /obj/machinery/door/firedoor/glass, /obj/structure/window/bay/reinforced, @@ -5030,10 +4705,7 @@ /area/stellardelight/deck2/triage) "kc" = ( /obj/machinery/computer/power_monitor, -<<<<<<< HEAD -======= /obj/effect/floor_decal/milspec/color/orange/half, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/monofloor, /area/bridge) "kd" = ( @@ -5321,10 +4993,7 @@ /obj/structure/cable/blue{ icon_state = "1-2" }, -<<<<<<< HEAD -======= /obj/machinery/door/firedoor/glass, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/steel_ridged, /area/stellardelight/deck2/briefingroom) "kE" = ( @@ -5385,12 +5054,9 @@ dir = 8; pixel_x = -6 }, -<<<<<<< HEAD -======= /obj/effect/floor_decal/milspec/color/blue/half{ dir = 4 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/monofloor, /area/bridge) "kK" = ( @@ -5695,11 +5361,7 @@ }, /obj/item/device/radio/beacon, /turf/simulated/floor/tiled, -<<<<<<< HEAD -/area/quartermaster/storage) -======= /area/stellardelight/deck2/aftport) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "lo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -5866,16 +5528,6 @@ }, /turf/simulated/floor/tiled/eris/dark/gray_platform, /area/bridge) -<<<<<<< HEAD -"lE" = ( -/obj/machinery/floodlight, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/storage) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "lF" = ( /obj/effect/landmark{ name = "lightsout" @@ -5892,13 +5544,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet/turcarpet, /area/crew_quarters/recreation_area) -<<<<<<< HEAD -"lH" = ( -/obj/machinery/power/thermoregulator, -/turf/simulated/floor/plating, -/area/engineering/storage) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "lI" = ( /obj/structure/table/steel_reinforced, /obj/machinery/door/window/westleft{ @@ -5944,15 +5589,12 @@ }, /turf/simulated/floor/tiled/eris/white/bluecorner, /area/medical/cmostore) -<<<<<<< HEAD -======= "lM" = ( /obj/effect/floor_decal/milspec/color/blue/half{ dir = 4 }, /turf/space, /area/space) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "lN" = ( /obj/structure/cable/cyan{ icon_state = "1-2" @@ -5998,19 +5640,6 @@ pixel_x = 32; pixel_y = 6 }, -<<<<<<< HEAD -/obj/structure/sign/directions{ - desc = "A direction sign, pointing out the way to the shuttle bay."; - dir = 1; - name = "\improper Shuttle Bay"; - pixel_x = 32; - pixel_y = -12 - }, -/obj/structure/sign/directions/stairs_down{ - dir = 1; - pixel_x = 32; - pixel_y = 12 -======= /obj/structure/sign/directions/stairs_down{ dir = 1; pixel_x = 32; @@ -6020,7 +5649,6 @@ dir = 1; pixel_x = 32; pixel_y = -12 ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 }, /turf/simulated/open, /area/stellardelight/deck2/fore) @@ -6030,12 +5658,9 @@ /obj/machinery/status_display{ pixel_y = 32 }, -<<<<<<< HEAD -======= /obj/machinery/light{ dir = 4 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/white/bluecorner, /area/medical/cmostore) "lS" = ( @@ -6184,20 +5809,8 @@ }, /obj/machinery/vending/loadout/loadout_misc, /obj/machinery/atmospherics/unary/vent_pump/on, -<<<<<<< HEAD -<<<<<<< HEAD -/obj/effect/landmark{ - name = "vinestart" - }, -/turf/simulated/floor/holofloor/tiled/dark, -======= /obj/effect/landmark/vines, /turf/simulated/floor/tiled/dark, ->>>>>>> c527964372... Merge pull request #13346 from Heroman3003/doubleclosets -======= -/obj/effect/landmark/vines, -/turf/simulated/floor/tiled/dark, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /area/crew_quarters/locker) "me" = ( /obj/structure/cable/white{ @@ -6212,10 +5825,7 @@ "mg" = ( /obj/random/vendordrink, /obj/machinery/atmospherics/unary/vent_pump/on, -<<<<<<< HEAD -======= /obj/effect/landmark/vines, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/steel_ridged, /area/stellardelight/deck2/port) "mh" = ( @@ -6272,10 +5882,7 @@ /obj/structure/cable/green{ icon_state = "1-4" }, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) "mn" = ( @@ -6352,16 +5959,6 @@ /obj/machinery/portable_atmospherics/canister/nitrogen, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/monitoring) -<<<<<<< HEAD -"my" = ( -/mob/living/simple_mob/animal/goat{ - name = "Ted" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer/cold, -/area/crew_quarters/kitchen) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "mz" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/milspec/color/green/half{ @@ -7183,18 +6780,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/monitoring) -<<<<<<< HEAD -"or" = ( -/obj/structure/closet/walllocker_double/east, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/tape_roll, -/obj/item/weapon/storage/belt/utility, -/obj/item/device/multitool, -/obj/fiftyspawner/steel, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "os" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -7528,17 +7113,6 @@ }, /turf/simulated/floor, /area/maintenance/stellardelight/deck2/starboardaft) -<<<<<<< HEAD -"pi" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/mob/living/simple_mob/otie/red/chubby/cocoa, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "pj" = ( /obj/machinery/light/small{ dir = 8 @@ -7574,18 +7148,6 @@ }, /turf/simulated/floor/tiled/eris/steel/brown_platform, /area/quartermaster/storage) -<<<<<<< HEAD -"pm" = ( -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "pn" = ( /obj/machinery/alarm/angled{ dir = 4 @@ -7943,11 +7505,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -<<<<<<< HEAD -/area/quartermaster/storage) -======= /area/stellardelight/deck2/aftport) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "qd" = ( /obj/item/device/radio/intercom{ dir = 1; @@ -8419,12 +7977,9 @@ dir = 5 }, /obj/effect/floor_decal/milspec/color/white/half, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 4 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/central) "rd" = ( @@ -8443,26 +7998,10 @@ "re" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 -<<<<<<< HEAD }, /obj/effect/landmark/start/cargo, /turf/simulated/floor/tiled/eris/steel/cargo, /area/quartermaster/storage) -"rf" = ( -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/obj/structure/closet/walllocker_double/west, -/obj/item/weapon/book/manual/engineering_particle_accelerator, -/obj/item/weapon/book/manual/tesla_engine, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/engine_room) -======= - }, -/obj/effect/landmark/start/cargo, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "rg" = ( /obj/structure/bed/chair/sofa/corp/corner{ dir = 8 @@ -8549,10 +8088,7 @@ /area/engineering/engineering_monitoring) "rr" = ( /obj/structure/closet/walllocker_double/south{ -<<<<<<< HEAD -======= color = "#8da4a6"; ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 pixel_x = -5 }, /obj/structure/table/standard, @@ -8677,23 +8213,6 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -<<<<<<< HEAD -"rA" = ( -/mob/living/simple_mob/animal/passive/opossum/poppy, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/engineering/workshop) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "rB" = ( /obj/structure/particle_accelerator/particle_emitter/right{ dir = 4 @@ -8729,10 +8248,7 @@ dir = 4; pixel_x = 24 }, -<<<<<<< HEAD -======= /obj/effect/landmark/vines, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/techmaint, /area/storage/primary) "rF" = ( @@ -8799,13 +8315,10 @@ /obj/item/device/retail_scanner/civilian, /turf/simulated/floor/tiled, /area/hydroponics) -<<<<<<< HEAD -======= "rP" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/grass, /area/hydroponics) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "rQ" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -8831,14 +8344,6 @@ "rT" = ( /turf/simulated/wall/bay/r_wall/steel, /area/storage/tech) -<<<<<<< HEAD -"rU" = ( -/obj/structure/filingcabinet, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "rV" = ( /obj/machinery/door/firedoor/glass, /obj/structure/window/bay/reinforced, @@ -8969,12 +8474,6 @@ /area/stellardelight/deck2/fore) "sk" = ( /obj/machinery/door/firedoor/glass, -<<<<<<< HEAD -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/angled_bay/standard/glass{ @@ -9540,11 +9039,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -<<<<<<< HEAD -/area/quartermaster/storage) -======= /area/stellardelight/deck2/aftport) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "tB" = ( /obj/machinery/firealarm/angled, /obj/structure/frame, @@ -9582,17 +9077,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos/storage) -<<<<<<< HEAD -"tG" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/item/weapon/storage/backpack/dufflebag, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "tI" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -9668,17 +9152,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/stellardelight/substation/engineering) -<<<<<<< HEAD -"tS" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/machinery/power/grid_checker, -/turf/simulated/floor/plating, -/area/engineering/storage) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "tT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -9795,10 +9268,7 @@ /obj/effect/floor_decal/milspec/color/green/half{ dir = 8 }, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/hydroponics) "ug" = ( @@ -9941,10 +9411,7 @@ "us" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/recharge_station, -<<<<<<< HEAD -======= /obj/effect/landmark/vines, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/steel_ridged, /area/stellardelight/deck2/starboard) "ut" = ( @@ -10332,18 +9799,6 @@ }, /turf/simulated/floor, /area/stellardelight/deck2/combustionworkshop) -<<<<<<< HEAD -"vm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/closet/walllocker_double/north, -/obj/item/weapon/circuitboard/tesla_coil, -/obj/item/weapon/circuitboard/tesla_coil, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "vn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 10 @@ -10377,12 +9832,9 @@ /obj/machinery/door/airlock/angled_bay/hatch/engineering{ dir = 4 }, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 4 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/steel_ridged, /area/stellardelight/deck2/starboard) "vq" = ( @@ -10498,12 +9950,9 @@ /area/medical/cmostore) "vH" = ( /obj/effect/floor_decal/milspec/color/white/corner, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 4 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/central) "vI" = ( @@ -10556,14 +10005,11 @@ /area/medical/chemistry) "vP" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /obj/effect/landmark/vermin, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/monotile, /area/hydroponics) "vQ" = ( @@ -10580,12 +10026,9 @@ "vR" = ( /obj/machinery/light, /obj/effect/floor_decal/steeldecal/steel_decals5, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 4 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) "vS" = ( @@ -10594,12 +10037,6 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/recreation_area) -<<<<<<< HEAD -"vT" = ( -/turf/simulated/open, -/area/maintenance/stellardelight/deck2/starboardaft) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "vU" = ( /obj/machinery/alarm/angled{ dir = 4 @@ -10673,13 +10110,10 @@ /obj/structure/cable/green{ icon_state = "1-2" }, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) "wd" = ( @@ -10742,12 +10176,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/milspec/color/white/half, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 4 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/central) "wm" = ( @@ -10918,12 +10349,6 @@ /turf/simulated/floor/tiled/eris/steel/brown_platform, /area/crew_quarters/bar) "wH" = ( -<<<<<<< HEAD -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -11001,10 +10426,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/monotile, /area/hydroponics) "wR" = ( @@ -11122,8 +10544,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/stellardelight/deck2/fore) -<<<<<<< HEAD -======= "xh" = ( /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 4 @@ -11134,7 +10554,6 @@ }, /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "xi" = ( /obj/machinery/atmospherics/omni/atmos_filter{ name = "N2O Filter"; @@ -11181,15 +10600,12 @@ dir = 1 }, /obj/effect/floor_decal/milspec/color/white/half, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/landmark{ name = "vinestart" }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/central) "xo" = ( @@ -11229,16 +10645,6 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos/storage) "xv" = ( -<<<<<<< HEAD -/obj/item/weapon/melee/chainofcommand, -/obj/item/weapon/coin/phoron{ - desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo."; - name = "limited edition phoron coin" - }, -/obj/item/weapon/folder/blue_captain, -/obj/item/weapon/stamp/captain, -/obj/structure/table/darkglass, -======= /obj/structure/table/darkglass, /obj/machinery/computer/skills{ pixel_x = 9 @@ -11247,7 +10653,6 @@ pixel_x = -7; pixel_y = -2 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/carpet/blucarpet, /area/crew_quarters/captain) "xw" = ( @@ -11317,10 +10722,7 @@ /obj/structure/panic_button{ pixel_y = 32 }, -<<<<<<< HEAD -======= /obj/effect/floor_decal/milspec/color/orange/half, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/monofloor, /area/bridge) "xC" = ( @@ -11329,11 +10731,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals5, /turf/simulated/floor/tiled, -<<<<<<< HEAD -/area/quartermaster/storage) -======= /area/stellardelight/deck2/aftport) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "xD" = ( /obj/structure/bed/chair/backed_red{ dir = 4 @@ -11354,12 +10752,6 @@ /turf/simulated/floor/carpet/turcarpet, /area/crew_quarters/recreation_area) "xG" = ( -<<<<<<< HEAD -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -11420,12 +10812,9 @@ /obj/random/tech_supply, /obj/random/tech_supply, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -<<<<<<< HEAD -======= /obj/machinery/recharger{ pixel_y = 5 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/techmaint, /area/storage/primary) "xL" = ( @@ -11546,12 +10935,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 4 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) "xY" = ( @@ -11844,21 +11230,6 @@ }, /turf/simulated/floor/tiled/eris/steel/cargo, /area/quartermaster/storage) -<<<<<<< HEAD -"yD" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "yE" = ( /obj/structure/medical_stand, /turf/simulated/floor/tiled/eris/white/bluecorner, @@ -12057,10 +11428,7 @@ /area/engineering/engine_room) "zb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/monotile, /area/hydroponics) "zc" = ( @@ -12073,12 +11441,9 @@ /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 6 }, -<<<<<<< HEAD -======= /obj/machinery/light{ dir = 1 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/white/bluecorner, /area/stellardelight/deck2/triage) "zd" = ( @@ -12392,13 +11757,10 @@ /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 4 }, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) "zT" = ( @@ -12471,10 +11833,7 @@ /obj/structure/cable/blue{ icon_state = "1-2" }, -<<<<<<< HEAD -======= /obj/machinery/papershredder, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/wood, /area/stellardelight/deck2/briefingroom) "Ae" = ( @@ -12725,33 +12084,6 @@ }, /turf/simulated/floor/tiled, /area/stellardelight/deck2/fore) -<<<<<<< HEAD -"AJ" = ( -/obj/structure/sign/directions/science{ - pixel_x = 32 - }, -/obj/structure/sign/directions/dorms{ - pixel_x = 32; - pixel_y = 6 - }, -/obj/structure/sign/directions{ - desc = "A direction sign, pointing out the way to Exploration."; - name = "\improper Exploration Department"; - pixel_x = 32; - pixel_y = -6 - }, -/obj/structure/sign/directions/security{ - pixel_x = 32; - pixel_y = 12 - }, -/obj/structure/sign/directions/stairs_down{ - pixel_x = 32; - pixel_y = 18 - }, -/turf/simulated/open, -/area/stellardelight/deck2/aftport) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "AK" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Master Grid"; @@ -12813,20 +12145,6 @@ /turf/simulated/floor/lino, /area/crew_quarters/bar) "AO" = ( -<<<<<<< HEAD -/obj/machinery/computer/skills{ - pixel_y = 7 - }, -/obj/machinery/button/remote/blast_door{ - id = "captaindoor"; - name = "Door Remote"; - pixel_x = -15; - pixel_y = 2 - }, -/obj/structure/table/darkglass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 -======= /obj/structure/table/darkglass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -12845,7 +12163,6 @@ name = "limited edition phoron coin"; pixel_x = 11; pixel_y = -3 ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 }, /turf/simulated/floor/carpet/blucarpet, /area/crew_quarters/captain) @@ -13141,15 +12458,6 @@ /obj/effect/floor_decal/steeldecal/steel_decals5, /turf/simulated/floor/tiled, /area/stellardelight/deck2/port) -<<<<<<< HEAD -"By" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/storage) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "BA" = ( /obj/structure/railing/grey{ dir = 8 @@ -13236,11 +12544,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/steeldecal/steel_decals5, /turf/simulated/floor/tiled, -<<<<<<< HEAD -/area/quartermaster/storage) -======= /area/stellardelight/deck2/aftport) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "BM" = ( /obj/structure/table/standard, /obj/item/weapon/folder/yellow, @@ -13314,8 +12618,6 @@ }, /turf/simulated/floor/tiled/eris/white/cargo, /area/stellardelight/deck2/triage) -<<<<<<< HEAD -======= "BV" = ( /obj/structure/table/marble, /obj/machinery/door/blast/shutters{ @@ -13326,7 +12628,6 @@ /obj/item/weapon/material/ashtray/glass, /turf/simulated/floor/lino, /area/crew_quarters/bar) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "BW" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/angled_bay/external/glass{ @@ -13374,10 +12675,6 @@ /obj/structure/cable{ icon_state = "1-8" }, -<<<<<<< HEAD -/obj/structure/disposalpipe/segment, -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -13387,10 +12684,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/junction, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor, /area/maintenance/stellardelight/deck2/starboardsolars) "Cd" = ( @@ -13635,10 +12929,7 @@ /area/crew_quarters/locker) "CG" = ( /obj/machinery/computer/ship/helm, -<<<<<<< HEAD -======= /obj/effect/floor_decal/milspec/color/green/half, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/gray_platform, /area/bridge) "CH" = ( @@ -13703,33 +12994,6 @@ /obj/effect/landmark/vermin, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/monitoring) -<<<<<<< HEAD -"CN" = ( -/obj/structure/sign/directions/science{ - pixel_x = -32 - }, -/obj/structure/sign/directions/dorms{ - pixel_x = -32; - pixel_y = 6 - }, -/obj/structure/sign/directions{ - desc = "A direction sign, pointing out the way to Exploration."; - name = "\improper Exploration Department"; - pixel_x = -32; - pixel_y = -6 - }, -/obj/structure/sign/directions/security{ - pixel_x = -32; - pixel_y = 12 - }, -/obj/structure/sign/directions/stairs_down{ - pixel_x = -32; - pixel_y = 18 - }, -/turf/simulated/open, -/area/stellardelight/deck2/aftstarboard) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "CO" = ( /obj/structure/cable/orange{ icon_state = "4-8" @@ -13867,19 +13131,12 @@ /turf/simulated/floor/tiled/techmaint, /area/storage/primary) "De" = ( -<<<<<<< HEAD -/obj/structure/flora/pottedplant/decorative, -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/item/device/radio/intercom{ dir = 8; pixel_x = -24 }, -<<<<<<< HEAD -======= /obj/structure/flora/pottedplant/decorative, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/cargo, /area/crew_quarters/recreation_area) "Df" = ( @@ -13900,10 +13157,7 @@ /obj/machinery/status_display{ pixel_y = 32 }, -<<<<<<< HEAD -======= /obj/effect/floor_decal/milspec/color/white/half, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/monofloor, /area/bridge) "Di" = ( @@ -13951,10 +13205,7 @@ "Dq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/hydroponics) "Dr" = ( @@ -13980,10 +13231,6 @@ /turf/simulated/floor/airless, /area/stellardelight/deck2/exterior) "Du" = ( -<<<<<<< HEAD -/obj/structure/closet/secure_closet/personal, -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /obj/effect/floor_decal/industrial/outline, /obj/effect/floor_decal/steeldecal/steel_decals9, /obj/effect/floor_decal/steeldecal/steel_decals9{ @@ -13995,26 +13242,12 @@ /obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 8 }, -<<<<<<< HEAD -/obj/item/clothing/shoes/black, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -<<<<<<< HEAD -/turf/simulated/floor/holofloor/tiled/dark, -======= -/obj/structure/undies_wardrobe, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/dark, ->>>>>>> c527964372... Merge pull request #13346 from Heroman3003/doubleclosets -======= /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /obj/structure/undies_wardrobe, /obj/effect/landmark/vermin, /turf/simulated/floor/tiled/dark, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /area/crew_quarters/locker) "Dv" = ( /obj/structure/cable/white{ @@ -14161,22 +13394,6 @@ }, /turf/simulated/floor, /area/medical/cryo) -<<<<<<< HEAD -"DK" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Engine - Core"; - charge = 2e+006; - input_attempt = 1; - input_level = 100000; - output_level = 200000 - }, -/obj/structure/cable/cyan{ - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/engineering/storage) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "DL" = ( /turf/simulated/floor/carpet/turcarpet, /area/crew_quarters/recreation_area) @@ -14202,19 +13419,12 @@ /turf/simulated/floor/glass/reinforced, /area/stellardelight/deck2/fore) "DO" = ( -<<<<<<< HEAD -/obj/structure/flora/pottedplant/decorative, -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/item/device/radio/intercom{ dir = 4; pixel_x = 24 }, -<<<<<<< HEAD -======= /obj/structure/flora/pottedplant/decorative, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/cargo, /area/crew_quarters/recreation_area) "DP" = ( @@ -14337,13 +13547,6 @@ }, /turf/simulated/floor, /area/maintenance/stellardelight/deck2/starboardsolars) -<<<<<<< HEAD -"Eb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "Ec" = ( /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 1 @@ -14570,10 +13773,7 @@ pixel_x = -6 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/monotile, /area/hydroponics) "EC" = ( @@ -14872,15 +14072,6 @@ /obj/structure/cable/orange{ icon_state = "2-4" }, -<<<<<<< HEAD -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/airless, /area/stellardelight/deck2/exterior) "Fi" = ( @@ -14938,7 +14129,6 @@ /area/quartermaster/qm) "Fo" = ( /obj/machinery/power/solar_control{ -<<<<<<< HEAD dir = 4 }, /obj/structure/cable{ @@ -14949,40 +14139,6 @@ }, /turf/simulated/floor, /area/maintenance/stellardelight/deck2/portsolars) -"Fp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Bridge" - }, -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 6 - }, -/obj/structure/closet/walllocker_double/north{ - dir = 4; - pixel_x = 32; - pixel_y = 0 - }, -/obj/item/weapon/paper/dockingcodes/sd, -/obj/item/device/radio, -/obj/item/device/radio, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -======= - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "Fq" = ( /obj/structure/table/standard, /obj/item/device/healthanalyzer, @@ -15033,10 +14189,7 @@ /obj/machinery/light/floortube{ pixel_y = -6 }, -<<<<<<< HEAD -======= /obj/item/weapon/material/ashtray/glass, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/carpet, /area/crew_quarters/recreation_area) "Fx" = ( @@ -15246,12 +14399,9 @@ "FP" = ( /obj/machinery/light, /obj/effect/floor_decal/steeldecal/steel_decals5, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 4 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/port) "FQ" = ( @@ -15859,10 +15009,7 @@ "Hb" = ( /obj/item/modular_computer/console/preset/command, /obj/machinery/camera/network/command, -<<<<<<< HEAD -======= /obj/effect/floor_decal/milspec/color/blue/half, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/gray_platform, /area/bridge) "Hc" = ( @@ -15934,11 +15081,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -<<<<<<< HEAD -/area/quartermaster/storage) -======= /area/stellardelight/deck2/aftport) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "Hk" = ( /obj/machinery/camera/network/halls{ dir = 4 @@ -16187,6 +15330,8 @@ /obj/structure/sign/poster{ dir = 8 }, +/obj/item/device/healthanalyzer/guide, +/obj/item/device/healthanalyzer/guide, /turf/simulated/floor/tiled/eris/white/bluecorner, /area/stellardelight/deck2/triage) "HN" = ( @@ -16323,12 +15468,9 @@ dir = 1 }, /obj/effect/floor_decal/milspec/color/white/half, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 4 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/central) "Id" = ( @@ -16443,11 +15585,8 @@ }, /obj/random/vendordrink, /obj/machinery/atmospherics/unary/vent_pump/on, -<<<<<<< HEAD -======= /obj/machinery/firealarm/angled, /obj/effect/landmark/vermin, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/aftstarboard) "Il" = ( @@ -16544,10 +15683,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/monotile, /area/hydroponics) "It" = ( @@ -16606,17 +15742,6 @@ }, /turf/simulated/floor/airless, /area/engineering/engine_room) -<<<<<<< HEAD -"Iy" = ( -/obj/structure/table/reinforced, -/obj/random/powercell, -/obj/random/tech_supply, -/obj/structure/closet/walllocker_double/west, -/obj/item/device/t_scanner, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "Iz" = ( /obj/item/stack/cable_coil/yellow, /turf/simulated/floor/airless, @@ -16723,12 +15848,9 @@ /obj/machinery/keycard_auth{ pixel_y = 2 }, -<<<<<<< HEAD -======= /obj/effect/floor_decal/milspec/color/blue/half{ dir = 10 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/gray_platform, /area/bridge) "IN" = ( @@ -16743,13 +15865,6 @@ }, /turf/simulated/floor/tiled/eris/steel/cargo, /area/quartermaster/storage) -<<<<<<< HEAD -"IP" = ( -/obj/machinery/shield_gen/external, -/turf/simulated/floor/plating, -/area/engineering/storage) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "IQ" = ( /obj/structure/table/glass, /obj/machinery/door/window/southright{ @@ -17085,8 +16200,6 @@ }, /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) -<<<<<<< HEAD -======= "JG" = ( /obj/effect/floor_decal/steeldecal/steel_decals5, /obj/structure/disposalpipe/segment{ @@ -17094,7 +16207,6 @@ }, /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "JH" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green{ @@ -17111,10 +16223,7 @@ /area/maintenance/stellardelight/deck2/portfore) "JI" = ( /obj/effect/floor_decal/milspec/color/green/half, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/hydroponics) "JJ" = ( @@ -17217,8 +16326,6 @@ /obj/effect/landmark/start/chemist, /turf/simulated/floor/tiled/eris/white/bluecorner, /area/medical/chemistry) -<<<<<<< HEAD -======= "JW" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -17229,7 +16336,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "JX" = ( /obj/machinery/shield_gen, /turf/simulated/floor/plating, @@ -17504,46 +16610,6 @@ }, /turf/simulated/floor/tiled/eris/dark/orangecorner, /area/engineering/engine_eva) -<<<<<<< HEAD -"KC" = ( -/obj/structure/closet/walllocker_double{ - pixel_y = 28 - }, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/twentyfour_twentyfour, -/obj/item/canvas/twentyfour_twentyfour, -/obj/item/canvas/twentyfour_twentyfour, -/obj/item/canvas/twentyfour_twentyfour, -/obj/item/canvas/twentyfour_twentyfour, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "KD" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -17655,12 +16721,6 @@ /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/monitoring) "KR" = ( -<<<<<<< HEAD -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, @@ -17764,12 +16824,9 @@ /obj/item/modular_computer/console/preset/medical{ dir = 4 }, -<<<<<<< HEAD -======= /obj/effect/floor_decal/milspec/color/white/half{ dir = 6 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/monofloor, /area/bridge) "Le" = ( @@ -17929,12 +16986,9 @@ /area/engineering/engine_eva) "Lx" = ( /obj/structure/flora/pottedplant/orientaltree, -<<<<<<< HEAD -======= /obj/effect/floor_decal/milspec/color/orange/corner{ dir = 8 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/monofloor, /area/bridge) "Ly" = ( @@ -18026,12 +17080,9 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 4 }, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 4 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) "LI" = ( @@ -18105,10 +17156,7 @@ pixel_x = 2; pixel_y = 7 }, -<<<<<<< HEAD -======= /obj/item/weapon/material/ashtray/glass, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/steel/brown_platform, /area/crew_quarters/bar) "LQ" = ( @@ -18348,12 +17396,6 @@ dir = 1 }, /obj/effect/floor_decal/steeldecal/steel_decals5, -<<<<<<< HEAD -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"Mp" = ( -/obj/machinery/computer/arcade/orion_trail, -======= /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -18362,7 +17404,6 @@ /area/stellardelight/deck2/port) "Mp" = ( /obj/machinery/computer/arcade/battle, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/cargo, /area/crew_quarters/recreation_area) "Mq" = ( @@ -18384,8 +17425,6 @@ /obj/structure/low_wall/bay/reinforced/orange, /turf/simulated/floor, /area/engineering/storage) -<<<<<<< HEAD -======= "Ms" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -18402,7 +17441,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/stellardelight/deck2/port) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "Mt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -18444,12 +17482,9 @@ /obj/item/device/radio/intercom{ dir = 1 }, -<<<<<<< HEAD -======= /obj/effect/floor_decal/milspec/color/blue/corner{ dir = 8 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/gray_platform, /area/bridge) "Mx" = ( @@ -18622,11 +17657,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -<<<<<<< HEAD -/area/quartermaster/storage) -======= /area/stellardelight/deck2/aftport) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "MS" = ( /obj/structure/cable/white{ icon_state = "4-8" @@ -18731,8 +17762,6 @@ }, /turf/simulated/floor/tiled/eris/steel/brown_platform, /area/crew_quarters/bar) -<<<<<<< HEAD -======= "Nd" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -18740,7 +17769,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "Ne" = ( /obj/structure/lattice, /obj/structure/disposalpipe/down{ @@ -18815,10 +17843,7 @@ /area/engineering/locker_room) "Nn" = ( /obj/machinery/computer/ship/engines, -<<<<<<< HEAD -======= /obj/effect/floor_decal/milspec/color/green/half, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/gray_platform, /area/bridge) "No" = ( @@ -18905,16 +17930,6 @@ /area/maintenance/stellardelight/deck2/starboardsolars) "Nw" = ( /obj/effect/floor_decal/industrial/outline/yellow, -<<<<<<< HEAD -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -======= /obj/machinery/atmospherics/pipe/zpipe/up/supply, /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, /obj/machinery/door/firedoor/glass, @@ -18935,7 +17950,6 @@ }, /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "Ny" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -19482,22 +18496,10 @@ /turf/simulated/floor/tiled/eris/cafe, /area/crew_quarters/kitchen) "OP" = ( -<<<<<<< HEAD -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -======= /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /obj/effect/landmark/vines, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/steel/brown_platform, /area/quartermaster/storage) "OQ" = ( @@ -19664,12 +18666,9 @@ /obj/structure/cable/green{ icon_state = "1-2" }, -<<<<<<< HEAD -======= /obj/machinery/recharger{ pixel_y = 5 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/steel/brown_platform, /area/crew_quarters/bar) "Pf" = ( @@ -19784,8 +18783,6 @@ }, /turf/simulated/floor/tiled/eris/white/bluecorner, /area/medical/reception) -<<<<<<< HEAD -======= "Ps" = ( /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 1 @@ -19794,18 +18791,13 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "Pt" = ( /obj/machinery/alarm/angled, /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 1 }, /turf/simulated/floor/tiled, -<<<<<<< HEAD -/area/quartermaster/storage) -======= /area/stellardelight/deck2/aftport) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "Pu" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 4 @@ -20139,12 +19131,9 @@ pixel_x = -32; pixel_y = -32 }, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/junction{ dir = 4 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) "Qe" = ( @@ -20161,11 +19150,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -<<<<<<< HEAD -/area/quartermaster/storage) -======= /area/stellardelight/deck2/aftport) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "Qg" = ( /obj/structure/cable/orange{ icon_state = "1-8" @@ -20459,19 +19444,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos/storage) -<<<<<<< HEAD -"QM" = ( -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/obj/effect/floor_decal/milspec/color/black/corner, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "QN" = ( /obj/structure/extinguisher_cabinet{ dir = 4; @@ -20675,12 +19647,9 @@ "Rf" = ( /obj/structure/table/steel_reinforced, /obj/item/weapon/book/manual/sd_guide, -<<<<<<< HEAD -======= /obj/effect/floor_decal/milspec/color/blue/half{ dir = 6 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/gray_platform, /area/bridge) "Rh" = ( @@ -21010,15 +19979,6 @@ }, /turf/simulated/wall/bay/r_wall/steel, /area/engineering/engine_room) -<<<<<<< HEAD -<<<<<<< HEAD -"RZ" = ( -/turf/simulated/open, -/area/maintenance/stellardelight/deck2/portaft) -======= ->>>>>>> 6ca04ed009... Merge pull request #14219 from Heroman3003/stellar-fixes-s -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "Sb" = ( /turf/simulated/floor/tiled/eris/dark/danger, /area/engineering/engine_room) @@ -21169,12 +20129,6 @@ /turf/simulated/floor/tiled/techfloor, /area/stellardelight/deck2/fuelstorage) "Sv" = ( -<<<<<<< HEAD -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, @@ -21272,11 +20226,7 @@ /turf/simulated/wall/bay/r_wall/steel, /area/maintenance/stellardelight/deck2/portfore) "SF" = ( -<<<<<<< HEAD -/obj/machinery/computer/arcade/battle, -======= /obj/machinery/computer/arcade/clawmachine, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/cargo, /area/crew_quarters/recreation_area) "SG" = ( @@ -21435,12 +20385,9 @@ /area/engineering/locker_room) "SX" = ( /obj/effect/floor_decal/steeldecal/steel_decals5, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 4 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/port) "SY" = ( @@ -21743,13 +20690,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) "TJ" = ( @@ -21760,11 +20704,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -<<<<<<< HEAD -/area/quartermaster/storage) -======= /area/stellardelight/deck2/aftport) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "TK" = ( /obj/structure/closet/secure_closet/cargotech, /obj/item/weapon/stamp/cargo, @@ -21817,14 +20757,11 @@ }, /turf/simulated/floor/tiled/eris/dark/orangecorner, /area/engineering/engine_eva) -<<<<<<< HEAD -======= "TP" = ( /obj/structure/flora/pottedplant/orientaltree, /obj/effect/floor_decal/milspec/color/white/corner, /turf/simulated/floor/tiled/eris/dark/monofloor, /area/bridge) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "TQ" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -21896,11 +20833,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals5, /turf/simulated/floor/tiled, -<<<<<<< HEAD -/area/quartermaster/storage) -======= /area/stellardelight/deck2/aftport) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "Ub" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -22016,12 +20949,6 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, -<<<<<<< HEAD -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -22125,10 +21052,7 @@ /obj/effect/landmark{ name = "lightsout" }, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/monotile, /area/hydroponics) "Uz" = ( @@ -22150,12 +21074,9 @@ name = "lightsout" }, /obj/machinery/hologram/holopad, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 4 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) "UB" = ( @@ -22338,15 +21259,6 @@ }, /turf/simulated/floor/tiled/eris/dark/techfloor_grid, /area/storage/tech) -<<<<<<< HEAD -"UW" = ( -/obj/structure/sign/poster{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "UX" = ( /obj/structure/table/gamblingtable, /turf/simulated/floor/carpet, @@ -22467,11 +21379,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -<<<<<<< HEAD -/area/quartermaster/storage) -======= /area/stellardelight/deck2/aftport) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "Vl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 4 @@ -22501,13 +21409,6 @@ "Vm" = ( /turf/simulated/floor/airless, /area/stellardelight/deck2/fuelstorage) -<<<<<<< HEAD -"Vn" = ( -/mob/living/simple_mob/vore/alienanimals/teppi/baby, -/turf/simulated/floor/grass, -/area/hydroponics) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "Vo" = ( /turf/simulated/wall/bay/r_wall/orange, /area/engineering/workshop) @@ -22660,10 +21561,7 @@ req_one_access = list(19); stripe_color = "#f7d35c" }, -<<<<<<< HEAD -======= /obj/machinery/door/firedoor/glass, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/steel_ridged, /area/stellardelight/deck2/briefingroom) "VG" = ( @@ -22824,12 +21722,9 @@ /area/stellardelight/deck2/fore) "VZ" = ( /obj/effect/floor_decal/milspec/color/white/half, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment{ dir = 4 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/central) "Wa" = ( @@ -22889,10 +21784,7 @@ /area/engineering/workshop) "Wi" = ( /obj/machinery/computer/crew, -<<<<<<< HEAD -======= /obj/effect/floor_decal/milspec/color/white/half, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/monofloor, /area/bridge) "Wj" = ( @@ -23028,10 +21920,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 4 }, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/stellardelight/deck2/starboard) "Wz" = ( @@ -24042,10 +22931,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 1 }, -<<<<<<< HEAD -======= /obj/structure/disposalpipe/segment, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/hydroponics) "YK" = ( @@ -24058,12 +22944,9 @@ /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 9 }, -<<<<<<< HEAD -======= /obj/structure/sign/poster{ dir = 8 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled, /area/hydroponics) "YL" = ( @@ -24091,8 +22974,6 @@ }, /turf/simulated/floor/tiled/eris/dark/cargo, /area/crew_quarters/recreation_area) -<<<<<<< HEAD -======= "YO" = ( /obj/structure/table/gamblingtable, /obj/machinery/recharger{ @@ -24100,7 +22981,6 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/recreation_area) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "YP" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -24278,12 +23158,9 @@ pixel_x = -2; pixel_y = -2 }, -<<<<<<< HEAD -======= /obj/machinery/light{ dir = 8 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/white/bluecorner, /area/medical/cmostore) "Zj" = ( @@ -24322,18 +23199,6 @@ }, /turf/simulated/floor/tiled, /area/stellardelight/deck2/fore) -<<<<<<< HEAD -"Zn" = ( -/obj/structure/cable/yellow{ - icon_state = "32-8" - }, -/obj/structure/sign/department/miner_dock{ - pixel_y = 32 - }, -/turf/simulated/open, -/area/quartermaster/storage) -======= ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "Zo" = ( /obj/machinery/light{ dir = 8 @@ -24414,12 +23279,9 @@ /obj/item/modular_computer/console/preset/engineering{ dir = 8 }, -<<<<<<< HEAD -======= /obj/effect/floor_decal/milspec/color/orange/half{ dir = 10 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/monofloor, /area/bridge) "Zy" = ( @@ -24458,12 +23320,9 @@ /obj/item/roller{ pixel_y = 16 }, -<<<<<<< HEAD -======= /obj/machinery/light{ dir = 8 }, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/white/bluecorner, /area/stellardelight/deck2/triage) "ZE" = ( @@ -24482,11 +23341,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled, -<<<<<<< HEAD -/area/stellardelight/deck2/aftstarboard) -======= /area/stellardelight/deck2/aftport) ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "ZG" = ( /obj/structure/cable/orange{ icon_state = "4-8" @@ -24622,10 +23477,7 @@ /area/engineering/atmos/monitoring) "ZU" = ( /obj/machinery/computer/ship/sensors, -<<<<<<< HEAD -======= /obj/effect/floor_decal/milspec/color/green/half, ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 /turf/simulated/floor/tiled/eris/dark/gray_platform, /area/bridge) "ZV" = ( @@ -24676,22547 +23528,6 @@ }, /turf/simulated/floor/carpet/turcarpet, /area/crew_quarters/recreation_area) -<<<<<<< HEAD - -(1,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(2,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(3,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(4,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(5,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(6,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(7,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(8,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(9,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(10,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(11,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(12,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(13,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(14,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(15,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(16,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(17,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(18,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(19,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(20,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(21,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(22,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(23,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(24,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(25,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Tt -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(26,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(27,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(28,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(29,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(30,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(31,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(32,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(33,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(34,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(35,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(36,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -iU -SO -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -CQ -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(37,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Sk -Le -Le -Le -Le -Le -hI -Dt -Jm -Jm -Jm -Jm -Jm -sR -Jm -Jm -Jm -Jm -Jm -Jm -Us -Jm -nI -kL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(38,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Ds -uu -oy -ov -ov -ov -Ff -xR -ov -ov -Ff -Ff -ov -ov -Wb -Au -QI -tZ -QI -tZ -QI -eW -QI -Pu -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(39,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Ds -Le -Le -Le -wg -Le -Le -Le -Le -Le -SO -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Ds -kL -ov -ub -VB -vV -NH -Zs -QO -kz -dH -zu -IF -vk -UI -ui -Pu -Pu -Pu -Pu -Pu -Pu -wu -Pu -Pu -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(40,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Pp -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -iU -Le -Le -Le -Le -Le -Vc -Le -Fh -Le -kL -NL -NL -NL -NL -NL -NL -Iz -NL -NL -CP -MX -Le -Sj -Jh -Jh -Jh -Jh -Jh -NL -ZG -NL -ov -cq -ub -yN -gZ -aq -Zs -lF -op -Tr -pB -sF -Jd -Kp -Pu -Pu -Pu -Pu -Pu -Pu -wu -Pu -Pu -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(41,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -ZG -yH -yH -yH -yH -yH -yH -NL -yH -yH -yH -yH -yH -ZG -NL -Wb -Wb -Wb -Wb -Wb -NL -NL -ZG -tc -ov -Pw -gs -If -VO -kP -kP -kP -Sg -YT -Ap -AD -ov -Qw -ma -Qw -ma -Qw -ma -Pu -wu -Pu -Pu -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(42,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -ZG -iH -Uh -Uh -Uh -Uh -Uh -NL -Ig -Ig -Ig -Ig -BE -CP -Le -Le -Le -Le -Le -rW -GJ -GJ -vJ -mI -ov -wp -wp -wp -Fx -zi -BG -Kd -VI -DX -Fa -jE -uk -IU -IU -uk -uk -uk -NL -Pu -wu -Pu -Pu -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(43,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -se -dk -dk -dk -dk -dk -dk -dk -bw -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -yy -uK -bH -mZ -Mx -Cq -Cq -Cq -Cq -NL -Cq -Cq -Cq -Cq -Cq -NL -Jh -Jh -Jh -Jh -mI -sx -DB -rs -DB -DB -Hm -Hm -Hm -wp -wp -aD -wp -MQ -vW -Ny -vw -nA -EF -In -hu -BZ -TF -uk -uk -Qw -ms -Qw -ma -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(44,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -NL -jx -NL -NL -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -CP -Le -SO -qG -Uh -Uh -Uh -NL -Ig -Ig -Ig -Ig -BE -Wb -Wb -Jh -Jh -mI -mI -uR -DB -DB -St -Wo -bR -xr -Gh -nW -RL -DY -Hm -Hm -Hm -Hm -Hm -mu -oE -eU -TH -qO -pO -Pm -uk -uk -ZG -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(45,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -Ar -NL -jx -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -CP -SO -Mx -Mx -Mx -NL -Mx -Mx -Mx -Mx -Mx -Wb -Wb -Wb -mI -mI -fQ -th -Wo -XW -Qg -eq -eq -iA -eq -eq -be -ZT -Hm -Em -Am -Et -Am -nR -Rw -od -UY -WJ -pO -HI -Av -dV -mh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(46,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -se -dk -dk -dk -dk -dk -dk -UT -cT -nP -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -CP -SO -NL -NL -Cf -NL -NL -NL -NL -Jh -Jh -Wb -BT -BT -eq -eq -eq -eq -eq -eq -eq -nE -JS -NK -eq -sz -to -dT -Ag -Fl -sp -hK -Pq -oE -Kq -ge -IA -eG -Ei -js -uk -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(47,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -bD -yK -NL -NL -Jh -Jh -Jh -Jh -NL -jx -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -ZG -Wb -ie -zI -ie -Jh -Wb -Wb -Jh -Jh -Jh -BT -cx -ez -QH -eq -ql -ez -mB -eq -nE -JS -NK -eq -XS -kM -ZS -VA -km -Na -Ul -Fv -GD -Ck -Jt -ut -XG -PJ -Kk -rb -mR -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(48,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -jx -Wb -Jh -Jh -Jh -Jh -Jh -Wb -jx -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -ZG -Jh -aa -eb -Fz -Fz -Fz -jL -Wb -Jh -FD -BT -cx -JS -QH -eq -ql -JS -mB -eq -ny -xu -oA -oo -Er -la -la -tz -eu -ig -tN -mx -oE -tD -UY -OK -pO -Qu -fj -Sz -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(49,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -KL -hO -SE -KL -aT -aT -aT -KL -aT -KL -SE -KL -aT -aT -aT -KL -aT -aT -KL -aT -aT -aT -KL -KL -KL -KL -KL -WP -Br -hg -WP -rR -rR -rR -rR -QY -QY -rR -rR -rR -rR -rR -ie -Tw -Fz -Pk -Px -sa -Fo -Te -CO -ux -ux -MC -BT -Yv -xu -oA -oo -xW -xu -oA -mA -kW -eI -WS -Un -Ab -Ab -Ek -QC -uN -gy -SS -Dg -oE -ZN -pY -DE -sT -WM -fq -Sz -QW -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(50,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -KL -KL -Md -Qx -Gv -Gv -Gv -Gv -Gv -Gv -Gv -KD -Gv -Gv -Gv -Gv -Gv -Gv -Gv -Gv -Gv -Gv -Gv -Gv -Uv -VD -yz -KL -WP -Zc -fX -WP -rR -rR -RE -um -iz -sn -kg -RZ -dC -cV -iz -qC -zv -Xm -eE -pk -Fe -PU -GO -GK -ZJ -My -PW -eq -Wv -xi -oQ -oQ -zM -Mf -oQ -oQ -wA -ah -ue -As -Tq -oU -xN -Zq -VV -et -Ca -Yo -UG -UG -Od -UG -UG -cv -cv -cv -CP -SO -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(51,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -Wb -Jh -Jh -hO -Md -Ub -ch -ch -ch -ch -ch -ch -ch -KK -KK -KK -kR -kR -kR -KK -kR -kR -KK -kR -kR -kR -KK -KK -OQ -Ev -KL -WP -yp -bI -WP -rR -EG -Yh -Yh -Yh -AP -FI -Yh -Yh -uL -Yh -Ym -qY -fw -uc -JP -DH -CA -NB -Lf -dO -AU -dx -lh -gM -oe -AX -Dc -he -CR -AX -AX -he -AX -ao -AX -Qr -ag -XK -qN -CM -qw -iJ -Xu -UG -di -Iq -EQ -Zt -qM -Vm -mq -Wb -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(52,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -CZ -dk -dk -dk -dk -Vd -Zy -oD -ch -ch -Bk -Wa -vh -Wa -OM -hl -rO -sV -ZW -Wp -LO -rt -Lz -bb -kG -sd -Vz -oz -pd -uA -KK -Gq -Cu -hO -WP -VT -fX -WP -QY -Kb -Bw -Bw -Bw -Bw -Bw -Bw -Bw -Bw -Bw -Bw -Bw -Bw -Bw -Bw -bh -wB -Bw -Bw -Bw -Bw -bg -bF -Wx -hN -qg -ac -Wx -ez -ac -QK -ff -nG -CH -AW -LU -ja -Eq -VW -Cn -mD -vD -qL -UG -JM -GU -Su -LG -AV -Vm -Vm -Wb -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -"} -(53,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -se -nP -NL -Jh -Jh -Xk -Xk -kX -Gi -wL -ch -DD -my -AC -DP -BF -hl -pN -yv -Uo -iZ -ES -ea -Qo -pX -iZ -ej -WN -ok -dP -AR -KK -si -pS -hO -WP -LM -LM -WP -QY -Kb -Bw -YQ -Gc -dX -fr -MD -ox -MD -zp -eL -fr -vU -WV -MD -fR -IC -TZ -cn -TZ -dR -WK -eq -RN -gY -qg -ac -vB -Nl -wI -Ai -RN -tF -IN -Ki -Ya -vF -An -uB -XI -im -vn -qF -UG -Bd -No -zY -yg -AV -cv -cv -Ds -kL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(54,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -se -nP -NL -Jh -Jh -Xk -Xk -Fm -ki -Yp -uW -ch -gQ -cu -VH -LW -Ha -hl -af -dQ -Do -iZ -GM -lf -mz -sA -iZ -ii -WN -bU -LS -Jp -KK -JH -Fc -KL -wn -sW -sW -wn -rR -Rz -Bw -vX -Ec -kI -ti -ti -ti -ti -IB -ti -ti -ti -ti -qI -xe -MY -ti -ti -ti -Es -te -eq -Mu -xu -oA -TA -sU -xu -oA -NX -xl -HX -OH -zd -YE -ly -go -UD -Lk -oq -om -IH -WU -zV -Tu -Js -Sc -PB -NL -NL -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(55,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -se -nP -NL -Wb -Jh -Xk -Xk -rn -oO -CE -IW -VL -hl -hl -hl -hl -Zb -hl -hl -Mn -oj -if -vP -Uy -ap -zb -EA -wP -JI -fa -gc -Vn -dP -KK -Nw -Iw -KL -Bw -BW -BW -Bw -rR -Kb -Bw -mg -pL -CJ -hr -Cj -Cj -Cj -Cj -Cj -Cj -ZQ -Cj -tP -tU -jd -Cj -Bf -NG -cO -Bx -eq -CT -JS -BY -eq -cE -JS -Ch -eq -mf -sb -wZ -eq -OT -ty -lt -OY -nZ -Dm -CB -qF -UG -Rl -Sd -ZE -MP -PB -cv -cv -CP -SO -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(56,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -bD -yK -NL -Wb -Wb -Wb -Xk -OA -dm -YC -lz -hZ -lr -iN -YK -gG -bq -YJ -uf -bt -Dq -Is -iY -iY -iY -Yw -iZ -iZ -iZ -Kc -WN -ok -dP -AR -KK -bP -kK -Hz -gm -PG -PG -Cb -Rp -Ws -Bw -Bw -Ec -wF -Mo -xp -xp -QB -QB -QB -xp -Hr -Hr -Hr -Hr -Hr -Hr -Hr -Ec -cO -Bx -eq -CT -kQ -BY -eq -cE -uO -Ch -eq -mf -oL -wZ -eq -Cz -Hs -kn -Zp -dt -Ov -al -qF -UG -ot -MG -Su -ay -wm -Vm -mq -Wb -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(57,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -jx -Wb -Wb -Jh -Jh -Xk -nC -Ta -Bn -yf -IW -Yj -Bj -ml -BH -BH -jM -BH -YH -Ro -sE -bc -Ue -SY -zr -bS -aS -aG -RA -qp -dF -sh -mS -KK -mY -qy -UR -Aa -sg -sg -pr -Bw -FS -yP -Bw -Ko -wF -SX -xp -qn -hC -Dx -yo -XZ -Hr -Oj -Ht -Fq -Qy -wd -Hr -Gs -yd -pv -eq -eq -eq -eq -eq -eq -eq -eq -eq -eq -nr -yl -yl -WA -cl -pT -vx -FL -gB -HC -fG -UG -DF -RU -Wj -DR -AV -Vm -Vm -Wb -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(58,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -jx -Jh -Jh -Jh -Jh -Zl -QG -Bm -Ak -Pg -IW -rr -hl -MU -jo -jo -aj -jo -MU -MU -MU -jo -jo -MU -Sy -MU -gx -lI -MU -jo -jo -yX -jo -KK -Bw -Bw -UR -pw -Yk -Ce -pw -Bw -Bw -Bw -Bw -Ec -wF -SX -ip -so -Nu -EC -ws -va -Hr -hw -hV -RM -Om -zt -Hr -jt -gK -eP -yY -fn -HG -bk -Mc -Mc -yD -SQ -nX -SQ -ym -Qn -nw -xx -TW -Hm -BQ -FL -gB -yB -qF -UG -UG -Jo -eg -eg -tk -cv -cv -Ds -kL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(59,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -lZ -Di -Jh -Jh -Jh -Zl -gr -Ta -OO -Vv -IW -pI -Gy -Zo -ND -ND -au -ND -Sr -zO -Qe -Qe -Qe -Qe -PZ -GY -Qe -Qe -Hk -Qe -Qe -Qe -Qe -nS -Vw -eL -zP -VP -VP -VP -MD -eL -pA -EI -MD -WF -wF -SX -ip -Gr -dh -Fr -ws -tv -Hr -zU -Ee -Bh -iD -ca -Hr -xm -dj -YS -YS -YS -ul -YS -YS -YS -YS -YS -dz -YS -EW -gf -DQ -QR -zR -Hm -wM -FL -eH -cM -XV -Tf -aZ -xU -jV -KQ -ey -Le -Le -gF -Ii -Sj -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(60,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -lZ -Di -Wb -Xk -Xk -cW -gj -pz -Bo -cw -Ta -Gy -Gj -jC -XC -XC -XC -XC -XC -XC -XC -ih -ZM -bN -MV -XO -XO -XO -XO -XO -hd -uT -uT -jw -RR -YV -VP -VP -VP -Ve -Ve -Ve -Ve -Ve -Ve -wF -SX -ip -mP -Tp -HB -fb -jI -Hr -dD -sK -Ge -yU -xj -Hr -nB -cj -FX -CD -CD -eD -CD -CD -FX -FX -gw -ci -FX -JC -zf -CD -pq -cz -Hm -vx -bo -Uk -xt -tI -ga -qx -MJ -Gl -FK -qq -Wb -Wb -NL -CP -SO -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(61,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -jx -NL -Xk -iC -Ta -Ta -Ta -GB -zJ -ZL -Ng -gl -aB -TM -HR -of -cP -yh -QM -Xe -qo -ek -mN -kV -Zr -Zr -Zr -Zr -sO -Xi -ua -Rj -Vw -mi -bA -MA -tL -VP -bA -bA -bA -mb -bA -BP -wF -FP -xp -ke -lc -Dn -RW -jX -Hr -Dy -uv -EL -IZ -OC -Hr -Hr -Oi -bY -Ef -kt -wY -Ip -ZV -bY -FX -FX -ci -Hl -do -do -do -Vj -do -Hm -Hm -Hm -Hm -Hm -Hm -Hm -Hm -pK -Hm -Hm -SK -LE -LE -LE -LE -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(62,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -jx -NL -Xk -iF -Pn -Pn -Pn -Yu -nU -Pn -HJ -RD -KH -zz -nt -nt -nt -nt -nt -kE -QV -nt -nt -nt -DN -xP -Wq -Vr -Wk -Xi -RT -nK -nK -nK -Rd -xd -xd -ug -ug -ug -ug -xd -xd -oH -SD -fv -xp -xp -xH -xp -xp -xp -Hr -Hr -Hr -Hr -Bl -Hr -Hr -Hr -Gx -DA -AJ -Ef -wY -dL -qT -AL -sI -FX -zl -Ao -do -ME -bl -hU -do -vC -UO -PC -PL -PC -UO -Pj -sG -pb -Jr -Ur -EH -yT -UZ -yC -LE -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(63,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -jx -HQ -HQ -YD -EV -EV -EV -ZC -FM -EV -Sx -po -td -jF -nt -Ji -YN -De -QZ -Ho -aE -QJ -WR -nt -Rq -Rq -Rq -Rq -Jq -Xi -RT -nK -fV -nK -zH -xd -mH -Ad -rF -GV -GV -OD -xd -Mj -Da -vH -PE -Qh -bi -Nh -Vb -ZD -HM -FH -bu -Qp -Ih -KV -jK -Vb -QP -QP -QP -QP -QP -QP -QP -QP -QP -ei -Bt -eB -do -Zn -Lm -YP -do -Az -NN -qu -re -pc -NN -NN -Yg -Fi -EK -eR -EK -qt -Wf -ID -bE -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(64,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -bD -dk -dM -ir -pn -QS -QS -QS -BJ -Fb -TC -DI -Sx -jr -KH -zz -nt -Mp -dY -cC -iO -mt -Cy -mt -Yc -nt -Rq -Rq -lQ -Jq -Xi -kF -nK -nK -nK -Rd -xd -Pl -OL -cJ -cb -Al -Fk -Uu -Mj -Da -Ib -PE -pM -Xb -hp -Dk -ds -hx -hx -Ay -LZ -bJ -Ll -hx -EU -QP -QN -Zi -tM -ko -Ia -XY -pg -QP -cs -ci -eB -do -WG -Hu -ak -Me -ar -uI -Sn -wk -Cm -Qj -AZ -ht -ye -DZ -DZ -DZ -DZ -DZ -in -bE -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(65,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -oJ -Gn -MK -YU -Nc -Nc -dU -TC -YU -rV -VG -KH -HO -nt -GL -mt -mt -mt -mt -Cy -mt -SI -nt -nt -nt -nt -nt -PA -Xi -cY -nK -nK -So -lD -xd -xd -xd -cg -CK -cb -Fk -Uu -ll -xZ -xn -PE -dK -me -gH -kb -iW -uh -Ox -fO -Jy -nT -yk -Mb -ww -QP -Uq -Kf -Kf -XF -VS -XY -pg -QP -Rv -ci -eB -do -WG -gb -kx -Rx -Jj -PH -wE -es -Rx -Vi -pD -jQ -jQ -jQ -Eu -jQ -jQ -jQ -Qa -bE -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(66,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -oJ -wG -MK -YU -Gn -CY -Gn -TC -YU -rV -lT -KH -Ct -nt -WC -mt -mt -mt -mt -jv -ct -Lq -ct -HE -xE -yG -nt -kr -Mi -RT -nK -xB -Zj -Sp -Io -kJ -xd -dZ -er -Gg -PP -xd -dp -Da -VZ -PE -PE -kZ -ya -Vb -Vb -KS -Vb -KT -wz -ZK -Ze -nj -Qi -Pv -lL -cR -ee -cR -yI -XY -pg -QP -Qf -MR -Ua -do -do -do -do -Ti -DM -JN -hS -hS -zj -dN -pD -jQ -jQ -jQ -jQ -jQ -jQ -jQ -Qa -bE -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(67,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -oJ -Gn -MK -YU -ic -ls -oF -TC -aY -bx -VG -KH -zz -nt -UW -Bp -oS -oS -oS -Bp -mt -mt -mt -DL -Lb -ix -nt -rH -QX -RT -jU -kc -ru -Xs -Cw -Cw -kD -Mt -it -SH -Vg -xd -AB -Da -VZ -Wz -Lv -RF -YI -Kt -EJ -WQ -Vb -wh -wz -RQ -Ze -Eo -Ze -QP -gu -Kf -Kf -Kf -Kf -XY -pg -QP -jN -db -Eb -OP -TS -XN -NN -ou -vy -mw -mw -jD -zj -PS -cU -jQ -jQ -jQ -jQ -jQ -jQ -jQ -Qa -bE -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(68,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -HQ -Nk -YU -YU -YU -qe -YU -TC -YU -Sx -VG -KH -zz -nt -yc -Dl -UX -UX -UX -vS -mt -mt -mt -DL -Lb -sc -nt -yF -uE -RT -jU -Lx -Zx -UL -BX -Vy -xd -xd -xd -xd -VF -xd -rk -Da -VZ -xQ -lW -RF -mo -IQ -ef -xO -Vb -fP -ve -TL -QD -Ba -jp -QP -QP -tV -Id -yV -Kf -XY -pg -QP -tA -db -Eb -dq -zj -We -Lu -CS -vq -Rh -gO -vq -hS -dN -LX -jQ -jQ -jQ -jQ -jQ -jQ -jQ -Qa -bE -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(69,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -TU -oJ -Gn -MK -YU -Nc -Ux -xD -Pc -fB -iX -UQ -kS -PK -JR -xA -DS -UX -Bp -Ob -ts -Ut -Ut -Ut -DL -tb -rg -nt -dG -wK -GS -jU -ew -Rf -Uj -ZU -JQ -nK -nK -bL -wi -VN -sS -Mj -Da -VZ -vN -RF -RF -Xt -eS -jG -iP -Vb -Kg -wz -fx -zC -fx -MH -LZ -Vb -Vb -Vb -Vb -hi -XY -pg -QP -TJ -db -Eb -dq -zj -GE -NN -BM -RO -pl -LF -oC -hS -dN -pD -jQ -jQ -jQ -jQ -jQ -jQ -jQ -Qa -bE -CP -SO -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(70,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Xc -oJ -LP -zw -Jl -Gn -CI -iT -TC -ku -Sx -Je -DW -JL -nt -BS -Dl -UX -BK -Fw -vS -Ut -IE -Ut -Xx -NS -mL -nt -HY -GI -UM -jU -Hb -HL -nD -CG -wo -nK -nK -uQ -xy -Hg -os -em -PO -wl -Ci -zG -wX -Pr -qj -ld -rC -Vb -HA -wz -TR -Kl -vi -Ze -Ay -qZ -hT -bf -Vb -Zv -Kf -sZ -QP -Hj -ln -xC -xG -zj -GE -do -iB -vq -XJ -MM -nz -hS -dN -su -jQ -jQ -jQ -jQ -jQ -jQ -jQ -FW -bE -Jh -AF -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(71,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -TU -oJ -Gn -MK -oB -wq -wq -WI -LR -by -FJ -OW -pG -co -BD -ud -Ep -UX -Bp -UX -ts -Ut -Ut -Ut -DL -hD -wf -nt -pa -rj -EN -jU -Mw -IL -Uj -Nn -JQ -rN -rN -rN -rN -rN -rN -Mj -Wr -VZ -vN -RF -RF -wa -eS -WB -rC -Vb -Ol -FG -ZK -Ks -ZK -Ze -hx -Vb -Vb -Vb -Vb -vG -Kf -wC -QP -cK -Vk -BL -KR -wH -Sv -sk -gN -Um -wR -wR -fz -bB -OR -fY -jQ -jQ -jQ -jQ -jQ -jQ -jQ -Qa -bE -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(72,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -HQ -pi -YU -lU -as -as -Rr -AY -YU -Sx -Ls -KH -zz -nt -yc -Dl -UX -UX -UX -vS -mt -mt -mt -DL -Lb -sc -nt -yF -uE -RT -jU -Lx -Ld -Uj -<<<<<<< HEAD -Zj -======= -fy ->>>>>>> 6ca04ed009... Merge pull request #14219 from Heroman3003/stellar-fixes-s -Zj -rN -ry -sB -cZ -lC -rN -zo -Wr -VZ -xQ -wS -RF -sv -Ud -gg -HH -Vb -wT -BU -RQ -Ze -FE -La -QP -QP -kk -xV -jW -Kf -Kf -AG -QP -Pt -db -Eb -rv -zj -DV -do -EM -uY -hS -hS -bW -zj -ZY -ET -jQ -jQ -jQ -jQ -jQ -jQ -jQ -Qa -bE -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(73,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -oJ -Gn -MK -fi -VC -XU -sr -Xq -qS -Sx -EE -KH -zz -nt -hA -Bp -io -io -io -Bp -mt -mt -mt -DL -Lb -ix -nt -Yy -Hy -RT -jU -Wi -hc -GP -nv -JK -nu -RH -ky -AO -WX -rN -Hh -Wr -VZ -Wz -Qq -Km -Mq -xL -LC -yQ -Vb -wT -zD -ik -Ze -og -Ze -QP -sJ -nJ -kj -Pb -Vq -kO -yE -QP -jN -db -Eb -gq -HZ -Nj -NN -ae -or -WE -Ui -BO -Ui -dN -pD -jQ -jQ -jQ -jQ -jQ -jQ -jQ -Qa -bE -Wb -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(74,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -oJ -wG -MK -fi -dw -On -rd -AN -sL -rV -lT -KH -Ct -nt -Yl -mt -mt -mt -mt -hm -VM -uJ -VM -BC -lG -ZZ -nt -ys -IK -RT -nK -Dh -lo -lB -GW -Fp -rN -VE -oc -xv -Ow -rN -IG -AA -rc -Xa -Xa -Rc -tf -Xa -Xa -NQ -Vb -qm -Wu -GF -hR -fu -dc -zQ -fF -aX -Qc -Tm -hn -pf -hn -hn -Qf -qb -Ua -YY -Nf -Nf -YY -le -YY -YY -xk -BO -Ui -dN -pD -jQ -jQ -jQ -jQ -jQ -jQ -jQ -Qa -bE -Wb -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(75,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -oJ -Gn -zw -fi -dw -On -py -fp -mn -rV -VG -KH -HO -nt -XP -mt -mt -mt -mt -lO -mt -mt -nt -nt -nt -nt -nt -PA -IK -cY -nK -nK -oZ -gC -rN -rN -rN -iM -uP -IV -IV -rN -uF -dB -aF -Xa -eJ -JV -Yn -Hc -Xa -zc -uj -Ll -dr -hx -hx -tT -Iu -QP -IT -LQ -nV -ft -hn -zL -PY -Ex -ZF -Jn -zh -cX -ed -du -dJ -mE -tG -YY -ce -BO -Ui -dN -pD -jQ -jQ -jQ -jQ -jQ -jQ -jQ -Qa -bE -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(76,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -bD -dk -Di -HQ -LT -as -uX -dw -On -hY -fp -MZ -Sx -Xl -KH -zz -nt -SF -Fy -cC -iO -mt -lO -Ri -sH -nt -Rq -Rq -lY -Jq -IK -kF -nK -nK -nK -yJ -rN -SN -DG -vK -uP -IV -sX -rN -mk -eZ -VZ -sq -vO -Ft -Dv -ol -Dz -rm -hj -kC -vI -NP -Cd -OE -EU -QP -lR -jq -Zw -Df -hn -DJ -Pz -hn -eO -Jn -zh -cX -Oa -tt -BI -PD -ed -cX -nF -BO -Ui -cy -tu -HN -HN -HN -HN -HN -HN -HN -nm -bE -Wb -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(77,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -jx -HQ -HQ -pW -sP -dw -On -py -fp -Dj -Sx -po -AI -jF -nt -fL -mU -DO -kp -GA -fK -ij -sH -nt -Rq -Rq -Rq -Rq -Jq -IK -RT -nK -fV -nK -uC -rN -lg -EO -ED -fo -XR -gn -rN -we -dB -fI -sq -xJ -fh -MS -NF -qQ -iq -zX -vf -LV -GT -lP -WY -Vb -QP -QP -QP -QP -QP -hn -hn -hn -hn -Oz -KA -XQ -JZ -Hp -Sq -XX -Dr -Fn -JZ -PM -wN -rK -Vl -qk -Eh -SZ -Jv -jZ -pp -yR -HF -IO -bE -Wb -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(78,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -tj -dk -PR -Pe -bp -dw -On -py -fp -ZO -Sx -VY -KH -zz -nt -nt -nt -nt -nt -kE -lJ -nt -nt -nt -dv -Im -Gb -kl -Wk -IK -RT -nK -nK -nK -yJ -rN -rN -rN -rN -rN -rN -rN -rN -oH -Nr -fv -sq -jf -jc -dg -Sh -Xa -qf -nd -nd -nd -mK -nd -nd -nd -uz -Bg -CN -fJ -yW -NW -iE -Aw -Yx -ON -Jn -LK -cX -xo -NO -cH -kY -rU -YY -Sf -TK -kq -vA -Vp -Wc -kB -He -aR -IR -xw -ZI -hW -LE -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(79,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -jx -NL -oJ -mJ -sP -dw -On -wV -aK -nQ -Sx -aC -KH -jP -Tl -pH -eX -Ga -ex -zs -lS -eV -Kn -US -ND -ND -ND -ND -sO -IK -jy -Bc -yr -oi -Gd -Pf -wW -Ru -nL -WL -WL -Iv -iu -ec -YX -vR -Xa -Tn -Xg -Ky -Ft -vO -qf -xY -oh -bs -OU -OX -nd -nd -jz -Ml -fJ -en -yW -ab -Uc -Ml -ON -ON -Jn -Vu -ta -ta -ta -ta -ta -ta -ta -ta -LY -LY -uM -LY -oa -oa -oa -oa -BN -LE -LE -LE -LE -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(80,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -se -nP -Wb -HQ -HQ -vg -Ax -LL -GX -uZ -Hi -Sx -iy -mV -XC -rQ -xT -xT -xT -xT -xT -kd -SU -xT -WH -xT -xT -xT -xg -jJ -lj -ji -ji -Xv -En -jk -Ru -Ru -Ru -CC -CC -CC -CC -CC -CC -YX -Ka -sq -Or -Ft -Ky -RI -Ys -qf -hM -Xh -vL -Hw -fg -nd -Ik -TN -dI -eN -eN -Ej -eN -eN -dI -dI -eT -nN -up -dA -Lt -Xf -Lc -kA -Iy -CL -To -jm -yq -TO -FY -Gf -XH -UB -np -BN -Wb -Wb -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(81,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -se -nP -Jh -Jh -Jh -HQ -Sx -Sx -Sx -Vh -Sx -Sx -Sx -FA -Zr -sj -FU -Zr -Zr -vj -pZ -DC -Zr -OV -Zr -Ye -Zr -Zr -Zm -OV -Zr -Zr -sj -Zr -yr -Mm -lv -Ru -Ru -Ru -Mk -Mk -lv -Mk -Mk -uq -YX -Ka -sq -Ln -ck -Ky -ad -mW -qf -OG -ho -Lh -Gw -gJ -nd -qD -Cx -hJ -hJ -hJ -hy -hJ -hJ -hJ -fW -hJ -bX -jS -dA -RP -At -bd -UK -At -Wh -To -eF -tl -Il -no -Hq -tQ -vM -kN -SA -Le -Le -uG -Le -Sj -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(82,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -jx -Jh -Jh -Jh -Jh -Yf -rG -bV -LN -KG -Rn -FC -fl -fl -HW -fl -rX -fl -HW -fl -fl -eC -Ke -HP -hq -mT -mT -AM -mT -JB -oM -mT -mT -JY -Hd -an -Hd -rZ -zN -Ew -rZ -Hd -Hd -Hd -Hd -Xd -YX -Ka -sq -BR -Ft -Ky -Ft -vY -qf -VK -Op -Bv -cD -hF -nd -Py -PF -ON -Td -Ou -Lr -Ou -Ou -Rk -kv -ZH -OS -gL -dA -LD -Zd -YG -YL -GH -vo -To -TG -Sm -pU -Yd -Gf -Gf -Gf -uo -BN -nq -nq -CP -SO -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(83,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -se -yK -Wb -Wb -Jh -Jh -Yf -UC -TY -Og -FB -UC -JT -fl -Ae -Rm -WZ -CF -wt -hT -hP -fl -ZA -zm -GG -gR -mT -qs -RX -tn -Ok -KE -NJ -YF -JY -zK -RS -Hd -rM -Bq -Bq -zk -Hd -pJ -EX -Hd -IY -YX -Ka -Xa -KY -jc -Bb -UH -hL -qf -oK -hQ -Ss -Vt -Kw -nd -XL -wO -XL -LI -QU -ZR -QT -QU -LI -HK -HK -II -HK -To -tB -Eg -qH -rA -Fd -jY -hs -nb -fA -xa -Ug -lm -WW -QE -cF -Jk -VJ -Dw -Wb -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(84,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -Wn -jx -NL -Wb -Wb -Wb -Yi -cB -UC -yM -Ly -NY -YM -fl -CV -Wm -tW -eY -tW -RK -ev -fl -vu -Xy -wv -ra -mT -mX -Ns -Ns -Zu -wJ -mT -cI -JY -GQ -SV -Zk -XM -HD -HD -Gt -Zk -SM -Hd -Hd -Xd -YX -dy -Xa -Xa -sq -sq -sq -Xa -qf -nd -nd -nd -nd -nd -nd -Xd -FQ -Ka -QU -Th -Ph -rq -GZ -LI -ai -MF -gT -Zf -To -xM -qz -Uz -vc -oV -Af -To -UU -TX -Qm -aO -Nq -Sm -SP -Nt -Lw -VJ -VJ -Wb -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(85,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -jx -NL -NL -Wb -Jh -Yi -Yi -IJ -Kx -Ez -gP -pR -fl -FR -Wm -HV -tJ -HV -RK -ev -fl -EZ -SL -wv -mF -mT -TB -Ns -Ns -pP -wJ -mT -cI -JY -Tg -Ot -Hd -Hd -ST -Po -Hd -Hd -SR -Hd -YW -rh -xX -Qd -CW -CW -CW -CW -CW -CW -Yz -CW -cA -CW -zZ -CW -JF -rY -FQ -yx -QU -Nz -rq -iv -Ed -LI -fk -SW -AE -QQ -rw -jY -eQ -uU -fT -yw -iI -To -xq -oX -aW -Xz -Nq -Sm -SP -lk -Lw -nq -nq -Ds -kL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(86,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -lZ -dk -dk -Di -Jh -Jh -Yi -Yi -Yi -Yi -cQ -Yi -aN -xI -Wm -HV -eY -HV -RK -mG -fl -Wl -Xy -wv -NE -mT -Ma -Ns -Ns -Zu -wJ -mT -cI -JY -at -Yb -iQ -fe -KJ -KJ -fe -YB -un -Hd -KU -Xd -UA -wb -wb -wb -wb -mm -CC -CC -CC -CC -CC -TI -Co -Co -Co -Co -Gp -dE -QU -ns -rq -NZ -Ku -Re -OI -da -iw -dW -To -To -Vo -Vo -Vo -Vo -Vo -Vo -qr -nH -BB -tE -qP -Sm -mv -qW -Kr -NL -NL -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(87,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -jx -NL -Jh -Jh -iQ -iQ -YZ -de -oG -aN -VU -yn -eM -rz -Rm -pV -ev -fl -OJ -Xy -wv -oT -mT -mQ -UN -UN -wy -wJ -mT -cI -JY -Ne -Ot -Bu -Ts -Ah -rD -Ts -XT -SR -Hd -us -aL -zS -Wy -<<<<<<< HEAD -Mk -Mk -======= -xh -XE ->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures -Mk -fs -Tk -yu -IX -Mk -Mk -LH -Mk -pm -Mk -XE -lv -Aj -LI -Gz -Tc -uD -YR -LI -fm -Kv -dS -vb -Nm -eo -OF -Oq -rf -RG -lN -is -OF -vm -KB -gX -lK -JJ -PI -jA -Lw -nq -nq -CP -SO -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(88,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -ur -dk -dk -dk -dk -TV -TV -gk -oG -aN -md -iV -Tj -Cv -Kj -rI -Du -fl -rE -xK -aw -Dd -mT -KC -Bi -XD -jj -uy -uy -Cg -JY -gv -UJ -Bu -Ts -GN -pQ -Ts -XT -SR -Hd -Hd -Hd -Hd -Hd -Hd -Hd -Hd -Hd -Hd -Hd -Hd -Hd -Hd -vp -Hd -Hd -Hd -Hd -Hd -Hd -mO -bZ -rq -iS -Qk -LI -Be -mM -nx -fU -Mv -OZ -tg -xb -Sb -xz -Mg -qJ -tg -cf -TX -KN -jg -Zh -FV -lX -yA -VJ -Dw -Wb -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(89,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -Wb -Jh -Jh -Bu -Oo -Nb -aN -aN -aN -HW -HW -HW -sD -aN -aN -rx -Ey -sN -rx -JY -JY -AM -AM -JY -AM -AM -JY -JY -fd -Pi -iQ -Ts -TQ -bC -Ts -YB -Ir -Tv -Tv -Tv -ph -Tv -Tv -Tv -vQ -Tv -aI -qh -Ie -HS -am -Cc -Jw -aM -FT -pj -Np -Np -yi -KW -nf -kh -JD -LI -qd -na -oY -rp -Fs -Ww -ka -RJ -ng -Pd -Ry -cL -Qz -tm -az -nO -nO -kT -nO -nO -nq -VJ -VJ -Wb -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(90,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -iQ -iQ -hb -ri -WO -WO -WO -WO -WO -WO -WO -FZ -WO -WO -ax -oG -oG -oG -oG -oG -oG -oG -oG -oG -yS -rl -ep -iQ -Ts -fc -pQ -Ts -YB -YB -PV -jB -pJ -Xp -Za -vT -Jf -zW -qa -gd -mj -ha -Xr -tw -VX -gp -tp -PT -vt -jn -Wg -mO -mO -mO -oI -mO -mO -Mr -qr -ER -qr -qr -qr -qr -kf -Sb -uw -Sb -hX -OF -OF -lV -OF -il -Qt -on -SG -rT -rT -rT -Ds -kL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(91,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -iQ -Bu -eA -iQ -iQ -Bu -Bu -Bu -iQ -iQ -eA -iQ -Bu -Bu -iQ -iQ -iQ -Bu -Bu -iQ -Bu -Bu -iQ -iQ -iQ -iQ -iQ -Ts -iL -YA -Ts -YB -YB -YB -YB -XT -XT -YB -YB -YB -YB -YB -xc -Fg -CU -El -Kz -PQ -LB -ZX -Nv -jT -jT -xc -tK -cm -pe -Yr -Hx -lH -DK -HT -qV -Se -NM -qv -qr -vz -Qv -FF -rB -sw -OF -sm -bz -OF -Ql -zq -NC -NC -TD -Ja -rT -qi -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(92,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -jx -Wb -Jh -Jh -Jh -Jh -Jh -Wb -jx -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -ZG -Jh -sM -Ea -CU -CU -CU -GR -Wb -Jh -NL -tK -zT -cm -Yr -AK -tS -iG -HT -It -oP -QA -Xj -fZ -ZP -RV -zy -JE -Lp -OF -cN -Yq -OF -Ij -sl -Jg -Jg -AT -iK -rT -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(93,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -bD -yZ -NL -NL -Jh -Jh -Jh -Jh -NL -jx -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -hz -Wb -xc -NA -xc -Jh -Wb -Wb -Jh -Jh -Jh -tK -el -el -tX -Os -dd -dd -WT -gE -qr -qr -qr -qr -bj -yj -za -yj -fN -OF -OF -Sw -OF -qX -eK -li -tC -vd -UV -Ra -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(94,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -lZ -dk -dk -dk -dk -dk -dk -hk -gi -Di -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Ds -kL -NL -NL -Cf -NL -NL -NL -NL -Jh -Jh -Wb -tK -tK -gS -wD -eh -DT -gU -lu -nM -qr -Vf -Vf -Xo -Vf -Vf -EP -Vf -Vf -Xo -pu -UE -OF -ow -ow -ow -Mh -vd -lw -Ra -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(95,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -Wn -NL -jx -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Ds -kL -yH -yH -yH -NL -yH -yH -yH -yH -yH -Wb -Wb -Wb -tK -tK -Li -By -oR -oR -gV -IP -qr -Vf -Vf -ib -UF -lx -sQ -iR -UF -Vx -Vf -Gu -OF -MW -Cr -ow -qA -vd -bK -Ra -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(96,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -NL -jx -NL -NL -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Ds -Le -kL -wr -Uh -Uh -Uh -NL -Ig -Ig -Ig -Ig -BE -Wb -Wb -Jh -Jh -tK -sy -lE -px -px -Jb -JX -qr -Rs -Vf -EP -Bs -Vf -Vf -Vf -Bs -EP -Vf -mC -OF -gh -kH -Mz -Jg -pC -ks -rT -ZG -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(97,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -lZ -dk -dk -dk -dk -dk -dk -dk -bw -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -yy -uK -Go -Kh -yH -Cp -Cp -Cp -Cp -NL -Cp -Cp -Cp -Cp -Cp -NL -Jh -Jh -Jh -Jh -KX -MB -px -KI -Jb -Jb -qr -Gu -Vf -gW -Vf -Vf -Vf -Vf -Vf -gW -Vf -Gu -OF -XB -Tx -ow -AS -FN -rT -rT -ZG -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(98,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -ZG -iH -Uh -Uh -Uh -Uh -Uh -NL -MN -MN -MN -MN -sC -Ds -Le -Le -Le -Le -kL -Cl -bT -bT -bT -bT -MB -sY -Vf -EP -Vf -Vf -KM -Vf -Vf -EP -Vf -Ix -ni -Ra -Ra -rT -rT -rT -rT -NL -ZG -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(99,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -ZG -Mx -Mx -Mx -Mx -Mx -Mx -NL -Mx -Mx -Mx -Mx -Mx -ZG -NL -Wb -Wb -Wb -Wb -Wb -NL -NL -NL -tc -RY -Gu -Vf -Rb -Vf -Vf -Vf -Vf -Vf -Rb -Vf -Gu -ni -NL -NL -NL -NL -NL -NL -NL -ZG -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(100,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Pp -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -iU -Le -Le -Le -Le -Le -Uf -Le -cG -Le -SO -NL -NL -NL -NL -NL -NL -NL -NL -NL -Ds -Up -Le -Sj -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -RY -Hf -Vf -Vf -Bs -Vf -Vf -Vf -Bs -Vf -Vf -mC -ni -NL -NL -NL -NL -NL -NL -NL -ZG -NL -NL -Jh -Jh -Pp -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(101,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -CP -Le -Le -Le -NU -Le -Le -Le -Le -Le -kL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -RY -KP -MT -cr -cr -cr -cr -cr -cr -cr -MT -lA -ni -Wb -NL -NL -NL -NL -NL -NL -ZG -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(102,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -RY -ni -ni -Hv -aQ -aQ -mr -aQ -aQ -jO -ni -ni -ni -Wb -Wb -NL -NL -NL -NL -NL -ZG -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(103,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jx -Le -Le -Le -Le -Le -Le -Le -Le -Le -Le -Le -lq -Le -Le -Le -Le -Le -Le -Le -Lg -Le -Le -SO -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(104,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -AF -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -AF -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(105,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(106,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(107,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(108,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(109,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(110,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(111,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(112,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(113,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(114,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(115,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(116,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(117,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -ob -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(118,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(119,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(120,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(121,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(122,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(123,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(124,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(125,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(126,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(127,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(128,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(129,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(130,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(131,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(132,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(133,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(134,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(135,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(136,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(137,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(138,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(139,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(140,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -======= -"aa" = (/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) -"ab" = (/obj/structure/stairs/spawner/north,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/aftstarboard) -"ac" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"ad" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"ae" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"af" = (/obj/item/bee_pack,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/weapon/tool/crowbar,/obj/item/bee_smoker,/obj/item/beehive_assembly,/obj/structure/closet/crate/hydroponics{desc = "All you need to start your own honey farm."; name = "beekeeping crate"},/obj/item/beehive_assembly,/obj/item/beehive_assembly,/obj/item/beehive_assembly,/obj/item/beehive_assembly,/obj/item/bee_pack,/obj/item/bee_pack,/obj/item/bee_pack,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/milspec/color/green/half{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) -"ag" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 9},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) -"ah" = (/obj/machinery/atmospherics/omni/atmos_filter{name = "CO2 Filter"; tag_north = 2; tag_south = 1; tag_west = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"ai" = (/obj/machinery/vending/tool,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"aj" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "Hydroponics/Kitchen Access"; req_one_access = list(35,28)},/turf/simulated/floor/tiled/steel_ridged,/area/hydroponics) -"ak" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"al" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/green,/obj/machinery/meter,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"am" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"an" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) -"ao" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"ap" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"aq" = (/obj/effect/landmark/start/atmostech,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"ar" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"as" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"at" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "16-0"},/obj/structure/disposalpipe/up{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"au" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"av" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/mob/living/simple_mob/animal/goat{name = "Ted"},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) -"aw" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/structure/symbol/sa{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/storage/primary) -"ax" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"ay" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) -"az" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"aA" = (/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/fore) -"aB" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"aC" = (/obj/machinery/computer/guestpass{pixel_y = 24},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"aD" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#e6ab22"; fill_color = "#877242"; name = "Combustion Workshop"; req_access = list(24); stripe_color = "#2ebfbd"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/combustionworkshop) -"aE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"aF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"aG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) -"aH" = (/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/structure/closet/hydrant{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"aI" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"aJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/mob/living/simple_mob/animal/passive/cow,/turf/simulated/floor/grass,/area/hydroponics) -"aK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"aL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"aM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"aN" = (/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/locker) -"aO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"aP" = (/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/obj/structure/closet/hydrant{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"aQ" = (/obj/structure/grille,/turf/simulated/floor/airless,/area/engineering/engine_room) -"aR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/trolley{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"aS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/obj/item/weapon/stool/padded{dir = 4},/obj/effect/landmark/start/botanist,/turf/simulated/floor/tiled,/area/hydroponics) -"aT" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "botanylockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"aU" = (/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/aftport) -"aV" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) -"aW" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"aX" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/white{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"aY" = (/obj/machinery/light,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"aZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"ba" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"bb" = (/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) -"bc" = (/obj/machinery/seed_extractor,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) -"bd" = (/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) -"be" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"bf" = (/turf/simulated/open,/area/stellardelight/deck2/triage) -"bg" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port) -"bh" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/hatch/engineering{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) -"bi" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"bj" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "\improper HIGH VOLTAGE"; pixel_y = 32},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engine_room) -"bk" = (/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"bl" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/noticeboard{pixel_x = -32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"bm" = (/obj/structure/sign/directions/science{pixel_x = 32},/obj/structure/sign/directions/dorms{pixel_x = 32; pixel_y = 6},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; name = "\improper Shuttle Bay"; pixel_x = 32; pixel_y = -6},/obj/structure/sign/directions/security{pixel_x = 32; pixel_y = 12},/obj/structure/sign/directions/stairs_down{pixel_x = 32; pixel_y = 18},/obj/structure/railing/grey{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/aftport) -"bn" = (/obj/structure/railing/grey{dir = 8},/obj/structure/cable/white{icon_state = "32-1"},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/triage) -"bo" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 9},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"bp" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"bq" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) -"br" = (/obj/structure/sign/directions/science{pixel_x = -32},/obj/structure/sign/directions/dorms{pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; name = "\improper Shuttle Bay"; pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/security{pixel_x = -32; pixel_y = 12},/obj/structure/sign/directions/stairs_down{pixel_x = -32; pixel_y = 18},/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/aftstarboard) -"bs" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/button/remote/blast_door{dir = 4; id = "botanylockdown"; name = "Window Lockdown"; pixel_x = -25},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) -"bu" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/masks,/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/white{icon_state = "0-4"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"bv" = (/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/aftstarboard) -"bw" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"bx" = (/obj/structure/sign/double/barsign,/turf/simulated/wall/bay/steel,/area/crew_quarters/bar) -"by" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"bz" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/camera/network/engine{dir = 1},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/engineering/engine_room) -"bA" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"bB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"bC" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape) -"bD" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"bE" = (/obj/machinery/door/blast/angled,/turf/simulated/floor,/area/quartermaster/storage) -"bF" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage) -"bG" = (/obj/structure/cable/yellow{icon_state = "32-8"},/obj/structure/sign/department/miner_dock{pixel_y = 32},/turf/simulated/floor/tiled/monotile,/area/quartermaster/storage) -"bH" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"bI" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape) -"bJ" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"bK" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/sleeper{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/sleeper_console{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/body_scanner{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/scanner_console,/obj/item/weapon/circuitboard/grinder{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/bioprinter{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/chem_master{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"bL" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/central) -"bM" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/mob/living/simple_mob/animal/passive/opossum/poppy,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) -"bN" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"bO" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/mob/living/simple_mob/otie/red/chubby/cocoa,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"bP" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/alarm/angled,/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"bQ" = (/obj/structure/closet/secure_closet/quartermaster,/obj/item/weapon/storage/backpack/dufflebag,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/wood,/area/quartermaster/qm) -"bR" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "maintenance access"; req_one_access = list(24); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/monitoring) -"bS" = (/obj/machinery/biogenerator,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) -"bT" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage) -"bU" = (/obj/structure/filingcabinet,/obj/machinery/light,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/wood,/area/quartermaster/qm) -"bV" = (/obj/structure/table/woodentable,/obj/item/weapon/book/manual/bar_guide,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"bW" = (/obj/effect/floor_decal/milspec/cargo,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"bX" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"bY" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftport) -"bZ" = (/obj/machinery/computer/atmoscontrol,/obj/machinery/light/floortube{dir = 1; pixel_y = 6},/obj/machinery/requests_console/preset/engineering{pixel_y = 30},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"ca" = (/obj/structure/medical_stand,/turf/simulated/floor/tiled/white,/area/medical/surgery) -"cb" = (/obj/structure/table/fancyblack,/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) -"cc" = (/obj/machinery/power/smes/buildable{RCon_tag = "Engine - Core"; charge = 2e+006; input_attempt = 1; input_level = 200000; name = "Engine"; output_level = 250000},/obj/structure/cable/cyan{icon_state = "0-8"},/turf/simulated/floor/plating,/area/engineering/storage) -"cd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/engineering/storage) -"ce" = (/obj/machinery/vending/wardrobe/cargodrobe,/obj/machinery/status_display/supply_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"cf" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"cg" = (/obj/structure/bed/chair/comfy/blue,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/requests_console/preset/bridge{pixel_y = 30},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) -"ch" = (/turf/simulated/wall/bay/r_wall/green,/area/crew_quarters/kitchen) -"ci" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"cj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"ck" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; name = "Chemistry Cleaner"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"cl" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/monitoring) -"cm" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/engineering/storage) -"cn" = (/obj/structure/sign/painting/public{pixel_x = -30},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"co" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals_central5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"cp" = (/obj/machinery/light/small{dir = 1},/obj/machinery/power/thermoregulator,/turf/simulated/floor/plating,/area/engineering/storage) -"cq" = (/obj/machinery/air_sensor{frequency = 1438; id_tag = "burn_chamber"; output = 63},/obj/machinery/camera/network/engine,/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop) -"cr" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/airless,/area/engineering/engine_room) -"cs" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"ct" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"cu" = (/obj/structure/closet/secure_closet/freezer/meat,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) -"cv" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage) -"cw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"cx" = (/obj/machinery/atmospherics/pipe/tank/nitrous_oxide,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"cy" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "Void"; sortType = "Void"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"cz" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/sign/department/cargo{pixel_x = 32},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"cA" = (/obj/structure/sign/poster{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"cB" = (/obj/structure/closet/crate/bin,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"cC" = (/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"cD" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"cE" = (/obj/machinery/atmospherics/pipe/tank/oxygen,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"cF" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"cG" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "2-8"},/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"cH" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; dir = 8; pixel_x = 28},/turf/simulated/floor/wood,/area/quartermaster/qm) -"cI" = (/obj/structure/sign/painting/public{pixel_y = 30},/obj/structure/sign/painting/public{pixel_y = -30},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/storage/art) -"cJ" = (/obj/structure/bed/chair/comfy/blue,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) -"cK" = (/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"cL" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) -"cM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"cN" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "engine_airlock"; pixel_y = 24; req_one_access = list(10,11); tag_airpump = "engine_airpump"; tag_chamber_sensor = "engine_sensor"; tag_exterior_door = "engine_exterior"; tag_interior_door = "engine_interior"},/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "engine_airpump"},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/engineering/engine_room) -"cO" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"cP" = (/obj/machinery/alarm/angled{dir = 8},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"cQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; req_access = list(25); stripe_color = "#454545"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/barbackroom) -"cR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"cS" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"cT" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"cU" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/conveyor{dir = 1; id = "cargounload"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"cV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/landmark{name = "morphspawn"},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) -"cW" = (/obj/structure/table/standard,/obj/machinery/microwave,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/button/remote/blast_door{id = "kitchenlockdown"; name = "Window Lockdown"; pixel_x = 2; pixel_y = 26},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"cX" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "qmwindows"; name = "Privacy Shutters"},/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/qm) -"cY" = (/obj/machinery/light,/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"cZ" = (/obj/item/device/flashlight/lamp/green{pixel_x = 7; pixel_y = 16},/obj/item/weapon/folder/blue_captain{pixel_x = -6; pixel_y = 7},/obj/structure/table/darkglass,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/requests_console/preset/captain{pixel_x = -30},/obj/item/weapon/melee/chainofcommand,/obj/item/weapon/folder/blue_captain{pixel_x = -6},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) -"da" = (/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"db" = (/obj/structure/table/reinforced,/obj/item/weapon/paper{info = "For those who didn't know yet, the big blue box in here is a 'grid checker' which will shut off the power if a dangerous power spike erupts into the powernet, shutting everything down protects everything from electrical damage, however the outages can be disruptive to ship operations, so it is designed to restore power after a somewhat significant delay, up to fifteen minutes or so. The grid checker can be manually hacked in order to end the outage sooner. To do that, you must cut three specific wires which do not cause a red light to shine, then pulse a fourth wire. Electrical protection is highly recommended when doing maintenance on the grid checker."; name = "grid checker info"},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/engineering/storage) -"dc" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"dd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) -"de" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"df" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/machinery/power/grid_checker,/turf/simulated/floor/plating,/area/engineering/storage) -"dg" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"dh" = (/obj/structure/table/woodentable,/obj/machinery/computer/med_data/laptop{dir = 8},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"di" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/sign/poster{dir = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) -"dj" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"dk" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"dl" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/engineering/storage) -"dm" = (/obj/item/device/radio/intercom{dir = 1; pixel_x = -32; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"dn" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/disposal/wall,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"do" = (/turf/simulated/wall/bay/brown,/area/quartermaster/storage) -"dp" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"dq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"dr" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"ds" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"dt" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 1},/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"du" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/wood,/area/quartermaster/qm) -"dv" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/obj/machinery/light{dir = 1},/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) -"dw" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"dx" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"dy" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"dz" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"dA" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/workshop) -"dB" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"dC" = (/obj/structure/railing/grey,/obj/structure/railing/grey{dir = 4},/turf/simulated/open,/area/maintenance/stellardelight/deck2/portaft) -"dD" = (/obj/structure/table/standard,/obj/item/stack/nanopaste,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"dE" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/flora/pottedplant/minitree,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"dF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/grass,/area/hydroponics) -"dG" = (/obj/effect/floor_decal/emblem/stellardelight{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/structure/closet/walllocker_double/emergency_engi/north,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"dH" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/obj/machinery/camera/network/engine{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"dI" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"dJ" = (/obj/machinery/status_display/supply_display{pixel_x = -32},/turf/simulated/floor/wood,/area/quartermaster/qm) -"dK" = (/obj/machinery/computer/transhuman/designer{dir = 8},/obj/structure/sign/painting/library_secure{pixel_y = 30},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"dL" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/aftport) -"dM" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"dN" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"dO" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"dP" = (/turf/simulated/floor/grass,/area/hydroponics) -"dQ" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"dR" = (/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"dS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"dT" = (/obj/machinery/computer/atmos_alert{dir = 1},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"dU" = (/obj/structure/bed/chair/backed_red{dir = 4},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"dV" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/o2production) -"dW" = (/obj/structure/closet/secure_closet/engineering_electrical/double{anchored = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"dX" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"dY" = (/obj/item/weapon/stool/padded{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"dZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/sign/painting/library_secure{pixel_y = 30},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) -"ea" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) -"eb" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "d2_portmaint_airpump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "d2_portmaint_airlock"; pixel_y = 24; req_one_access = list(13); tag_airpump = "d2_portmaint_airpump"; tag_chamber_sensor = "d2_portmaint_sensor"; tag_exterior_door = "d2_portmaint_exterior"; tag_interior_door = "d2_portmaint_interior"},/obj/machinery/airlock_sensor{dir = 1; id_tag = "d2_portmaint_sensor"; pixel_y = -24; req_access = list(13)},/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"ec" = (/obj/effect/floor_decal/milspec/color/blue/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"ed" = (/turf/simulated/floor/wood,/area/quartermaster/qm) -"ee" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"ef" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer W"; name = "Medbay Doors Control"; pixel_x = -6; pixel_y = 32},/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"eg" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/fuelstorage) -"eh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) -"ei" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"ej" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled,/area/hydroponics) -"ek" = (/obj/structure/sign/directions/recreation{dir = 4; pixel_x = 32},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"el" = (/obj/machinery/shieldwallgen,/turf/simulated/floor/plating,/area/engineering/storage) -"em" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"en" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/aftstarboard) -"eo" = (/obj/structure/closet/secure_closet/engineering_welding/double,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"ep" = (/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"eq" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage) -"er" = (/obj/structure/bed/chair/comfy/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) -"es" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "Sorting Office"; sortType = "Sorting Office"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"et" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"eu" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"ev" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/item/clothing/shoes/black,/obj/item/device/communicator,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) -"ew" = (/obj/structure/table/steel_reinforced,/obj/machinery/button/remote/blast_door{id = "bridgelockdown"; name = "Bridge Lockdown"; pixel_y = 2},/obj/effect/floor_decal/milspec/color/blue/corner,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"ex" = (/obj/structure/closet/hydrant{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"ey" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "atmoswindowlockdown"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/atmos/monitoring) -"ez" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"eA" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardfore) -"eB" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"eC" = (/turf/simulated/wall/bay/steel,/area/storage/primary) -"eD" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/sign/directions/stairs_up{pixel_x = 32},/obj/structure/sign/directions/stairs_down{dir = 1; pixel_x = 32; pixel_y = 6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"eE" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"eF" = (/obj/structure/table/reinforced,/obj/machinery/alarm/angled,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"eG" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"eH" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"eI" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"eJ" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/full,/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"eK" = (/obj/structure/table/steel,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"eL" = (/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"eM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"eN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"eO" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"eP" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"eQ" = (/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/requests_console/preset/engineering{pixel_x = 30},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) -"eR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"eS" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 1},/obj/machinery/computer/med_data/laptop,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"eT" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"eU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"eV" = (/obj/structure/sign/directions/recreation{dir = 8; pixel_x = -32},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"eW" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"eX" = (/obj/machinery/alarm/angled{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"eY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"eZ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"fa" = (/obj/machinery/door/window/westright{dir = 1; req_one_access = list(35,28)},/obj/structure/disposalpipe/segment,/turf/simulated/floor/grass,/area/hydroponics) -"fb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/medical/psych) -"fc" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{frequency = 1380; id_tag = "starboard_escape_pod"; pixel_y = 24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape) -"fd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"fe" = (/obj/structure/shuttle/engine/propulsion{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/starboardescape) -"ff" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"fg" = (/obj/machinery/camera/network/medbay{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"fh" = (/obj/structure/table/reinforced,/obj/machinery/reagentgrinder,/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"fi" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"fj" = (/obj/structure/closet/secure_closet/engineering_electrical,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"fk" = (/obj/machinery/vending/engivend,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"fl" = (/turf/simulated/wall/bay/steel,/area/crew_quarters/locker) -"fm" = (/obj/machinery/vending/wardrobe/engidrobe,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"fn" = (/obj/structure/sign/directions/evac{dir = 6; pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"fo" = (/obj/machinery/recharger{pixel_y = 4},/obj/item/device/perfect_tele{name = "manager's translocator"},/obj/structure/table/darkglass,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light{dir = 4},/obj/effect/landmark/vermin,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"fp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"fq" = (/obj/structure/closet/secure_closet/engineering_welding,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"fr" = (/obj/structure/sign/painting/public{pixel_x = -30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"fs" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"ft" = (/obj/machinery/vitals_monitor,/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"fu" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"fv" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"fw" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"fx" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"fy" = (/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/structure/closet/crate/medical{desc = "A crate full of emergency supplies to help with response and rescue operations. A logo of NanoTrasen with a checkmark is stamped on the crate."; name = "NanoTrasen Emergency Supply Crate"},/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/firstaid/adv,/obj/item/weapon/storage/firstaid/regular,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"fz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"fA" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"fB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"fC" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/closet/hydrant{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"fD" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/closet/hydrant{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"fE" = (/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/storage/dicecup,/obj/item/weapon/deck/cah,/obj/item/weapon/deck/cah/black,/obj/item/weapon/deck/cards,/obj/item/weapon/deck/cards/casino,/obj/structure/closet/walllocker_double/misc_civ/north,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"fF" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"fG" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring) -"fH" = (/obj/item/canvas,/obj/item/canvas,/obj/item/canvas,/obj/item/canvas,/obj/item/canvas,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/structure/table/standard,/obj/machinery/recharger,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 4},/obj/item/paint_palette,/obj/item/paint_palette,/obj/item/paint_brush,/obj/item/paint_brush,/obj/effect/landmark/vines,/obj/structure/closet/walllocker_double/misc_civ/north,/turf/simulated/floor/tiled,/area/storage/art) -"fI" = (/obj/effect/floor_decal/milspec/color/white/corner{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"fJ" = (/turf/simulated/open,/area/stellardelight/deck2/aftstarboard) -"fK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"fL" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vermin,/obj/machinery/station_slot_machine,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"fM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/table/steel_reinforced,/obj/machinery/photocopier/faxmachine{department = "Bridge"},/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/item/weapon/paper/dockingcodes/sd,/obj/item/device/radio,/obj/item/device/radio,/obj/structure/closet/walllocker_double/command/east,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"fN" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "\improper HIGH VOLTAGE"; pixel_y = -32},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engine_room) -"fO" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"fP" = (/obj/structure/closet/crate/bin{anchored = 1},/obj/structure/sign/painting/library_secure{pixel_y = 30},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"fQ" = (/obj/structure/lattice,/obj/structure/cable/orange{icon_state = "32-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/atmos) -"fR" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"fS" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/book/manual/sd_guide,/obj/structure/closet/walllocker_double/command/north,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"fT" = (/obj/structure/table/reinforced,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/wood,/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/item/stack/material/plasteel{amount = 30},/obj/structure/closet/walllocker_double/engineering/east{name = "material sheets"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) -"fU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"fV" = (/turf/simulated/floor,/area/bridge) -"fW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"fX" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape) -"fY" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/conveyor_switch/oneway{id = "cargoload"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"fZ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/storage) -"ga" = (/obj/machinery/alarm/angled{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"gb" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/smartfridge/sheets/persistent_lossy,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"gc" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/item/weapon/book/manual/engineering_particle_accelerator,/obj/item/weapon/book/manual/tesla_engine,/obj/structure/closet/walllocker_double/engineering/west,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) -"gd" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"ge" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"gf" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"gg" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer W"; name = "Medbay Doors Control"; pixel_x = -6; pixel_y = 32},/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"gh" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/robotics{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/mecha_control,/obj/item/weapon/circuitboard/aifixer{pixel_x = 3; pixel_y = -3},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"gi" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"gj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"gk" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"gl" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"gm" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{dir = 4; frequency = 1380; id_tag = "port_escape_berth"; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port) -"gn" = (/obj/structure/displaycase,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"go" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Air to Ports"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) -"gp" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"gq" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/status_display/supply_display{pixel_x = 32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"gr" = (/obj/structure/table/standard,/obj/machinery/microwave,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"gs" = (/obj/machinery/atmospherics/unary/vent_pump/engine{external_pressure_bound = 100; external_pressure_bound_default = 0; frequency = 1438; icon_state = "map_vent_in"; id_tag = "cooling_out"; initialize_directions = 4; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop) -"gt" = (/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/tape_roll,/obj/item/weapon/storage/belt/utility,/obj/item/device/multitool,/obj/fiftyspawner/steel,/obj/structure/closet/walllocker_double/cargo/east,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"gu" = (/obj/machinery/firealarm/angled,/obj/item/device/defib_kit/loaded,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"gv" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "32-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/starboardfore) -"gw" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"gx" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/window/westright{req_one_access = list(35,28)},/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics) -"gy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"gz" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/closet/walllocker_double/emergency_engi/east,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"gA" = (/obj/structure/railing/grey{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/fore) -"gB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"gC" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/command{dir = 10},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"gD" = (/obj/structure/table/reinforced,/obj/random/powercell,/obj/random/tech_supply,/obj/item/device/t_scanner,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) -"gE" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) -"gF" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"gG" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/disposalpipe/trunk{dir = 2},/obj/machinery/disposal/wall{dir = 4; pixel_x = -24; plane = -34},/turf/simulated/floor/tiled,/area/hydroponics) -"gH" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"gI" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/item/weapon/circuitboard/tesla_coil,/obj/item/weapon/circuitboard/tesla_coil,/obj/structure/closet/walllocker_double/engineering/north,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"gJ" = (/obj/structure/medical_stand,/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"gK" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"gL" = (/obj/effect/floor_decal/milspec/color/orange/half{dir = 6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"gM" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"gN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"gO" = (/obj/structure/table/standard,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"gP" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"gQ" = (/obj/machinery/gibber,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) -"gR" = (/obj/structure/closet/firecloset,/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) -"gS" = (/obj/structure/dispenser,/turf/simulated/floor/plating,/area/engineering/storage) -"gT" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"gU" = (/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) -"gV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/plating,/area/engineering/storage) -"gW" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) -"gX" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"gY" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"gZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"ha" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"hb" = (/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"hc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/bed/chair/bay/comfy/blue{dir = 1},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"hd" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"he" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"hf" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/bay/r_wall/green,/area/hydroponics) -"hg" = (/obj/structure/shuttle/window,/obj/structure/grille,/turf/simulated/floor,/area/stellardelight/deck2/portescape) -"hh" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"hi" = (/obj/structure/closet/walllocker_double/medical/north,/obj/item/weapon/storage/box/body_record_disk,/obj/item/device/retail_scanner/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"hj" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"hk" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"hl" = (/turf/simulated/wall/bay/green,/area/crew_quarters/kitchen) -"hm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"hn" = (/turf/simulated/wall/bay/white,/area/medical/cryo) -"ho" = (/obj/machinery/optable,/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"hp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"hq" = (/obj/structure/sign/department/ass,/turf/simulated/wall/bay/brown,/area/storage/primary) -"hr" = (/obj/structure/sign/directions/evac{pixel_x = 32; pixel_y = -32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"hs" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Engineering EVA Storage"; req_access = null; req_one_access = list(11,24); stripe_color = "#913013"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_ridged,/area/engineering/workshop) -"ht" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"hu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"hv" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/closet/walllocker_double/emergency_engi/east,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"hw" = (/obj/structure/table/standard,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/white,/area/medical/surgery) -"hx" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"hy" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"hz" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/item/stack/cable_coil/yellow,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"hA" = (/obj/structure/closet/walllocker_double/emergency_engi/south,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"hB" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/closet/walllocker_double/emergency_engi/east,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"hC" = (/obj/structure/filingcabinet/chestdrawer{name = "Medical Forms"},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"hD" = (/obj/structure/bed/chair/sofa/corp/left{dir = 4},/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) -"hE" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/closet/walllocker_double/emergency_engi/west,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"hF" = (/obj/machinery/vending/wallmed1{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"hH" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"hI" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 6},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"hJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"hK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"hL" = (/obj/structure/table/reinforced,/obj/machinery/light,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/white,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"hM" = (/obj/structure/table/standard,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"hN" = (/obj/machinery/atmospherics/omni/atmos_filter{name = "N2/O2 Filter"; tag_east = 4; tag_north = 2; tag_south = 3; tag_west = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"hO" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"hP" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/disposal/wall/cleaner{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) -"hQ" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"hR" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"hS" = (/obj/effect/floor_decal/milspec/cargo,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"hT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/tagger{dir = 2; name = "package tagger - Resleeving"; sort_tag = "Resleeving"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"hU" = (/obj/structure/disposalpipe/tagger/partial{dir = 8; name = "partial tagger - Sorting Office"; sort_tag = "Sorting Office"},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"hV" = (/obj/effect/floor_decal/industrial/loading{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"hW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"hX" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) -"hY" = (/obj/item/weapon/stool/padded{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark/start/bartender,/turf/simulated/floor/lino,/area/crew_quarters/bar) -"hZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"ib" = (/obj/machinery/power/grounding_rod,/obj/structure/cable/yellow{icon_state = "2-4"},/turf/simulated/floor/airless,/area/engineering/engine_room) -"ic" = (/obj/structure/bed/chair/backed_red{dir = 8},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"ie" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) -"if" = (/obj/machinery/vending/hydronutrients,/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics) -"ig" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"ih" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"ii" = (/obj/structure/closet/crate/bin{anchored = 1},/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled,/area/hydroponics) -"ij" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = 32; pixel_y = -32},/obj/structure/table/bench/steel,/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"ik" = (/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/bodyscanner{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"il" = (/obj/machinery/vending/assist,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"im" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"in" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"io" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 8},/obj/effect/landmark/start/intern,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) -"ip" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{id = "psychshutter"; name = "Privacy Shutter"},/obj/structure/low_wall/bay/reinforced/white,/turf/simulated/floor,/area/medical/psych) -"ir" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/bar) -"is" = (/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) -"it" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) -"iu" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"iv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"iw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"ix" = (/obj/structure/bed/chair/sofa/corp{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) -"iy" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"iz" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) -"iA" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage) -"iB" = (/obj/structure/filingcabinet/filingcabinet,/obj/machinery/requests_console/preset/cargo{pixel_y = 30},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"iC" = (/obj/structure/sink/kitchen{pixel_y = 20},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"iD" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"iE" = (/obj/structure/railing/grey{dir = 8},/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32},/obj/structure/sign/directions/stairs_up{dir = 1; pixel_x = -32; pixel_y = 6},/turf/simulated/floor,/area/stellardelight/deck2/aftstarboard) -"iF" = (/obj/machinery/door/window/brigdoor/northleft{dir = 4; name = "Kitchen"; req_access = list(28)},/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"iG" = (/obj/structure/cable,/obj/machinery/power/smes/buildable{RCon_tag = "Power - Main"; charge = 2e+007; cur_coils = 4; input_attempt = 1; input_level = 500000; name = "Main"; output_level = 1e+006},/turf/simulated/floor/plating,/area/engineering/storage) -"iH" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"iI" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) -"iJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"iK" = (/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/manipulator,/obj/structure/table/rack/steel,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/circuitboard/autolathe,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"iL" = (/obj/structure/grille,/obj/structure/shuttle/window,/obj/effect/shuttle_landmark{base_area = /area/stellardelight/deck2/exterior; base_turf = /turf/simulated/floor/airless; docking_controller = "starboard_escape_berth"; landmark_tag = "starboard_ship_berth"; name = "Stellar Delight Escape Pod Starboard"},/turf/simulated/floor,/area/stellardelight/deck2/starboardescape) -"iN" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "Hydroponics/Kitchen Access"; req_one_access = list(35,28)},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/kitchen) -"iO" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 4},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"iP" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/requests_console/preset/medical{pixel_y = -30},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"iQ" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardfore) -"iR" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow,/turf/simulated/floor/airless,/area/engineering/engine_room) -"iS" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"iT" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"iU" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"iV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"iW" = (/obj/machinery/button/remote/airlock{desc = "A remote control switch for the medbay foyer."; dir = 8; id = "MedbayFoyer W"; name = "Medbay Doors Control"; pixel_x = 25},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"iX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#9c9c9c"; name = "Bar"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/bar) -"iY" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"iZ" = (/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"ja" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) -"jc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"jd" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"jf" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/injector_maker{pixel_y = 21},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"jg" = (/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"ji" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"jj" = (/obj/structure/easel,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/storage/art) -"jk" = (/obj/structure/cable/blue{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"jm" = (/obj/structure/table/reinforced,/obj/item/device/gps/engineering{pixel_x = 3; pixel_y = 6},/obj/item/device/gps/engineering{pixel_y = 3},/obj/item/device/gps/engineering{pixel_x = -3},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"jn" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"jo" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/green,/turf/simulated/floor,/area/hydroponics) -"jp" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/light,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"jq" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/white{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"jr" = (/obj/structure/closet/emergsuit_wall{pixel_y = 29},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"js" = (/obj/structure/closet/secure_closet/atmos_personal,/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"jt" = (/obj/machinery/vending/nifsoft_shop,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"jv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"jw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "glass airlock"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) -"jx" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"jy" = (/obj/structure/sign/directions/cargo{pixel_x = -32; pixel_y = -35},/obj/structure/sign/directions/medical{pixel_x = -32; pixel_y = -29},/obj/effect/floor_decal/milspec/color/blue/corner{dir = 8},/obj/structure/sign/directions/engineering{pixel_x = -32; pixel_y = -41},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"jz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"jA" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northleft{name = "Atmospherics Hardsuits"; req_access = list(24)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/head/helmet/space/void/atmos,/obj/item/clothing/head/helmet/space/void/atmos,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"jB" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) -"jC" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"jD" = (/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"jE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/light,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"jF" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"jG" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_y = 5},/obj/item/weapon/pen,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"jI" = (/obj/structure/table/woodentable,/obj/structure/plushie/ian{dir = 8; pixel_y = 6},/turf/simulated/floor/wood,/area/medical/psych) -"jJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"jK" = (/obj/structure/table/glass,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"jL" = (/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) -"jM" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/hydroponics) -"jN" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"jO" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "\improper HIGH VOLTAGE"; pixel_y = -32},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/engine_room) -"jP" = (/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"jQ" = (/turf/simulated/floor/reinforced,/area/quartermaster/storage) -"jS" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"jT" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"jU" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "bridgelockdown"},/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/bridge) -"jV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"jW" = (/obj/machinery/light{dir = 8},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"jX" = (/obj/structure/flora/pottedplant/minitree,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/wood,/area/medical/psych) -"jY" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) -"jZ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"ka" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Particle Accelerator"; req_access = list(10); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_room) -"kb" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/triage) -"kc" = (/obj/machinery/computer/power_monitor,/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"kd" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"ke" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 24},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/wood,/area/medical/psych) -"kf" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) -"kg" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) -"kh" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"ki" = (/obj/structure/extinguisher_cabinet{pixel_x = -32; pixel_y = 32},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"kj" = (/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"kk" = (/obj/machinery/vending/blood,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"kl" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) -"km" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"kn" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/wall{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"ko" = (/obj/item/weapon/storage/secure/briefcase/ml3m_pack_med,/obj/structure/table/reinforced,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"kp" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 4},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"kq" = (/obj/structure/closet/secure_closet/cargotech,/obj/item/weapon/stamp/cargo,/obj/item/weapon/storage/backpack/dufflebag,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"kr" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"ks" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/mech_recharger{pixel_x = -4; pixel_y = 4},/obj/item/weapon/circuitboard/cell_charger{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/recharger{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/recharge_station{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/arcade/battle,/obj/item/weapon/circuitboard/arcade/clawmachine{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/arcade/orion_trail{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/jukebox{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"kt" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/aftport) -"ku" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_y = -32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"kv" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"kx" = (/obj/structure/disposalpipe/sortjunction/wildcard/flipped{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"ky" = (/obj/structure/bed/chair/comfy/brown,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) -"kz" = (/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/atmospherics/binary/pump{dir = 1; name = "cold loop pump"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"kA" = (/obj/structure/table/reinforced,/obj/random/toolbox,/obj/item/device/geiger,/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) -"kB" = (/obj/structure/table/standard,/obj/item/clothing/under/pizzaguy,/obj/item/clothing/under/pizzaguy,/obj/item/clothing/under/pizzaguy,/obj/item/clothing/head/pizzaguy,/obj/item/clothing/head/pizzaguy,/obj/item/clothing/head/pizzaguy,/obj/machinery/status_display/supply_display{pixel_x = 32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"kC" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"kD" = (/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#323d80"; name = "Bridge"; req_access = list(19); req_one_access = list(19); stripe_color = "#f7d35c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/briefingroom) -"kE" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area) -"kF" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"kG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) -"kH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"kI" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"kJ" = (/obj/machinery/computer/card{dir = 4},/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"kK" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "Bar"; sortType = "Bar"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"kL" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"kM" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"kN" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering) -"kO" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/structure/cable/white{icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"kP" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"kQ" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"kR" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/green,/obj/machinery/door/blast/angled/open{dir = 4; id = "botanylockdown"},/turf/simulated/floor,/area/hydroponics) -"kS" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"kT" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#e6ab22"; fill_color = "#877242"; name = "Tech Storage"; req_access = list(23); stripe_color = "#913013"},/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_eva) -"kV" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/sign/directions/bar{dir = 1; pixel_x = 32},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"kW" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"kX" = (/obj/machinery/vending/dinnerware,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"kY" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/simulated/floor/wood,/area/quartermaster/qm) -"kZ" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = 28},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"la" = (/obj/effect/floor_decal/industrial/danger{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"lc" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/medical/psych) -"ld" = (/obj/structure/table/glass,/obj/machinery/photocopier/faxmachine{department = "Medical"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"le" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#a6753d"; fill_color = "#75736f"; name = "Quartermaster"; req_access = list(41); stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/quartermaster/qm) -"lf" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) -"lg" = (/obj/structure/closet/secure_closet/captains,/obj/item/clothing/glasses/omnihud/all,/obj/item/weapon/disk/nuclear,/obj/item/weapon/paper/dockingcodes/sd,/obj/item/device/retail_scanner/command,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"lh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "maintenance access"; req_one_access = list(24); stripe_color = "#e6ab22"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/storage) -"li" = (/obj/structure/table/steel,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"lj" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"lk" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/machinery/door/window/southright{dir = 1; name = "Engineering Hardsuits"; req_one_access = list(11)},/obj/structure/window/reinforced{dir = 4},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/head/helmet/space/void/engineering,/obj/item/clothing/head/helmet/space/void/engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"ll" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"lm" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"ln" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"lo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"lq" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"; pixel_x = -32},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"lr" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"ls" = (/obj/structure/bed/chair/backed_red{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"lt" = (/obj/effect/floor_decal/industrial/danger{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"lu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) -"lv" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"lw" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/powermonitor{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/stationalert_engineering{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/atmos_alert{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/rcon_console,/obj/item/weapon/circuitboard/atmoscontrol{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/drone_control{pixel_x = 2; pixel_y = -2},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"lx" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/simulated/floor/airless,/area/engineering/engine_room) -"ly" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/meter,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) -"lz" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/landmark/start/chef,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"lA" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/machinery/light/small,/turf/simulated/floor/airless,/area/engineering/engine_room) -"lB" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"lC" = (/obj/machinery/computer/communications{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) -"lD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/camera/network/command{dir = 10},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"lF" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"lG" = (/obj/structure/bed/chair/sofa/corp/right{dir = 8},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) -"lI" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/window/westleft{req_one_access = list(35,28)},/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics) -"lJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; door_color = "#9c9c9c"; name = "Commons"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area) -"lK" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"lL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"lM" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/space,/area/space) -"lN" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) -"lO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"lP" = (/obj/structure/table/glass,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/recharger,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"lQ" = (/obj/structure/sign/directions/chapel{dir = 1; pixel_x = 32},/obj/structure/sign/directions/dorms{dir = 1; pixel_x = 32; pixel_y = -6},/obj/structure/sign/directions/security{dir = 1; pixel_x = 32; pixel_y = 6},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; dir = 1; name = "\improper Shuttle Bay"; pixel_x = 32; pixel_y = -12},/obj/structure/sign/directions/stairs_down{dir = 1; pixel_x = 32; pixel_y = 12},/turf/simulated/open,/area/stellardelight/deck2/fore) -"lR" = (/obj/machinery/vending/wardrobe/virodrobe,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/status_display{pixel_y = 32},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"lS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"lT" = (/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/structure/sign/department/bar{pixel_y = 32; plane = -34},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"lU" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"lV" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "engine_interior"; locked = 1; name = "Engine Airlock"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "engine_airlock"; name = "interior access button"; pixel_y = 32; req_access = list(10,11)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_room) -"lW" = (/obj/machinery/medical_kiosk{pixel_y = 6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"lX" = (/obj/machinery/door/window/southright{dir = 1; name = "Jetpack Storage"; req_one_access = list(11,24)},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"lY" = (/obj/structure/sign/directions/library{dir = 1; pixel_x = -32},/obj/structure/sign/directions/dorms{dir = 1; pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/security{dir = 1; pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions/science{dir = 1; pixel_x = -32; pixel_y = -12},/obj/structure/sign/directions/stairs_down{dir = 1; pixel_x = -32; pixel_y = 12},/turf/simulated/open,/area/stellardelight/deck2/fore) -"lZ" = (/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"ma" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"mb" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/obj/machinery/station_map{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"md" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/loadout_misc,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vines,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) -"me" = (/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"mf" = (/obj/machinery/atmospherics/pipe/tank/air,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"mg" = (/obj/random/vendordrink,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vines,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) -"mh" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"mi" = (/obj/structure/sign/department/bridge{pixel_x = 32},/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"mj" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"mk" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"ml" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 5},/turf/simulated/floor/tiled,/area/hydroponics) -"mm" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"mn" = (/turf/simulated/floor/lino,/area/crew_quarters/bar) -"mo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"mq" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 1},/turf/simulated/floor/airless,/area/stellardelight/deck2/fuelstorage) -"mr" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/engine_room) -"ms" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"mt" = (/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"mu" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#e6ab22"; fill_color = "#877242"; name = "Combustion Workshop"; req_access = list(24); stripe_color = "#2ebfbd"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/monitoring) -"mv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"mw" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"mx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"mz" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) -"mA" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"mB" = (/obj/machinery/atmospherics/pipe/tank/phoron{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"mC" = (/obj/machinery/power/emitter{anchored = 1; dir = 1; icon_state = "emitter1"; state = 1},/obj/structure/cable/cyan{icon_state = "0-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) -"mD" = (/obj/machinery/atmospherics/binary/pump,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"mE" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/quartermaster/qm) -"mF" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) -"mG" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/item/clothing/shoes/black,/obj/machinery/light,/obj/item/device/communicator,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) -"mH" = (/obj/structure/table/steel_reinforced,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/folder/red,/obj/item/weapon/folder/blue,/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/blue{icon_state = "0-2"},/obj/machinery/light{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) -"mI" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos) -"mJ" = (/obj/structure/table/woodentable,/obj/random/paicard,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"mK" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "Operating Theatre 2"; req_access = list(45); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/surgery2) -"mL" = (/obj/structure/flora/pottedplant/small,/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/tiled/dark,/area/crew_quarters/recreation_area) -"mM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"mN" = (/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/machinery/station_map{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"mO" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/engineering_monitoring) -"mP" = (/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/wood,/area/medical/psych) -"mQ" = (/obj/structure/table/standard,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/storage/art) -"mR" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"mS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/landmark{name = "verminstart"},/turf/simulated/floor/grass,/area/hydroponics) -"mT" = (/turf/simulated/wall/bay/steel,/area/storage/art) -"mU" = (/obj/item/weapon/stool/padded{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"mV" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"mW" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"mX" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/red{pixel_x = -1; pixel_y = 3},/obj/item/weapon/pen/blue{pixel_x = -5; pixel_y = -1},/obj/machinery/alarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/storage/art) -"mY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"mZ" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"na" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/camera/network/engineering{dir = 8},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"nb" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"nd" = (/turf/simulated/wall/bay/white,/area/medical/surgery2) -"nf" = (/obj/machinery/firealarm/angled{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"ng" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) -"ni" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_room) -"nj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals10,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"nm" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"no" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"np" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange,/obj/machinery/power/apc/angled{dir = 8},/obj/machinery/power/sensor{name = "Powernet Sensor - Engineering Subgrid"; name_tag = "Engineering Subgrid"},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering) -"nq" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva) -"nr" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10},/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage) -"ns" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Engineering"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"nt" = (/turf/simulated/wall/bay/brown,/area/crew_quarters/recreation_area) -"nu" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#323d80"; fill_color = "#c9892e"; id_tag = "captaindoor"; name = "Captain's Office"; req_access = list(20); stripe_color = "#f7d35c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/captain) -"nv" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"nw" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/milspec/color/orange/half{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"nx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"ny" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/obj/structure/sign/atmos/co2{pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"nz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"nA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"nB" = (/obj/random/vendorfood,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"nC" = (/obj/machinery/appliance/cooker/grill,/obj/machinery/requests_console{department = "Service"; pixel_y = 26},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"nD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"nE" = (/obj/machinery/atmospherics/pipe/tank/carbon_dioxide,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"nF" = (/obj/structure/table/standard,/obj/item/clothing/head/soft,/obj/item/clothing/head/soft,/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/machinery/camera/network/cargo,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"nG" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"nH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/closet/walllocker_double/medical/north,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/obj/random/medical/lite,/obj/random/medical/lite,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"nI" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"nJ" = (/obj/structure/cable/white{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"nK" = (/turf/simulated/wall/bay/r_wall/blue,/area/bridge) -"nL" = (/obj/structure/sign/painting/public{pixel_x = -30},/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"nM" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) -"nN" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"nO" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/engine_eva) -"nP" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"nQ" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_soft/full{dir = 1},/obj/machinery/requests_console{department = "Service"; dir = 1; pixel_y = -26},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/lino,/area/crew_quarters/bar) -"nR" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"nS" = (/obj/effect/floor_decal/milspec/color/green/corner{dir = 1},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"nT" = (/obj/structure/cable/white{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"nU" = (/obj/structure/table/steel_reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled_shutter{dir = 4; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"nV" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"nW" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"nX" = (/obj/machinery/alarm/angled{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"nZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"oa" = (/turf/simulated/wall/bay/brown,/area/maintenance/stellardelight/substation/engineering) -"ob" = (/obj/effect/shuttle_landmark/premade/sd/deck2/starboard,/turf/space,/area/space) -"oc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) -"od" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"oe" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"of" = (/obj/structure/sign/directions/evac{pixel_x = 32},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/structure/sign/directions/medical{pixel_x = 32; pixel_y = -6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"og" = (/obj/machinery/sleeper{dir = 4},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"oh" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"oi" = (/obj/structure/sign/department/bridge{pixel_x = -32},/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"oj" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"ok" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/grass,/area/hydroponics) -"ol" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"om" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"on" = (/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"oo" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"op" = (/obj/machinery/power/generator{anchored = 1; dir = 4},/obj/structure/cable{icon_state = "0-2"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"oq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"os" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/milspec/color/blue,/obj/structure/sign/deck2{pixel_x = 32},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/central) -"ot" = (/obj/machinery/alarm/angled,/obj/machinery/atmospherics/portables_connector/fuel,/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) -"ou" = (/obj/machinery/computer/supplycomp/control{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"ov" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/combustionworkshop) -"ow" = (/turf/simulated/wall/bay/r_wall/orange,/area/storage/tech) -"ox" = (/obj/structure/sign/poster{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"oy" = (/obj/machinery/door/blast/angled{dir = 4; id = "burnchamberlockvent"},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop) -"oz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/grass,/area/hydroponics) -"oA" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"oB" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"oC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"oD" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; req_access = list(28); stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/kitchen) -"oE" = (/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/o2production) -"oF" = (/obj/structure/bed/chair/backed_red{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"oG" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"oH" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"oI" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#e6ab22"; name = "Engineering Hard Storage"; req_access = list(11); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engineering_monitoring) -"oJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/bar) -"oK" = (/obj/structure/table/standard,/obj/item/device/defib_kit/loaded,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"oL" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"oM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; name = "Art Storage"},/turf/simulated/floor/tiled/steel_ridged,/area/storage/art) -"oO" = (/obj/machinery/chem_master/condimaster,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"oP" = (/obj/machinery/firealarm/angled{dir = 4},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/plating,/area/engineering/storage) -"oQ" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"oR" = (/turf/simulated/floor/plating,/area/engineering/storage) -"oS" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 4},/obj/effect/landmark/start/entertainer,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) -"oT" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) -"oU" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) -"oV" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) -"oX" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"oY" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"oZ" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_y = 32},/obj/machinery/firealarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/landmark/start/commandsecretary,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"pa" = (/obj/effect/floor_decal/emblem/stellardelight{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"pb" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"pc" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort1"},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"pd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/grass,/area/hydroponics) -"pe" = (/obj/machinery/shieldgen,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/engineering/storage) -"pf" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#ffffff"; name = "Gas Storage"; req_one_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/cryo) -"pg" = (/obj/structure/closet/secure_closet/medical3,/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/storage/belt/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"ph" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) -"pj" = (/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"pk" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Port Solar Array"; name_tag = "Port Solar Array"},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"pl" = (/obj/structure/table/standard,/obj/machinery/photocopier/faxmachine{department = "Cargo"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"pn" = (/obj/machinery/alarm/angled{dir = 4},/obj/machinery/recharge_station,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"po" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"pp" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"pq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"pr" = (/obj/machinery/light/small,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port) -"pu" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/airless,/area/engineering/engine_room) -"pv" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftport) -"pw" = (/obj/structure/sign/pods,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port) -"px" = (/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/engineering/storage) -"py" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"pz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark/start/chef,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"pA" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"pB" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"pC" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"pD" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"pG" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"pH" = (/obj/structure/sign/directions/evac{pixel_x = -32},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/obj/structure/sign/directions/medical{pixel_x = -32; pixel_y = -6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"pI" = (/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"pJ" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) -"pK" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; locked = 1; name = "maintenance access"; req_one_access = list(19); stripe_color = "#e6ab22"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/monitoring) -"pL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"pM" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"pN" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/milspec/color/green/half{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) -"pO" = (/obj/machinery/atmospherics/binary/algae_farm/filled{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"pP" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/storage/art) -"pQ" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape) -"pR" = (/obj/structure/closet/gmcloset{name = "formal wardrobe"},/obj/item/glass_jar,/obj/item/device/retail_scanner/civilian,/obj/item/device/retail_scanner/civilian,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"pS" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"pT" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 9},/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/monitoring) -"pU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"pV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"pW" = (/obj/machinery/media/jukebox,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"pX" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics) -"pY" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"pZ" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/station_map{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"qa" = (/obj/structure/table/rack,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) -"qb" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"qd" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"qe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"qf" = (/turf/simulated/wall/bay/r_wall/white,/area/medical/surgery2) -"qg" = (/obj/machinery/atmospherics/binary/pump/high_power/on,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"qh" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"qi" = (/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-8"},/obj/structure/cable/orange{icon_state = "0-4"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"qj" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 1},/obj/item/device/flashlight/lamp/green{pixel_y = -6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"qk" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"ql" = (/obj/machinery/atmospherics/pipe/tank/phoron,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"qm" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"qn" = (/obj/structure/filingcabinet/medical{desc = "A large cabinet with hard copy medical records."; name = "Medical Records"},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-4"},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"qo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"qp" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/grass,/area/hydroponics) -"qq" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/atmos/monitoring) -"qr" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/storage) -"qs" = (/obj/structure/table/standard,/obj/item/weapon/storage/fancy/crayons,/obj/item/weapon/storage/fancy/crayons,/obj/item/weapon/storage/fancy/crayons,/obj/item/weapon/storage/fancy/crayons,/obj/item/weapon/storage/fancy/crayons,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/newscaster{pixel_y = 28},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled,/area/storage/art) -"qt" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/freezer,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"qu" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"qv" = (/obj/machinery/power/port_gen/pacman{anchored = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/plating,/area/engineering/storage) -"qw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"qx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"qy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"qz" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) -"qA" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/skills{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/med_data{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/secure_data{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/security,/obj/item/weapon/circuitboard/security/engineering{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/security/mining{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/stationalert_security{pixel_x = 3; pixel_y = -3},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"qC" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"qD" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/recharge_station,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"qF" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring) -"qG" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"qH" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) -"qI" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"qJ" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) -"qL" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light,/turf/simulated/floor,/area/engineering/atmos/monitoring) -"qM" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage) -"qN" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"qO" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"qP" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"qQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/smartfridge/chemistry,/turf/simulated/floor/plating,/area/medical/chemistry) -"qS" = (/obj/item/weapon/stool/padded{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/light,/turf/simulated/floor/lino,/area/crew_quarters/bar) -"qT" = (/obj/structure/lattice,/obj/structure/railing/grey{dir = 4},/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32},/obj/structure/sign/directions/stairs_up{dir = 1; pixel_x = 32; pixel_y = 6},/turf/simulated/floor,/area/stellardelight/deck2/aftport) -"qV" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) -"qW" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/dispenser{phorontanks = 0},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"qX" = (/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/item/device/flash,/obj/item/device/flash,/obj/item/device/integrated_electronics/debugger{pixel_x = -5},/obj/item/device/integrated_electronics/wirer{pixel_x = 5},/obj/item/device/integrated_circuit_printer,/obj/structure/table/steel,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"qY" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"qZ" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/sign/deck2{pixel_x = 32},/obj/structure/sign/directions/medical/morgue{pixel_x = -32},/obj/structure/sign/directions/medical/resleeving{pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/medical/virology{pixel_x = -32; pixel_y = -12},/obj/structure/sign/directions/stairs_down{pixel_x = -32; pixel_y = 6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"ra" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) -"rb" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/o2production) -"rc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"rd" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 8; id = "bar"; layer = 3.3; name = "Bar Shutters"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"re" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"rg" = (/obj/structure/bed/chair/sofa/corp/corner{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) -"rh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"ri" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"rj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/emblem/stellardelight{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"rk" = (/obj/structure/sign/directions/command{dir = 1; pixel_y = 32},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"rl" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"rm" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"rn" = (/obj/machinery/appliance/cooker/fryer,/obj/machinery/camera/network/civilian{dir = 5},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"rp" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"rq" = (/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"rr" = (/obj/structure/closet/walllocker_double/south{color = "#8da4a6"; pixel_x = -5},/obj/structure/table/standard,/obj/machinery/button/remote/blast_door{dir = 1; id = "kitchen"; name = "Kitchen shutters"; pixel_x = 9; pixel_y = -25},/obj/machinery/light_switch{dir = 1; pixel_x = -1; pixel_y = -42},/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/spacespice,/obj/item/weapon/reagent_containers/food/condiment/spacespice,/obj/item/weapon/reagent_containers/food/condiment/carton/sugar,/obj/item/weapon/reagent_containers/food/condiment/carton/sugar,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,/obj/item/weapon/reagent_containers/food/condiment/small/peppermill,/obj/item/weapon/reagent_containers/food/condiment/small/peppermill,/obj/machinery/button/remote/blast_door{dir = 1; id = "kitchenhallway"; name = "Kitchen shutters"; pixel_x = 9; pixel_y = -36},/obj/random/donkpocketbox,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"rs" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) -"rt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/effect/landmark/start/botanist,/turf/simulated/floor/tiled,/area/hydroponics) -"ru" = (/obj/structure/bed/chair/bay/comfy/yellow{dir = 1},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"rv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"rw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Engineering Workshop"; req_access = null; req_one_access = list(11,24); stripe_color = "#913013"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/engineering/workshop) -"rx" = (/turf/simulated/wall/bay/r_wall/steel,/area/storage/primary) -"ry" = (/obj/structure/table/rack,/obj/item/weapon/tank/jetpack,/obj/item/clothing/mask/gas,/obj/item/clothing/suit/space/void/captain,/obj/item/clothing/head/helmet/space/void/captain,/obj/structure/window/reinforced,/obj/machinery/door/window/brigdoor/westright{dir = 4; name = "Captain's Storage"; req_access = list(20)},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/card/id/gold/captain/spare{name = "\improper Captain's spare ID"},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"rz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"rB" = (/obj/structure/particle_accelerator/particle_emitter/right{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) -"rC" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"rD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/obj/effect/map_helper/airlock/door/simple,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboardescape) -"rE" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/paicard,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/newscaster{pixel_y = 28},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/effect/landmark/vines,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) -"rF" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{icon_state = "1-4"},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) -"rG" = (/obj/structure/bed/chair/comfy,/obj/effect/landmark/start/bartender,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"rH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"rI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"rK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"rM" = (/obj/machinery/light/small{dir = 1},/obj/structure/closet/emcloset,/obj/machinery/camera/network/halls{dir = 4},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard) -"rN" = (/turf/simulated/wall/bay/r_wall/blue,/area/crew_quarters/captain) -"rO" = (/obj/structure/closet/secure_closet/hydroponics,/obj/item/weapon/shovel/spade,/obj/item/weapon/storage/belt/utility,/obj/item/stack/material/sandstone{amount = 5},/obj/effect/floor_decal/milspec/color/green/half{dir = 9},/obj/machinery/requests_console{department = "Service"; pixel_y = 26},/obj/item/device/retail_scanner/civilian,/turf/simulated/floor/tiled,/area/hydroponics) -"rP" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/grass,/area/hydroponics) -"rQ" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"rR" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portaft) -"rT" = (/turf/simulated/wall/bay/r_wall/steel,/area/storage/tech) -"rV" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/bar) -"rW" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos) -"rX" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#9c9c9c"; name = "Laundry"; stripe_color = "#89bd66"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/locker) -"rY" = (/obj/structure/sign/directions/medical{dir = 1; pixel_x = -32; pixel_y = 35},/obj/structure/sign/directions/bridge{dir = 1; pixel_x = -32; pixel_y = 41},/obj/structure/sign/directions/engineering{pixel_x = -32; pixel_y = 23},/obj/structure/sign/directions/cargo{dir = 10; pixel_x = -32; pixel_y = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"rZ" = (/obj/structure/sign/pods,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/starboard) -"sa" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) -"sb" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"sc" = (/obj/structure/bed/chair/sofa/corp{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) -"sd" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/alarm/angled{dir = 4},/obj/effect/floor_decal/milspec/color/green/half{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics) -"se" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"sg" = (/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port) -"sh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/grass,/area/hydroponics) -"si" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "32-2"},/obj/structure/disposalpipe/down{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/portfore) -"sj" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"sk" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#a6753d"; name = "Cargo Office"; req_access = list(31); stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/quartermaster/storage) -"sl" = (/obj/item/weapon/stool/padded{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"sm" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/airlock_sensor{id_tag = "engine_sensor"; pixel_y = 24},/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "engine_airpump"},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/engineering/engine_room) -"sn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) -"so" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"sp" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/red,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"sq" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/white,/turf/simulated/floor,/area/medical/chemistry) -"sr" = (/obj/item/weapon/stool/padded{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"su" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light/floortube{dir = 1; pixel_y = -10},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"sv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"sw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/camera/network/engine{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) -"sx" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos) -"sy" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage) -"sz" = (/obj/machinery/computer/atmoscontrol,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"sA" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) -"sB" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) -"sC" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"sD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/locker) -"sE" = (/obj/machinery/honey_extractor,/obj/machinery/status_display{pixel_x = 32},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) -"sF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"sG" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall/bay/brown,/area/quartermaster/storage) -"sH" = (/obj/structure/table/wooden_reinforced,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"sI" = (/obj/structure/sign/deck2{pixel_x = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"sJ" = (/obj/machinery/vending/wardrobe/medidrobe,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"sK" = (/obj/effect/floor_decal/industrial/loading{dir = 8},/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"sL" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 8; id = "bar"; layer = 3.3; name = "Bar Shutters"},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"sM" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) -"sN" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/storage/primary) -"sO" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"sP" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"sQ" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) -"sR" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/structure/cable/orange{icon_state = "2-8"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"sS" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/milspec/color/blue,/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/central) -"sT" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"sU" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/obj/structure/sign/atmos/o2{pixel_x = 32; pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"sV" = (/obj/machinery/firealarm/angled{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) -"sW" = (/obj/effect/catwalk_plated,/turf/simulated/floor,/area/stellardelight/deck2/port) -"sX" = (/obj/structure/dogbed,/mob/living/simple_mob/animal/passive/dog/void_puppy/nulle,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"sY" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"; pixel_y = 32},/obj/machinery/camera/network/engine,/turf/simulated/floor/airless,/area/engineering/engine_room) -"sZ" = (/obj/structure/closet/crate{icon_state = "crate"; name = "Grenade Crate"},/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/device/assembly/timer,/obj/item/device/assembly/timer,/obj/item/device/assembly/timer,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/weapon/tool/screwdriver,/obj/structure/table/reinforced,/obj/machinery/light,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"ta" = (/turf/simulated/wall/bay/brown,/area/engineering/workshop) -"tb" = (/obj/structure/bed/chair/sofa/corp/right{dir = 8},/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) -"tc" = (/obj/structure/lattice,/turf/space,/area/stellardelight/deck2/exterior) -"td" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"te" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/flora/pottedplant/minitree,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"tf" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/eastright{dir = 8; name = "Chemistry"},/obj/machinery/door/window/westleft{dir = 4; name = "Chemistry"; req_one_access = list(33)},/obj/machinery/door/blast/shutters{dir = 8; id = "chemistry"; layer = 3.1; name = "Chemistry Shutters"},/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"tg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"},/turf/simulated/wall/bay/r_wall/orange,/area/engineering/engine_room) -"th" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) -"ti" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"tj" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"tk" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage) -"tl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"tm" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"tn" = (/obj/structure/table/standard,/obj/item/device/camera{pixel_x = -2; pixel_y = 9},/obj/item/device/camera{pixel_x = 2; pixel_y = 3},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) -"to" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"tp" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"ts" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) -"tt" = (/obj/structure/table/standard,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen/red{pixel_x = 2; pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/button/remote/blast_door{dir = 4; id = "qmwindows"; name = "Privacy Shutters"; pixel_y = 15},/turf/simulated/floor/wood,/area/quartermaster/qm) -"tu" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"tv" = (/obj/structure/bed/psych,/obj/structure/sign/painting/library_secure{pixel_y = -30},/turf/simulated/floor/wood,/area/medical/psych) -"tw" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - Starboard Solar Array"; name_tag = "Starboard Solar Array"},/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"ty" = (/obj/effect/floor_decal/industrial/danger{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"tz" = (/obj/effect/floor_decal/industrial/danger/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"tA" = (/obj/machinery/firealarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"tB" = (/obj/machinery/firealarm/angled,/obj/structure/frame,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) -"tC" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"tD" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/vending/tool,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"tE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"tF" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"tI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"tJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"tK" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage) -"tL" = (/obj/structure/sign/nanotrasen{pixel_x = 32},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/port) -"tM" = (/obj/structure/table/rack,/obj/structure/bed/chair/wheelchair{dir = 4},/obj/structure/bed/chair/wheelchair{dir = 4},/obj/machinery/camera/network/medbay{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"tN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"tP" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"tQ" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering) -"tT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"tU" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"tV" = (/obj/item/weapon/storage/box/nifsofts_medical{pixel_x = 7; pixel_y = 7},/obj/item/weapon/storage/box/nifsofts_medical,/obj/structure/table/reinforced,/obj/item/device/radio{pixel_x = -4; pixel_y = 4},/obj/item/device/radio{pixel_x = 4; pixel_y = -4},/obj/item/device/radio{pixel_x = 7; pixel_y = 8},/obj/machinery/light_switch{pixel_y = 24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"tW" = (/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"tX" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) -"tZ" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"ua" = (/obj/effect/floor_decal/milspec/color/blue/corner,/obj/structure/sign/directions/medical{pixel_x = 32; pixel_y = -29},/obj/structure/sign/directions/cargo{pixel_x = 32; pixel_y = -35},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = -41},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"ub" = (/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop) -"uc" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"ud" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"ue" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold4w/visible/red,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"uf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/noticeboard{pixel_x = -32},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) -"ug" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "privacyshutters"; name = "Privacy Shutter"},/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/stellardelight/deck2/briefingroom) -"uh" = (/obj/structure/cable/white{icon_state = "2-4"},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"ui" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/turf/space,/area/space) -"uj" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"uk" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/o2production) -"ul" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"um" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) -"un" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) -"uo" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; name = "Engineering Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/engineering) -"up" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/milspec/color/orange/corner,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"uq" = (/obj/structure/sign/directions/medical{dir = 8; pixel_x = 32; pixel_y = 35},/obj/structure/sign/directions/cargo{pixel_x = 32; pixel_y = 28},/obj/structure/sign/directions/bridge{dir = 1; pixel_x = 32; pixel_y = 41},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = 22},/obj/structure/sign/directions/bar{dir = 1; pixel_x = 32; pixel_y = 47},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"ur" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"us" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/recharge_station,/obj/effect/landmark/vines,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) -"ut" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"uu" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/combustionworkshop) -"uv" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"uw" = (/obj/structure/particle_accelerator/power_box{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) -"ux" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"uy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/storage/art) -"uz" = (/obj/structure/sign/deck2{pixel_y = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"uA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/grass,/area/hydroponics) -"uB" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"uC" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"uD" = (/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"uE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"uF" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/camera/network/halls,/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"uG" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"uI" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/camera/network/cargo{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"uJ" = (/obj/machinery/computer/security/telescreen/entertainment{desc = "Look's like it's set to the info station... I wonder what else is on?"; pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"uK" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"uL" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) -"uM" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; locked = 1; name = "maintenance access"; req_one_access = list(19); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_eva) -"uN" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"uO" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 4},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"uP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"uQ" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/central) -"uR" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) -"uT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"uU" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/wall{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) -"uW" = (/obj/machinery/appliance/mixer/candy,/obj/machinery/light,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"uX" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"uY" = (/obj/structure/cable/yellow{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"uZ" = (/obj/machinery/button/remote/blast_door{dir = 8; id = "bar"; name = "Bar Shutter Control"; pixel_x = 24},/obj/structure/table/marble,/obj/item/weapon/reagent_containers/glass/rag,/obj/item/weapon/reagent_containers/food/drinks/shaker{pixel_x = -7; pixel_y = 11},/obj/machinery/light_switch{dir = 8; pixel_x = 26; pixel_y = -9},/obj/machinery/button/remote/blast_door{dir = 8; id = "barlockdown"; name = "Window Lockdown"; pixel_x = 24; pixel_y = 10},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"va" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/wood,/area/medical/psych) -"vb" = (/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"vc" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) -"vd" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"ve" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "2-4"},/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"vf" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = -4},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"vg" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"vh" = (/obj/structure/closet/crate/freezer,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) -"vi" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"vj" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"vk" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/light{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"vn" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"vo" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/item/weapon/cell/device,/obj/item/weapon/cell/device,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) -"vp" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch/engineering{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) -"vq" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"vt" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"vu" = (/obj/machinery/lapvend,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) -"vw" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"vx" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor,/area/engineering/atmos/monitoring) -"vy" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"vz" = (/obj/machinery/alarm/angled,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) -"vA" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"vB" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"vC" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"vD" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,/obj/machinery/meter,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"vF" = (/obj/machinery/atmospherics/pipe/manifold/visible/supply,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) -"vG" = (/obj/structure/closet/walllocker_double/medical/north,/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 8},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 8},/obj/item/weapon/storage/belt/medical,/obj/item/weapon/storage/belt/medical,/obj/item/clothing/gloves/sterile/nitrile,/obj/item/clothing/gloves/sterile/nitrile,/obj/random/tetheraid,/obj/random/tetheraid,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"vH" = (/obj/effect/floor_decal/milspec/color/white/corner,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"vI" = (/obj/structure/cable/white{icon_state = "1-8"},/obj/structure/cable/white{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"vJ" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos) -"vK" = (/obj/structure/cable/blue{icon_state = "1-8"},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"vL" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"vM" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering) -"vN" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"vO" = (/obj/machinery/chem_master,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"vP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"vQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) -"vR" = (/obj/machinery/light,/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"vS" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) -"vU" = (/obj/machinery/alarm/angled{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"vV" = (/obj/structure/grille,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/door/blast/angled/open{dir = 2; id = "burnchamberlockdown"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"vW" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"vX" = (/obj/machinery/vending/fitness,/obj/structure/sign/poster{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) -"vY" = (/obj/item/device/radio/headset/headset_med,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/fancy/vials,/obj/item/weapon/storage/fancy/vials,/obj/item/weapon/storage/box/pillbottles,/obj/item/weapon/storage/box/pillbottles,/obj/structure/closet/wardrobe/chemistry_white,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"wa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/table/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"wb" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"wd" = (/obj/structure/closet/secure_closet/medical2,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"we" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"wf" = (/obj/structure/bed/chair/sofa/corp/corner{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) -"wg" = (/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-2"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"wh" = (/obj/structure/filingcabinet/chestdrawer{name = "Scan Records"},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"wi" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/central) -"wk" = (/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"wl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"wm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 1},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage) -"wn" = (/obj/structure/shuttle/engine/propulsion{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/portescape) -"wo" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 1},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"wp" = (/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/combustionworkshop) -"wq" = (/obj/structure/bed/chair/backed_red{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"wr" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"ws" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/medical/psych) -"wt" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"wu" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"wv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/storage/primary) -"ww" = (/obj/structure/table/glass,/obj/random/medical{pixel_x = -4; pixel_y = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"wy" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) -"wz" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"wA" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"wB" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port) -"wC" = (/obj/machinery/recharger,/obj/item/weapon/storage/box/syringegun,/obj/item/weapon/gun/launcher/syringe,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"wD" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) -"wE" = (/obj/structure/disposalpipe/sortjunction/untagged/flipped{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"wF" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"wG" = (/obj/structure/table/woodentable,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 30},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 4},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 2; pixel_y = 7},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"wH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"wI" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"wJ" = (/obj/structure/sign/painting/public{pixel_y = -30},/turf/simulated/floor/tiled,/area/storage/art) -"wK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/emblem/stellardelight{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"wL" = (/obj/machinery/appliance/mixer/cereal,/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"wM" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/structure/sign/poster{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring) -"wN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"wO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftstarboard) -"wP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"wR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"wS" = (/obj/structure/bed/chair,/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"wT" = (/obj/machinery/atmospherics/unary/cryo_cell,/turf/simulated/floor/tiled/techfloor/grid,/area/stellardelight/deck2/triage) -"wV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"wW" = (/obj/structure/sign/nanotrasen{pixel_x = -32},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/starboard) -"wX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"wY" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck2/aftport) -"wZ" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"xa" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"xb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) -"xc" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) -"xd" = (/turf/simulated/wall/bay/r_wall/blue,/area/stellardelight/deck2/briefingroom) -"xe" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"xg" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"xh" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"xi" = (/obj/machinery/atmospherics/omni/atmos_filter{name = "N2O Filter"; tag_east = 2; tag_south = 1; tag_west = 7},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"xj" = (/obj/machinery/vending/wallmed1{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"xk" = (/obj/machinery/photocopier,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"xl" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/structure/sign/atmos_air{pixel_x = 32; pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"xm" = (/obj/machinery/alarm/angled,/obj/machinery/recharge_station,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"xn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark{name = "vinestart"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"xo" = (/obj/machinery/computer/supplycomp/control,/turf/simulated/floor/wood,/area/quartermaster/qm) -"xp" = (/turf/simulated/wall/bay/white,/area/medical/psych) -"xq" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/atmospherics/portables_connector,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"xr" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"xt" = (/obj/machinery/pipedispenser/disposal,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"xu" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/black,/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"xv" = (/obj/structure/table/darkglass,/obj/machinery/computer/skills{pixel_x = 9},/obj/item/weapon/paper_bin{pixel_x = -7; pixel_y = -2},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) -"xw" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/trolley{dir = 1},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"xx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/effect/floor_decal/milspec/color/orange/half{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"xy" = (/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/central) -"xz" = (/obj/structure/particle_accelerator/end_cap{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) -"xA" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"xB" = (/obj/machinery/computer/station_alert/all,/obj/structure/panic_button{pixel_y = 32},/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"xC" = (/obj/effect/landmark{name = "lightsout"},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"xD" = (/obj/structure/bed/chair/backed_red{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"xE" = (/obj/structure/bed/chair/sofa/corp/left{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) -"xG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"xH" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "Mental Health"; req_access = list(64); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/psych) -"xI" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/accessory,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) -"xJ" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/biochemistry/full,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"xK" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/tiled/techmaint,/area/storage/primary) -"xL" = (/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 1},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/white{icon_state = "0-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"xM" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) -"xN" = (/mob/living/simple_mob/animal/passive/mouse/brown/feivel,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) -"xO" = (/obj/machinery/light,/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"xP" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 4},/obj/structure/table/wooden_reinforced,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) -"xQ" = (/obj/structure/sign/redcross,/turf/simulated/wall/bay/white,/area/medical/reception) -"xR" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"xT" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"xU" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"xV" = (/obj/structure/sink{dir = 8; pixel_x = -12},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"xW" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/obj/structure/sign/atmos/phoron{pixel_x = -32; pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"xX" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"xY" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"xZ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"ya" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/sign/nosmoking_1{pixel_y = -32},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"yc" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"yd" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftport) -"ye" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"yf" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/table/standard,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"yg" = (/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) -"yh" = (/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"yi" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "maintenance access"; req_access = list(11,24); req_one_access = null; stripe_color = "#e6ab22"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engineering_monitoring) -"yj" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engine_room) -"yk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"yl" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage) -"ym" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/sign/department/atmos{pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"yn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"yo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood,/area/medical/psych) -"yp" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape) -"yq" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"yr" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) -"ys" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"yu" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/newscaster{pixel_x = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"yv" = (/obj/effect/landmark/start/botanist,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"yw" = (/obj/structure/table/reinforced,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) -"yx" = (/obj/machinery/status_display{pixel_y = -32},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"yy" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"yz" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"yA" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva) -"yB" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"yC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"yE" = (/obj/structure/medical_stand,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"yF" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"yG" = (/obj/structure/bed/chair/sofa/corp/corner{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) -"yH" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"yI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"yJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/blast/angled/open{dir = 4; id = "bridgelockdown"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#323d80"; name = "Bridge"; req_access = list(19); req_one_access = list(19); stripe_color = "#f7d35c"},/turf/simulated/floor/tiled/steel_ridged,/area/bridge) -"yK" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"yM" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"yN" = (/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; locked = 1; name = "Burn Chamber"; req_one_access = list(24); stripe_color = "#e6ab22"},/obj/machinery/door/blast/angled/open{dir = 2; id = "burnchamberlockdown"},/turf/simulated/floor/reinforced,/area/stellardelight/deck2/combustionworkshop) -"yP" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) -"yQ" = (/obj/machinery/camera/network/medbay{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"yR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"yS" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"yT" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/status_display/supply_display{pixel_x = -32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"yU" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"yV" = (/obj/item/device/sleevemate,/obj/item/device/denecrotizer/medical,/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/item/weapon/gun/energy/mouseray/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"yW" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck2/aftstarboard) -"yX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/westleft{dir = 4; name = "Animal Pen"; req_one_access = list(35,28)},/turf/simulated/floor/tiled/steel_ridged,/area/hydroponics) -"yY" = (/obj/machinery/camera/network/halls{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"yZ" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"za" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engine_room) -"zb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"zc" = (/obj/structure/sign/department/chem{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"zd" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"zf" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"zh" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"zi" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"zj" = (/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"zk" = (/obj/machinery/light/small,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard) -"zl" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"zm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) -"zo" = (/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"zp" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{icon_state = "0-4"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"zq" = (/obj/structure/cable/orange{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"zr" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics) -"zs" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"zt" = (/obj/machinery/camera/network/medbay{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"zu" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"zv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"zw" = (/obj/structure/bed/chair/backed_red{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"zy" = (/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) -"zz" = (/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"zC" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"zD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"zG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"zH" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"zI" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "d2_portmaint_exterior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/access_button{command = "cycle_exterior"; dir = 8; frequency = 1379; master_tag = "d2_portmaint_airlock"; name = "exterior access button"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck2/portsolars) -"zJ" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"zK" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/machinery/alarm/angled{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"zL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 1},/obj/machinery/firealarm/angled,/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor,/area/medical/cryo) -"zM" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"zN" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) -"zO" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"zP" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"zQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#ffffff"; name = "Medbay Storage"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/cmostore) -"zR" = (/obj/effect/floor_decal/milspec/color/orange/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"zS" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"zT" = (/obj/machinery/shieldgen,/obj/machinery/camera/network/engineering,/turf/simulated/floor/plating,/area/engineering/storage) -"zU" = (/obj/machinery/oxygen_pump/anesthetic,/turf/simulated/wall/bay/white,/area/medical/surgery) -"zV" = (/obj/structure/cable/orange{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) -"zW" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/random/trash_pile,/obj/effect/landmark{name = "morphspawn"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) -"zX" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"zY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) -"zZ" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"Aa" = (/obj/machinery/light/small{dir = 1},/obj/structure/closet/emcloset,/obj/machinery/camera/network/halls{dir = 8},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port) -"Ab" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) -"Ad" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/papershredder,/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) -"Ae" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/uniform,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) -"Af" = (/obj/structure/table/reinforced,/obj/item/device/retail_scanner/engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) -"Ag" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Ah" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/obj/effect/map_helper/airlock/door/simple,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboardescape) -"Ai" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"Aj" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"Ak" = (/obj/structure/table/standard,/obj/item/weapon/material/knife/butch,/obj/item/weapon/material/kitchen/rollingpin,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"Al" = (/obj/structure/table/fancyblack,/obj/item/weapon/paper_bin{pixel_y = 5},/obj/item/weapon/pen,/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) -"Am" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor,/area/engineering/atmos/monitoring) -"An" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) -"Ao" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"Ap" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"Ar" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"As" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; name = "Scrubber to Waste"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"At" = (/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) -"Au" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/space,/area/space) -"Av" = (/obj/structure/disposalpipe/segment,/obj/structure/closet/secure_closet/atmos_personal,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"Aw" = (/obj/machinery/light{dir = 8},/obj/structure/sign/directions/engineering/atmospherics{dir = 8; pixel_x = -32; pixel_y = -12},/obj/structure/sign/directions/cargo{dir = 10; pixel_x = -32},/obj/structure/sign/directions/engineering{dir = 4; pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/medical{dir = 1; pixel_x = -32; pixel_y = 6},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftstarboard) -"Ax" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/vending/wallmed1/public{pixel_x = 29},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"Ay" = (/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"Az" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/storage) -"AA" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"AB" = (/obj/machinery/computer/guestpass{pixel_y = 24},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"AC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) -"AD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"AE" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"AF" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"AG" = (/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"AI" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"AK" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Master Grid"; name_tag = "Master"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/plating,/area/engineering/storage) -"AL" = (/obj/machinery/light{dir = 4},/obj/structure/sign/directions/engineering{dir = 4; pixel_x = 32; pixel_y = -6},/obj/structure/sign/directions/engineering/atmospherics{dir = 10; pixel_x = 32; pixel_y = -12},/obj/structure/sign/directions/cargo{dir = 6; pixel_x = 32},/obj/structure/sign/directions/medical{dir = 1; pixel_x = 32; pixel_y = 6},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftport) -"AM" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/storage/art) -"AN" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 8; id = "bar"; layer = 3.3; name = "Bar Shutters"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"AO" = (/obj/structure/table/darkglass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/button/remote/airlock{id = "captaindoor"; pixel_x = -15; pixel_y = 2},/obj/item/weapon/stamp/captain{pixel_x = 10; pixel_y = 6},/obj/item/weapon/coin/phoron{desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo."; name = "limited edition phoron coin"; pixel_x = 11; pixel_y = -3},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) -"AP" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) -"AR" = (/obj/machinery/light,/turf/simulated/floor/grass,/area/hydroponics) -"AS" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/algae_farm{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/unary_atmos/heater,/obj/item/weapon/circuitboard/unary_atmos/cooler{pixel_x = 3; pixel_y = -3},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"AT" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"AU" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"AV" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage) -"AW" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"AX" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"AY" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"AZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Ba" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/sleeper{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"Bb" = (/obj/structure/flora/pottedplant/minitree,/obj/structure/cable/white{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"Bc" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Bd" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/engineering,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) -"Be" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/closet/secure_closet/engineering_personal,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"Bf" = (/obj/structure/sign/directions/bar{dir = 1; pixel_x = 32; pixel_y = 15},/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"Bg" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftstarboard) -"Bh" = (/obj/machinery/computer/operating,/turf/simulated/floor/tiled/white,/area/medical/surgery) -"Bi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/storage/art) -"Bj" = (/obj/machinery/smartfridge/produce/persistent_lossy,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/crew_quarters/kitchen) -"Bk" = (/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) -"Bl" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "Operating Theatre 1"; req_access = list(45); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/surgery) -"Bm" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"Bn" = (/obj/structure/table/standard,/obj/machinery/reagentgrinder{pixel_y = 10},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"Bo" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark/start/chef,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"Bp" = (/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) -"Bq" = (/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard) -"Br" = (/obj/structure/shuttle/window,/obj/structure/grille,/obj/effect/shuttle_landmark{base_area = /area/stellardelight/deck2/exterior; base_turf = /turf/simulated/floor/airless; docking_controller = "port_escape_berth"; landmark_tag = "port_ship_berth"; name = "Stellar Delight Escape Pod Port"},/turf/simulated/floor,/area/stellardelight/deck2/portescape) -"Bs" = (/obj/machinery/field_generator{anchored = 1; state = 1},/turf/simulated/floor/airless,/area/engineering/engine_room) -"Bt" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"Bu" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"Bv" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"Bw" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port) -"Bx" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"BA" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/fore) -"BB" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"BC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) -"BD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#9c9c9c"; fill_color = null; name = "Commons"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area) -"BE" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"BF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) -"BG" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/machinery/meter,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"BH" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) -"BI" = (/obj/structure/table/standard,/obj/item/weapon/clipboard,/obj/item/weapon/stamp/qm,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/quartermaster/qm) -"BJ" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"BK" = (/obj/item/weapon/stool/padded,/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) -"BL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"BM" = (/obj/structure/table/standard,/obj/item/weapon/folder/yellow,/obj/item/weapon/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/machinery/light/floortube{dir = 1; pixel_y = 6},/obj/machinery/camera/network/cargo,/obj/item/device/retail_scanner/cargo,/obj/item/weapon/stamp/accepted,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"BN" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/substation/engineering) -"BO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"BP" = (/obj/effect/floor_decal/milspec/color/blue/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"BQ" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor,/area/engineering/atmos/monitoring) -"BR" = (/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"BS" = (/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/light_switch{pixel_x = 9; pixel_y = 24},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"BT" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/atmos/storage) -"BU" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"BV" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{id = "bar"; layer = 3.3; name = "Bar Shutters"},/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/lino,/area/crew_quarters/bar) -"BW" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) -"BX" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"BY" = (/obj/machinery/atmospherics/pipe/tank/nitrogen{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"BZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"Ca" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Cb" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port) -"Cc" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"Cd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"Ce" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass/common{dir = 8; name = "Escape Pod"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) -"Cf" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Cg" = (/obj/structure/sign/painting/public{pixel_y = -30},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/storage/art) -"Ch" = (/obj/machinery/atmospherics/pipe/tank/oxygen{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"Ci" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"Cj" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"Ck" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"Cl" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage) -"Cm" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Cn" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 1},/obj/structure/cable/orange{icon_state = "4-8"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Co" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"Cp" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Cq" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Cr" = (/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"Ct" = (/obj/machinery/light,/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Cu" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"Cv" = (/obj/machinery/gear_painter,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"Cw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"Cx" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"Cy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"Cz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/engineering,/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"CA" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"CB" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"CC" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"CD" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"CE" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"CF" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"CG" = (/obj/machinery/computer/ship/helm,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"CH" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"CI" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 2; pixel_y = 7},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"CJ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"CK" = (/obj/structure/table/fancyblack,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/weapon/toy/desk/stellardelight{pixel_x = -11; pixel_y = -8},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) -"CL" = (/obj/structure/table/reinforced,/obj/random/maintenance/clean,/obj/random/powercell,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) -"CM" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/orange{icon_state = "1-8"},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"CO" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) -"CP" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"CQ" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"CR" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"CS" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"CT" = (/obj/machinery/atmospherics/pipe/tank/nitrogen,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"CU" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) -"CV" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/clothing,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) -"CW" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"CY" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 4},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 2; pixel_y = 7},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"CZ" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Da" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"Dc" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"Dd" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/structure/symbol/sa{pixel_y = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/storage/primary) -"De" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"Df" = (/obj/machinery/atmospherics/unary/freezer{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"Dg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Dh" = (/obj/machinery/computer/med_data,/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/milspec/color/white/half,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"Di" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Dj" = (/obj/machinery/smartfridge/drinks,/turf/simulated/floor/lino,/area/crew_quarters/bar) -"Dk" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{door_color = "#ffffff"; id_tag = "MedbayFoyer W"; name = "Medbay Foyer"; req_access = list(5); req_one_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/triage) -"Dl" = (/obj/structure/bed/chair/bay/comfy/brown,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) -"Dm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Dn" = (/turf/simulated/floor/wood,/area/medical/psych) -"Do" = (/obj/machinery/seed_storage/garden,/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics) -"Dq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) -"Dr" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/wood,/area/quartermaster/qm) -"Ds" = (/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Dt" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Du" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/undies_wardrobe,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) -"Dv" = (/obj/structure/cable/white{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"Dw" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 1},/turf/simulated/floor/airless,/area/engineering/engine_eva) -"Dx" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = -5; pixel_y = 4},/obj/item/weapon/clipboard,/turf/simulated/floor/carpet/blue,/area/medical/psych) -"Dy" = (/obj/structure/table/standard,/obj/item/device/defib_kit/loaded,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"Dz" = (/obj/machinery/door/firedoor,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#ffffff"; name = "Chemistry"; req_access = list(33); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/chemistry) -"DA" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftport) -"DB" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) -"DC" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"DD" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/freezer{pixel_y = 24},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) -"DE" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"DF" = (/obj/machinery/atmospherics/portables_connector/fuel,/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) -"DG" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/blue{icon_state = "0-2"},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"DH" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"DI" = (/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"DJ" = (/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-8"},/turf/simulated/floor,/area/medical/cryo) -"DL" = (/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) -"DM" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"DN" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 4},/obj/machinery/light{dir = 1},/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) -"DO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"DP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) -"DQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "Atmospherics"; sortType = "Atmospherics"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"DR" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) -"DS" = (/obj/structure/bed/chair/bay/comfy/brown,/obj/effect/landmark/start/clown,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) -"DT" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) -"DV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/sign/department/cargo{pixel_y = -32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"DW" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"DX" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 9},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"DY" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"DZ" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Ea" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "d2_starmaint_airpump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "d2_starmaint_airlock"; pixel_y = 24; req_one_access = list(13); tag_airpump = "d2_starmaint_airpump"; tag_chamber_sensor = "d2_starmaint_sensor"; tag_exterior_door = "d2_starmaint_exterior"; tag_interior_door = "d2_starmaint_interior"},/obj/machinery/airlock_sensor{dir = 1; id_tag = "d2_starmaint_sensor"; pixel_y = -24; req_access = list(13)},/obj/machinery/light/small,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"Ec" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"Ed" = (/obj/machinery/light,/obj/structure/table/reinforced,/obj/item/weapon/packageWrap,/obj/item/weapon/hand_labeler,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/weapon/tape_roll,/obj/item/weapon/clipboard,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"Ee" = (/obj/machinery/optable,/turf/simulated/floor/tiled/white,/area/medical/surgery) -"Ef" = (/turf/simulated/open,/area/stellardelight/deck2/aftport) -"Eg" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) -"Eh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Ei" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"Ej" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/sign/directions/stairs_down{dir = 1; pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions/stairs_up{pixel_x = -32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"Ek" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) -"El" = (/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) -"Em" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/structure/sign/poster{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring) -"En" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"Eo" = (/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/sleep_console{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"Ep" = (/obj/structure/bed/chair/bay/comfy/brown,/obj/effect/landmark/start/mime,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) -"Eq" = (/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) -"Er" = (/obj/effect/floor_decal/industrial/danger{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Es" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"Et" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor,/area/engineering/atmos/monitoring) -"Eu" = (/obj/effect/shuttle_landmark{base_area = /area/quartermaster/storage; base_turf = /turf/simulated/floor/reinforced; docking_controller = "cargo_bay"; landmark_tag = "supply_station"; name = "Ship Cargo Bay"},/turf/simulated/floor/reinforced,/area/quartermaster/storage) -"Ev" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"Ew" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass/common{dir = 8; name = "Escape Pod"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) -"Ex" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#ffffff"; name = "Gas Storage"; req_one_access = list(5,24); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/cryo) -"Ey" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/storage/primary) -"Ez" = (/obj/structure/table/woodentable,/obj/item/weapon/gun/projectile/shotgun/doublebarrel,/obj/item/weapon/paper{info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest."; name = "Shotgun permit"},/obj/item/ammo_magazine/ammo_box/b12g/beanbag,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"EA" = (/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"EC" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_y = 4},/obj/item/weapon/pen{pixel_y = 4},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"ED" = (/obj/machinery/photocopier/faxmachine{department = "Captain's Office"},/obj/structure/table/darkglass,/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"EE" = (/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"EF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/o2production) -"EG" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) -"EH" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/camera/network/cargo{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"EI" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"EJ" = (/obj/machinery/computer/crew{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"EK" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"EL" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/surgery) -"EM" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"EN" = (/obj/effect/floor_decal/emblem/stellardelight{dir = 6},/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"EO" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/captaindouble,/obj/structure/curtain/black,/obj/effect/landmark/start/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"EP" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) -"EQ" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) -"ER" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#e6ab22"; name = "Engineering Hard Storage"; req_access = list(11); stripe_color = "#913013"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/storage) -"ES" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 9},/turf/simulated/floor/tiled,/area/hydroponics) -"ET" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/conveyor{id = "cargoload"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"EU" = (/obj/structure/table/glass,/obj/random/medical{pixel_x = -4; pixel_y = 5},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"EV" = (/obj/item/weapon/stool/padded{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"EW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"EX" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) -"EZ" = (/obj/machinery/vending/tool,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) -"Fa" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"Fb" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"Fc" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"Fd" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) -"Fe" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/vacuum{pixel_x = -32},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"Ff" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"Fg" = (/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) -"Fh" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Fi" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/embedded_controller/radio/simple_docking_controller{frequency = 1380; id_tag = "cargo_bay"; pixel_y = 24; req_one_access = null; tag_door = null},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Fk" = (/obj/structure/bed/chair/comfy/blue{dir = 1},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) -"Fl" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Fm" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"Fn" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/wood,/area/quartermaster/qm) -"Fo" = (/obj/machinery/power/solar_control{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"Fq" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"Fr" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/white,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"Fs" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"Ft" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"Fv" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/disposalpipe/segment,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Fw" = (/obj/structure/table/gamblingtable,/obj/machinery/light/floortube{pixel_y = -6},/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) -"Fx" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/machinery/button/ignition{id = "castfireball"; pixel_y = 28},/obj/machinery/light{dir = 4},/obj/machinery/button/remote/blast_door{id = "burnchamberlockdown"; name = "Window Lockdown"; pixel_x = -9; pixel_y = 31},/obj/machinery/button/remote/blast_door{id = "burnchamberlockvent"; name = "Chamber Vent"; pixel_x = -1; pixel_y = 37},/obj/machinery/computer/general_air_control/supermatter_core{input_tag = "cooling_in"; name = "Engine Cooling Control"; output_tag = "cooling_out"; sensors = list("burn_chamber" = "Burn Chamber"); throwpass = 1},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"Fy" = (/obj/item/weapon/stool/padded{dir = 1},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"Fz" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) -"FA" = (/obj/machinery/light{dir = 4},/obj/machinery/vending/nifsoft_shop,/obj/machinery/item_bank{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"FB" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"FC" = (/obj/structure/closet/secure_closet/bar,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"FD" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; frequency = 1441; id = "atmos_out"; use_power = 1},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"FE" = (/obj/machinery/sleep_console{dir = 4},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"FF" = (/obj/structure/particle_accelerator/particle_emitter/center{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) -"FG" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"FH" = (/obj/structure/medical_stand,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"FI" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) -"FJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#9c9c9c"; name = "Bar"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/bar) -"FK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/table/rack,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"FL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"FM" = (/obj/item/weapon/stool/padded{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"FN" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/grinder{pixel_x = -4; pixel_y = 4},/obj/item/weapon/circuitboard/grill{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/fryer{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/oven{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/microwave,/obj/item/weapon/circuitboard/cerealmaker{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/candymachine{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/biogenerator{pixel_x = 3; pixel_y = -3},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"FP" = (/obj/machinery/light,/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"FQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"FR" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/overwear,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) -"FS" = (/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) -"FT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"FU" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"FV" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"FW" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/light/floortube{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"FX" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"FY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"FZ" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/alarm/angled{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"Ga" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/obj/effect/landmark/vines,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Gb" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) -"Gc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"Gd" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"Ge" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"Gf" = (/turf/simulated/wall/bay/orange,/area/maintenance/stellardelight/substation/engineering) -"Gg" = (/obj/structure/bed/chair/comfy/blue{dir = 8},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) -"Gh" = (/obj/machinery/atmospherics/binary/pump{name = "CO2 to O2 Generators"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Gi" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"Gj" = (/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Gl" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Gn" = (/obj/structure/table/woodentable,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"Go" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Gp" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"Gq" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/portfore) -"Gr" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"Gs" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftport) -"Gt" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard) -"Gu" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) -"Gv" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"Gw" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/hologram/holopad,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"Gx" = (/obj/structure/sign/deck2{pixel_y = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"Gy" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled_shutter{id = "kitchenhallway"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"Gz" = (/obj/machinery/computer/general_air_control{frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; sensors = list("dist_main_meter" = "Surface - Distribution Loop", "scrub_main_meter" = "Surface - Scrubbers Loop", "mair_main_meter" = "Surface - Mixed Air Tank", "dist_aux_meter" = "Station - Distribution Loop", "scrub_aux_meter" = "Station - Scrubbers Loop", "mair_aux_meter" = "Station - Mixed Air Tank", "mair_mining_meter" = "Mining Outpost - Mixed Air Tank")},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/orange{icon_state = "0-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"GA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"GB" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"GD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/disposalpipe/segment,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "O2 Production"; req_access = list(24); stripe_color = "#2ebfbd"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/o2production) -"GE" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"GF" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"GG" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/storage/primary) -"GH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) -"GI" = (/obj/effect/landmark{name = "Observer-Start"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/emblem/stellardelight/center,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"GJ" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos) -"GK" = (/obj/structure/closet,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"GL" = (/obj/machinery/status_display{pixel_y = 32},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"GM" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 5},/turf/simulated/floor/tiled,/area/hydroponics) -"GN" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape) -"GO" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"GP" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"GQ" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/closet/firecloset,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"GR" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) -"GS" = (/obj/effect/floor_decal/emblem/stellardelight{dir = 10},/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"GT" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"GU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) -"GV" = (/obj/structure/bed/chair/comfy/blue{dir = 4},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) -"GW" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/blue,/obj/structure/table/steel_reinforced,/obj/item/weapon/paper_bin{pixel_y = 5},/obj/item/weapon/pen,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"GX" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"GY" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"GZ" = (/obj/machinery/computer/security/engineering{dir = 1},/obj/machinery/light/floortube{pixel_y = -6},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"Ha" = (/obj/machinery/icecream_vat,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) -"Hb" = (/obj/item/modular_computer/console/preset/command,/obj/machinery/camera/network/command,/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"Hc" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"Hd" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/starboard) -"He" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/engine{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Hf" = (/obj/machinery/power/emitter{anchored = 1; icon_state = "emitter1"; state = 1},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "0-4"},/turf/simulated/floor/airless,/area/engineering/engine_room) -"Hg" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/central) -"Hh" = (/obj/machinery/alarm/angled,/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"Hi" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_alc/full{dir = 1},/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"Hj" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"Hk" = (/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Hl" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"Hm" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/monitoring) -"Ho" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"Hp" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/device/megaphone,/turf/simulated/floor/wood,/area/quartermaster/qm) -"Hq" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Engineering Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/engineering) -"Hr" = (/turf/simulated/wall/bay/white,/area/medical/surgery) -"Hs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/firealarm/angled{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Ht" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"Hu" = (/obj/structure/table/standard,/obj/structure/disposalpipe/tagger{dir = 8; name = "package tagger - Trash"; sort_tag = "Trash"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Hv" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "\improper HIGH VOLTAGE"; pixel_y = 32},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/engine_room) -"Hw" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"Hx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/engineering/storage) -"Hy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Hz" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) -"HA" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/obj/machinery/light{dir = 1},/obj/structure/table/glass,/obj/machinery/recharger,/obj/item/weapon/tool/screwdriver,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"HB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/medical/psych) -"HC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/green{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"HD" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard) -"HE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) -"HF" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/medical,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"HG" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/station_map{dir = 4; pixel_x = -32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"HH" = (/obj/machinery/light,/obj/structure/cable/white{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"HI" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/green,/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"HJ" = (/turf/simulated/wall/bay/steel,/area/crew_quarters/kitchen) -"HK" = (/turf/simulated/wall/bay/orange,/area/engineering/locker_room) -"HL" = (/obj/structure/bed/chair/bay/comfy/captain{dir = 1},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"HM" = (/obj/structure/table/reinforced,/obj/structure/sign/poster{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"HN" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"HO" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"HP" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; name = "Primary Tool Storage"},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/storage/primary) -"HQ" = (/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/bar) -"HR" = (/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"HS" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"HT" = (/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/power/terminal{dir = 1},/turf/simulated/floor/plating,/area/engineering/storage) -"HV" = (/obj/machinery/washing_machine,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) -"HW" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/locker) -"HX" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/machinery/meter,/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"HY" = (/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/emblem/stellardelight{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"HZ" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"Ia" = (/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/accessory/stethoscope,/obj/item/weapon/storage/box/syringes{pixel_y = 9},/obj/item/weapon/storage/box/syringes{pixel_y = 9},/obj/random/medical,/obj/item/weapon/storage/box/beakers{pixel_x = 14; pixel_y = 10},/obj/structure/table/reinforced,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"Ib" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"Id" = (/obj/structure/sink{dir = 4; pixel_x = 12},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"Ie" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"If" = (/obj/structure/grille,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/door/blast/angled/open{dir = 2; id = "burnchamberlockdown"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"Ig" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Ih" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"Ii" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Ij" = (/obj/item/weapon/computer_hardware/battery_module,/obj/item/weapon/computer_hardware/battery_module,/obj/item/weapon/computer_hardware/battery_module/nano,/obj/item/weapon/computer_hardware/hard_drive,/obj/item/weapon/computer_hardware/hard_drive,/obj/item/weapon/computer_hardware/hard_drive/micro,/obj/item/weapon/computer_hardware/network_card,/obj/item/weapon/computer_hardware/network_card,/obj/item/weapon/computer_hardware/network_card/wired,/obj/item/weapon/computer_hardware/processor_unit,/obj/item/weapon/computer_hardware/processor_unit,/obj/item/weapon/computer_hardware/processor_unit/small,/obj/item/weapon/computer_hardware/tesla_link,/obj/item/weapon/computer_hardware/nano_printer,/obj/item/weapon/computer_hardware/hard_drive/portable,/obj/item/weapon/computer_hardware/hard_drive/portable,/obj/item/device/multitool,/obj/item/clothing/gloves/yellow,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/machinery/light/small{dir = 1},/obj/structure/table/steel,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"Ik" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/random/vendordrink,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/firealarm/angled,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"Il" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"Im" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/obj/structure/table/wooden_reinforced,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) -"In" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/recharge_station,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"Io" = (/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/steel_reinforced,/obj/item/device/retail_scanner/command,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"Ip" = (/obj/structure/stairs/spawner/north,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/aftport) -"Iq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) -"Ir" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) -"Is" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"It" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) -"Iu" = (/obj/structure/table/glass,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/recharger,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"Iv" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/obj/machinery/station_map{dir = 4; pixel_x = -32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"Iw" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"Ix" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"; pixel_y = -32},/obj/machinery/camera/network/engine{dir = 1},/turf/simulated/floor/airless,/area/engineering/engine_room) -"Iz" = (/obj/item/stack/cable_coil/yellow,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"IA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/red,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"IB" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"IC" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"ID" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"IE" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/glass/reinforced,/area/crew_quarters/recreation_area) -"IF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"IG" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/obj/structure/sign/poster{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"IH" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"II" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#e6ab22"; name = "Engineering Glass"; req_access = list(10); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/locker_room) -"IJ" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"IK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"IL" = (/obj/structure/table/steel_reinforced,/obj/machinery/keycard_auth{pixel_y = 2},/obj/effect/floor_decal/milspec/color/blue/half{dir = 10},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"IN" = (/obj/machinery/atmospherics/binary/pump/on{name = "Air to Distro"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"IO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"IQ" = (/obj/structure/table/glass,/obj/machinery/door/window/southright{dir = 1; req_access = list(5)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"IR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/trolley{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/camera/network/cargo{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"IT" = (/obj/machinery/vending/wardrobe/chemdrobe,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"IU" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/o2production) -"IV" = (/turf/simulated/floor/wood,/area/crew_quarters/captain) -"IW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"IX" = (/obj/machinery/alarm/angled{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"IY" = (/obj/machinery/firealarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"IZ" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"Ja" = (/obj/structure/table/rack/steel,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/circuitboard/partslathe,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"Jb" = (/obj/machinery/shield_capacitor,/turf/simulated/floor/plating,/area/engineering/storage) -"Jd" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"Je" = (/obj/structure/sign/directions/bar{dir = 1; pixel_y = 25},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Jf" = (/obj/structure/railing/grey{dir = 8},/obj/structure/railing/grey,/turf/simulated/open,/area/maintenance/stellardelight/deck2/starboardaft) -"Jg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"Jh" = (/turf/space,/area/space) -"Ji" = (/obj/machinery/computer/arcade/orion_trail,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"Jj" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Jk" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva) -"Jl" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"Jm" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Jn" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"Jo" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/fuelstorage) -"Jp" = (/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/grass,/area/hydroponics) -"Jq" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/fore) -"Jr" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/internals,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Js" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 1},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) -"Jt" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"Jv" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Jw" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"Jx" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"; pixel_x = -32},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-2"},/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Jy" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/cable/white{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"JB" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/storage/art) -"JC" = (/obj/structure/sign/department/cargo{pixel_x = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"JD" = (/obj/machinery/computer/power_monitor{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"JE" = (/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) -"JF" = (/obj/structure/sign/directions/bar{dir = 1; pixel_x = -32; pixel_y = 15},/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"JG" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"JH" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"JI" = (/obj/effect/floor_decal/milspec/color/green/half,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) -"JJ" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"JK" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"JL" = (/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"JM" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/orange{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) -"JN" = (/obj/effect/floor_decal/milspec/cargo,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"JP" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"JQ" = (/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"JR" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#9c9c9c"; fill_color = null; name = "Commons"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area) -"JS" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"JT" = (/obj/machinery/reagentgrinder,/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"JV" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/chemist,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"JW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"JX" = (/obj/machinery/shield_gen,/turf/simulated/floor/plating,/area/engineering/storage) -"JY" = (/turf/simulated/wall/bay/r_wall/steel,/area/storage/art) -"JZ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/blast/angled/open{dir = 2; id = "qmwindows"; name = "Privacy Shutters"},/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/qm) -"Ka" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"Kb" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) -"Kc" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled,/area/hydroponics) -"Kd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"Ke" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/storage/primary) -"Kf" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"Kg" = (/obj/structure/table/glass,/obj/item/device/defib_kit/loaded,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"Kh" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Ki" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"Kj" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/vending/event,/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"Kk" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/closet/secure_closet/atmos_personal,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"Kl" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/triage) -"Km" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"Kn" = (/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Ko" = (/obj/machinery/firealarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"Kp" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 4},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Kq" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 10},/obj/machinery/light{dir = 1},/obj/machinery/vending/wardrobe/atmosdrobe,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"Kr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva) -"Ks" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"Kt" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/backup_implanter{pixel_y = 9},/obj/item/weapon/backup_implanter{pixel_y = 2},/obj/item/weapon/backup_implanter{pixel_y = -5},/obj/item/weapon/backup_implanter{pixel_y = -12},/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"Ku" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"Kv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"Kw" = (/obj/structure/closet/secure_closet/medical2,/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"Kx" = (/obj/structure/table/woodentable,/obj/item/clothing/head/that{pixel_x = 4; pixel_y = 6},/obj/item/weapon/tool/screwdriver,/obj/item/weapon/reagent_containers/food/drinks/shaker{pixel_x = -7; pixel_y = 11},/obj/item/weapon/flame/lighter/zippo{pixel_x = 2},/obj/item/clothing/mask/smokable/cigarette/cigar/cohiba,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"Ky" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"Kz" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "d2_starmaint_interior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/access_button{command = "cycle_interior"; dir = 8; frequency = 1379; master_tag = "d2_starmaint_airlock"; name = "interior access button"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck2/starboardsolars) -"KA" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"KB" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"KD" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"KE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) -"KG" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = 24},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"KH" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"KI" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/engineering/storage) -"KJ" = (/obj/effect/catwalk_plated,/turf/simulated/floor,/area/stellardelight/deck2/starboard) -"KK" = (/turf/simulated/wall/bay/r_wall/green,/area/hydroponics) -"KL" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portfore) -"KM" = (/obj/machinery/the_singularitygen/tesla{anchored = 1},/turf/simulated/floor/airless,/area/engineering/engine_room) -"KN" = (/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"KP" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/airless,/area/engineering/engine_room) -"KQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/table/rack,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"KR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"KS" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#ffffff"; name = "Medbay Foyer"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/triage) -"KT" = (/obj/machinery/vending/medical,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"KU" = (/obj/machinery/vending/coffee,/obj/structure/sign/poster{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) -"KV" = (/obj/structure/table/glass,/obj/machinery/recharger,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"KW" = (/obj/machinery/alarm/angled{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"KX" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage) -"KY" = (/obj/structure/table/reinforced,/obj/machinery/alarm/angled,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/medbay{dir = 8},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"La" = (/obj/machinery/light,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"Lb" = (/obj/structure/table/wooden_reinforced,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) -"Lc" = (/obj/structure/table/reinforced,/obj/item/device/floor_painter,/obj/item/device/t_scanner,/obj/item/device/multitool{pixel_x = 5},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) -"Ld" = (/obj/item/modular_computer/console/preset/medical{dir = 4},/obj/effect/floor_decal/milspec/color/white/half{dir = 6},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"Le" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Lf" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"Lg" = (/obj/structure/cable/orange{icon_state = "2-8"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Lh" = (/obj/machinery/computer/operating,/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"Li" = (/obj/machinery/floodlight,/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/plating,/area/engineering/storage) -"Lk" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Ll" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"Lm" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Ln" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; name = "Chemistry Cleaner"},/obj/item/weapon/hand_labeler,/obj/item/weapon/packageWrap,/obj/item/device/mass_spectrometer/adv,/obj/item/device/mass_spectrometer/adv,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"Lp" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) -"Lq" = (/obj/machinery/computer/security/telescreen/entertainment{desc = "Look's like it's set to the info station... I wonder what else is on?"; pixel_x = -32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"Lr" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"Ls" = (/obj/machinery/alarm/angled,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Lt" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/nifsofts_engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) -"Lu" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/window/northright{dir = 2; name = "Cargo Ordering"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/monotile,/area/quartermaster/storage) -"Lv" = (/obj/structure/bed/chair,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"Lw" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva) -"Lx" = (/obj/structure/flora/pottedplant/orientaltree,/obj/effect/floor_decal/milspec/color/orange/corner{dir = 8},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"Ly" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"Lz" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) -"LB" = (/obj/machinery/power/solar_control{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"LC" = (/obj/machinery/computer/crew{dir = 8},/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"LD" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 1},/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/electrical,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) -"LE" = (/turf/simulated/wall/bay/r_wall/steel,/area/quartermaster/storage) -"LF" = (/obj/structure/table/standard,/obj/item/weapon/packageWrap,/obj/fiftyspawner/cardboard,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"LG" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) -"LH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"LI" = (/turf/simulated/wall/bay/orange,/area/engineering/engineering_monitoring) -"LK" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"LL" = (/obj/machinery/door/window/brigdoor/northleft{name = "Bar"; req_access = list(25)},/obj/machinery/light{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"LM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/obj/effect/map_helper/airlock/door/simple,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/portescape) -"LN" = (/obj/structure/bed/chair/comfy{dir = 1},/obj/machinery/firealarm/angled{dir = 8},/obj/effect/landmark/start/bartender,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"LO" = (/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/hydroponics) -"LP" = (/obj/structure/table/woodentable,/obj/machinery/light/floortube{dir = 1; pixel_y = 6},/obj/machinery/camera/network/civilian,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 4},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 2; pixel_y = 7},/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"LQ" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"LR" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"LS" = (/mob/living/simple_mob/animal/passive/chicken,/turf/simulated/floor/grass,/area/hydroponics) -"LT" = (/obj/machinery/disposal/wall{dir = 8},/obj/structure/disposalpipe/trunk{dir = 2},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"LU" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{name = "Distro Loop Drain"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) -"LV" = (/obj/structure/table/glass,/obj/structure/sign/department/operational{pixel_x = 32},/obj/random/medical,/obj/random/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"LW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) -"LX" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/conveyor_switch/oneway{id = "cargounload"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"LY" = (/turf/simulated/wall/bay/brown,/area/engineering/engine_eva) -"LZ" = (/obj/structure/cable/white{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"Ma" = (/obj/structure/table/standard,/obj/item/device/taperecorder,/obj/item/stack/cable_coil/random,/obj/item/weapon/hand_labeler,/obj/item/stack/cable_coil/random,/obj/item/device/floor_painter,/obj/machinery/camera/network/civilian,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/storage/art) -"Mb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"Mc" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"Md" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"Me" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Mf" = (/obj/machinery/atmospherics/omni/atmos_filter{name = "Phoron Filter"; tag_north = 2; tag_south = 1; tag_west = 6},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"Mg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) -"Mh" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/rdserver{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/protolathe{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/destructive_analyzer{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/rdconsole,/obj/item/weapon/circuitboard/autolathe{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/mechfab{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/prosthetics{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"Mi" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Mj" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"Mk" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"Ml" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftstarboard) -"Mm" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"Mn" = (/obj/machinery/beehive,/obj/effect/floor_decal/milspec/color/green/half{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) -"Mo" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"Mp" = (/obj/machinery/computer/arcade/battle,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"Mq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"Mr" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/storage) -"Ms" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"Mt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{icon_state = "1-8"},/obj/machinery/keycard_auth{pixel_x = 32},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = 9},/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) -"Mu" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/obj/structure/sign/atmos/n2{pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"Mv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"Mw" = (/obj/structure/table/steel_reinforced,/obj/item/device/radio/intercom{dir = 1},/obj/effect/floor_decal/milspec/color/blue/corner{dir = 8},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"Mx" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"My" = (/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/contraband,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"Mz" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/secure{name = "Secure Tech Storage"; req_access = list(19,23)},/turf/simulated/floor/tiled/techfloor/grid,/area/storage/tech) -"MA" = (/obj/structure/sign/directions/evac{pixel_x = 32; pixel_y = -6},/obj/structure/sign/directions/evac{dir = 8; pixel_x = 32},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/port) -"MB" = (/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage) -"MC" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 8},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) -"MD" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"ME" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/closet/emergsuit_wall{pixel_y = 29},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"MF" = (/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"MG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) -"MH" = (/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"MJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"MK" = (/obj/structure/bed/chair/backed_red{dir = 1},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"MM" = (/obj/structure/table/standard,/obj/machinery/recharger{pixel_y = 5},/obj/machinery/light/floortube{pixel_y = -4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"MN" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"MP" = (/obj/machinery/atmospherics/binary/pump/fuel{name = "Direct Injector"},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) -"MQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/machinery/alarm/angled{dir = 8},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"MR" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"MS" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"MT" = (/obj/machinery/power/grounding_rod,/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/airless,/area/engineering/engine_room) -"MU" = (/turf/simulated/wall/bay/green,/area/hydroponics) -"MV" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"MW" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/crew{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/card,/obj/item/weapon/circuitboard/communications{pixel_x = 3; pixel_y = -3},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"MX" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"MY" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 1; name = "Medical"; sortType = "Medical"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"MZ" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/lino,/area/crew_quarters/bar) -"Na" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Nb" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"Nc" = (/obj/structure/bed/chair/backed_red{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"Nd" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"Ne" = (/obj/structure/lattice,/obj/structure/disposalpipe/down{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/starboardfore) -"Nf" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "qmwindows"; name = "Privacy Shutters"},/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/qm) -"Ng" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled_shutter{id = "kitchenhallway"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"Nh" = (/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"Nj" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"Nk" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"Nl" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"Nm" = (/obj/structure/noticeboard{pixel_x = -32},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"Nn" = (/obj/machinery/computer/ship/engines,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"No" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) -"Np" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"Nq" = (/obj/machinery/suit_cycler/engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"Nr" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"Ns" = (/turf/simulated/floor/tiled,/area/storage/art) -"Nt" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/machinery/door/window/northleft{name = "Engineering Hardsuits"; req_access = list(11)},/obj/structure/window/reinforced{dir = 8},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/head/helmet/space/void/engineering,/obj/item/clothing/head/helmet/space/void/engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"Nu" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/button/remote/blast_door{dir = 1; id = "psychshutter"; name = "Shutter Control"; pixel_x = -15; pixel_y = -28},/obj/effect/landmark/start/psych,/turf/simulated/floor/carpet/blue,/area/medical/psych) -"Nv" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) -"Nw" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/sortjunction{dir = 8; name = "Kitchen/Botany"; sortType = "Kitchen/Botany"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"Nx" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"Ny" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline/red,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 24},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"Nz" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"NA" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "d2_starmaint_exterior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/access_button{command = "cycle_exterior"; dir = 4; frequency = 1379; master_tag = "d2_starmaint_airlock"; name = "exterior access button"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck2/starboardsolars) -"NB" = (/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/obj/item/clothing/gloves/yellow,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"NC" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"ND" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"NE" = (/obj/structure/reagent_dispensers/foam,/obj/machinery/light,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) -"NF" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"NG" = (/obj/structure/sign/directions/medical{dir = 1; pixel_x = 32; pixel_y = 35},/obj/structure/sign/directions/bridge{dir = 1; pixel_x = 32; pixel_y = 41},/obj/structure/sign/directions/engineering{dir = 4; pixel_x = 32; pixel_y = 23},/obj/structure/sign/directions/cargo{pixel_x = 32; pixel_y = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"NH" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/machinery/light{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"NJ" = (/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) -"NK" = (/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"NL" = (/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"NM" = (/obj/structure/closet/crate,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_io,/obj/item/weapon/smes_coil/super_io,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/plating,/area/engineering/storage) -"NN" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/storage) -"NO" = (/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 27},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24; pixel_y = 32},/turf/simulated/floor/wood,/area/quartermaster/qm) -"NP" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"NQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#ffffff"; name = "Medbay Foyer"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/triage) -"NS" = (/obj/structure/table/rack/steel,/obj/item/instrument/violin,/obj/item/instrument/piano_synth,/obj/item/instrument/recorder,/turf/simulated/floor/tiled/dark,/area/crew_quarters/recreation_area) -"NU" = (/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "0-2"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"NW" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/aftstarboard) -"NX" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"NY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"NZ" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"Oa" = (/obj/structure/table/standard,/obj/machinery/photocopier/faxmachine{department = "Quartermaster-Office"},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/quartermaster/qm) -"Ob" = (/obj/structure/table/gamblingtable,/obj/random/coin/sometimes,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) -"Od" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/fuelstorage) -"Og" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"Oh" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space) -"Oi" = (/obj/machinery/firealarm/angled,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"Oj" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"Ok" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) -"Ol" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/status_display{pixel_y = 32},/obj/structure/filingcabinet/medical,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"Om" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"On" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{id = "bar"; layer = 3.3; name = "Bar Shutters"},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"Oo" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/table/rack,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/engineering,/obj/random/maintenance,/obj/item/weapon/disk/nifsoft/compliance,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"Op" = (/obj/effect/floor_decal/industrial/loading{dir = 8},/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"Oq" = (/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 8},/obj/structure/cable/cyan{icon_state = "0-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/cyan{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) -"Or" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/full,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"Os" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) -"Ot" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"Ou" = (/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"Ov" = (/obj/machinery/atmospherics/binary/pump,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Ow" = (/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) -"Ox" = (/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 27},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"Oz" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"OA" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/status_display{pixel_y = 32},/obj/effect/landmark{name = "verminstart"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"OC" = (/obj/structure/closet/crate/bin{anchored = 1},/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"OD" = (/obj/machinery/camera/network/command{dir = 10},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) -"OE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"OF" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/engine_room) -"OG" = (/obj/machinery/oxygen_pump/anesthetic,/turf/simulated/wall/bay/white,/area/medical/surgery2) -"OH" = (/obj/machinery/atmospherics/binary/pump,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"OI" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"OJ" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) -"OK" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"OL" = (/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) -"OM" = (/obj/structure/foodcart,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) -"ON" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"OO" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/beakers{name = "box of measuring cups"; pixel_x = 2; pixel_y = 3; starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup = 7)},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"OP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/landmark/vines,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"OQ" = (/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"OR" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"OS" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"OT" = (/obj/effect/floor_decal/industrial/danger{dir = 8},/obj/machinery/requests_console/preset/atmos{pixel_y = 30},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"OU" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"OV" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"OW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 1; pixel_y = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"OX" = (/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -30},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"OY" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/effect/floor_decal/industrial/danger/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"OZ" = (/obj/structure/closet/toolcloset,/obj/item/weapon/pickaxe,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"Pb" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 6},/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"Pc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"Pd" = (/obj/structure/particle_accelerator/fuel_chamber{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) -"Pe" = (/obj/structure/table/woodentable,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"Pf" = (/obj/structure/sign/directions/evac{dir = 4; pixel_x = -32},/obj/structure/sign/directions/evac{pixel_x = -32; pixel_y = -6},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/starboard) -"Pg" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/table/standard,/obj/item/weapon/book/manual/cook_guide,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"Ph" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"Pi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"Pj" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Pk" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) -"Pl" = (/obj/structure/table/steel_reinforced,/obj/machinery/firealarm/angled{dir = 4},/obj/structure/flora/pottedplant/smallcactus{pixel_y = 14},/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) -"Pm" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"Pn" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled_shutter{dir = 4; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"Po" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) -"Pp" = (/obj/effect/landmark{name = "droppod_landing"},/turf/space,/area/space) -"Pq" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Pr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/table/glass,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"Ps" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/disposal/wall,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"Pt" = (/obj/machinery/alarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"Pu" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Pv" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#ffffff"; name = "Medbay Storage"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/cmostore) -"Pw" = (/obj/machinery/sparker{id = "castfireball"; pixel_x = 20},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop) -"Px" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "d2_portmaint_interior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/access_button{command = "cycle_interior"; dir = 4; frequency = 1379; master_tag = "d2_portmaint_airlock"; name = "interior access button"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck2/portsolars) -"Py" = (/obj/machinery/alarm/angled,/obj/machinery/vending/nifsoft_shop,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"Pz" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/medical/cryo) -"PA" = (/obj/structure/sign/deck2{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"PB" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage) -"PC" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"PD" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/wood,/area/quartermaster/qm) -"PE" = (/turf/simulated/wall/bay/white,/area/medical/reception) -"PF" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"PG" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port) -"PH" = (/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"PI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"PJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"PK" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals_central5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"PL" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/structure/sign/department/mail{pixel_x = -32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"PM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/item/weapon/folder/yellow,/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"PO" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"PP" = (/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) -"PQ" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) -"PR" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/bar) -"PS" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/conveyor{dir = 1; id = "cargounload"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"PT" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/table/rack,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/structure/cable/orange{icon_state = "4-8"},/obj/random/snack,/obj/random/coin/sometimes,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"PU" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"PV" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) -"PW" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 8},/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"PY" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/medical/cryo) -"PZ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Qa" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Qc" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"Qd" = (/obj/structure/sign/directions/evac{pixel_x = -32; pixel_y = -32},/obj/structure/disposalpipe/junction{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"Qe" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Qf" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"Qg" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) -"Qh" = (/obj/structure/flora/pottedplant/minitree,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"Qi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"Qj" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera/network/cargo{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Qk" = (/obj/machinery/computer/rcon{dir = 1},/obj/machinery/light/floortube{pixel_y = -6},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"Ql" = (/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/scanning_module,/obj/item/weapon/stock_parts/scanning_module,/obj/item/weapon/stock_parts/console_screen,/obj/item/device/pipe_painter,/obj/item/weapon/pipe_dispenser,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/table/steel,/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"Qm" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"Qn" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/milspec/color/orange/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"Qo" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) -"Qp" = (/obj/structure/table/glass,/obj/item/weapon/backup_implanter{pixel_y = 9},/obj/item/weapon/backup_implanter{pixel_y = 2},/obj/item/weapon/backup_implanter{pixel_y = -5},/obj/item/weapon/backup_implanter{pixel_y = -12},/obj/structure/sign/department/operational{pixel_x = -32},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"Qq" = (/obj/structure/bed/chair,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"Qr" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 6},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) -"Qt" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"Qu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/green,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"Qv" = (/obj/structure/particle_accelerator/particle_emitter/left{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) -"Qw" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Qx" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"Qy" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/turf/simulated/floor/tiled/white,/area/medical/surgery) -"Qz" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Particle Accelerator"; req_access = list(10); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_room) -"QA" = (/obj/structure/closet/crate/solar,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"QB" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "psychshutter"; name = "Privacy Shutter"},/obj/structure/low_wall/bay/reinforced/white,/turf/simulated/floor,/area/medical/psych) -"QC" = (/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"QD" = (/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"QE" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"QG" = (/obj/machinery/appliance/cooker/oven,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"QH" = (/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"QI" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"QJ" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = -32; pixel_y = -32},/obj/structure/table/bench/steel,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"QK" = (/obj/machinery/atmospherics/omni/mixer{name = "Air Mixer"; tag_east = 1; tag_east_con = 0.79; tag_north = 1; tag_north_con = 0.21; tag_south = 2; tag_south_con = null; tag_west_con = null},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"QN" = (/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -27},/obj/item/bodybag/cryobag{pixel_x = -2; pixel_y = -2},/obj/structure/table/reinforced,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag{pixel_x = 2; pixel_y = 2},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"QO" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/machinery/meter,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"QP" = (/turf/simulated/wall/bay/white,/area/medical/cmostore) -"QQ" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"QR" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"QS" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"QT" = (/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{name = "Engineering Reception Desk"; req_access = list(10)},/obj/item/weapon/folder/yellow,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/engineering_monitoring) -"QU" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engineering_monitoring) -"QV" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; door_color = "#9c9c9c"; name = "Commons"; stripe_color = "#89bd66"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area) -"QW" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"QX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"QY" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) -"QZ" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 4},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"Ra" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/storage/tech) -"Rb" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{icon_state = "0-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) -"Rc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/eastright{dir = 8; name = "Chemistry"},/obj/machinery/door/window/westleft{dir = 4; name = "Chemistry"; req_one_access = list(33)},/obj/machinery/door/blast/shutters{dir = 8; id = "chemistry"; layer = 3.1; name = "Chemistry Shutters"},/obj/structure/table/reinforced,/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"Rd" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 4; id = "bridgelockdown"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#323d80"; name = "Bridge"; req_access = list(19); req_one_access = list(19); stripe_color = "#f7d35c"},/turf/simulated/floor/tiled/steel_ridged,/area/bridge) -"Re" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Engineering Monitoring Room"; req_access = null; req_one_access = list(11,24); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engineering_monitoring) -"Rf" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/book/manual/sd_guide,/obj/effect/floor_decal/milspec/color/blue/half{dir = 6},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"Rh" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/red,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"Ri" = (/obj/structure/table/bench/steel,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"Rj" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Rk" = (/obj/structure/sign/department/eng{pixel_x = 32},/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"Rl" = (/obj/machinery/atmospherics/portables_connector/fuel,/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) -"Rm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"Rn" = (/obj/structure/sink{dir = 8; pixel_x = -12},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"Ro" = (/obj/machinery/vending/wardrobe/hydrobe,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) -"Rp" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) -"Rq" = (/turf/simulated/open,/area/stellardelight/deck2/fore) -"Rr" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"Rs" = (/obj/machinery/power/emitter{anchored = 1; icon_state = "emitter1"; state = 1},/obj/structure/cable/cyan{icon_state = "0-4"},/turf/simulated/floor/airless,/area/engineering/engine_room) -"Ru" = (/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/starboard) -"Rv" = (/obj/structure/sign/poster{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"Rw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "O2 Production"; req_access = list(24); stripe_color = "#2ebfbd"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/o2production) -"Rx" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Ry" = (/obj/machinery/particle_accelerator/control_box,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) -"Rz" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) -"RA" = (/obj/machinery/smartfridge/drying_rack,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) -"RD" = (/obj/structure/sign/directions/kitchen{dir = 1; pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"RE" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) -"RF" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"RG" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) -"RH" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"RI" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start/chemist,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"RJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) -"RK" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"RL" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"RM" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"RN" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"RO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/mob/living/simple_mob/animal/passive/mouse/jerboa/leggy,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"RP" = (/obj/structure/table/reinforced,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) -"RQ" = (/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/body_scanconsole{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"RR" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"RS" = (/obj/structure/cable/blue{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"RT" = (/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"RU" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) -"RV" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) -"RW" = (/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/wood,/area/medical/psych) -"RX" = (/obj/structure/table/standard,/obj/item/device/camera_film{pixel_x = 4; pixel_y = 11},/obj/item/device/camera_film{pixel_x = -3; pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) -"RY" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_room) -"Sb" = (/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) -"Sc" = (/obj/machinery/atmospherics/binary/pump/fuel{name = "Tanks To Engines"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) -"Sd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) -"Se" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/simulated/floor/plating,/area/engineering/storage) -"Sf" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Sg" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"Sh" = (/obj/machinery/disposal/wall{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"Sj" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Sk" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Sm" = (/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"Sn" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"So" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_y = 32},/obj/machinery/requests_console/preset/bridge{pixel_x = -30},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/landmark/start/commandsecretary,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"Sp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"Sq" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/qm,/turf/simulated/floor/wood,/area/quartermaster/qm) -"Sr" = (/obj/effect/floor_decal/milspec/color/green/corner{dir = 8},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Ss" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"St" = (/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) -"Su" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) -"Sv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"Sw" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "engine_airlock"; name = "exterior access button"; pixel_y = 32; req_access = list(10,11)},/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "engine_exterior"; locked = 1; name = "Engine Airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_room) -"Sx" = (/turf/simulated/wall/bay/steel,/area/crew_quarters/bar) -"Sy" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "Hydroponics"; req_one_access = list(35,28); stripe_color = "#00ab03"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/hydroponics) -"Sz" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/o2production) -"SA" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/substation/engineering) -"SD" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"SE" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portfore) -"SF" = (/obj/machinery/computer/arcade/clawmachine,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"SG" = (/obj/structure/table/rack/steel,/obj/item/device/slime_scanner,/obj/item/device/sleevemate,/obj/item/device/robotanalyzer,/obj/item/device/reagent_scanner,/obj/item/device/healthanalyzer,/obj/item/device/geiger,/obj/item/device/analyzer/plant_analyzer,/obj/item/device/analyzer,/obj/item/device/t_scanner,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"SH" = (/obj/machinery/button/remote/blast_door{dir = 8; id = "privacyshutters"; name = "Shutter Control"; pixel_x = 25},/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) -"SI" = (/obj/item/weapon/stool/padded{dir = 8},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"SK" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/atmos/monitoring) -"SL" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) -"SM" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) -"SN" = (/obj/structure/closet/wardrobe/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"SO" = (/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"SP" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"SQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"SR" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) -"SS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"ST" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) -"SU" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"SV" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/sortjunction{dir = 2; name = "Bridge"; sortType = "Bridge"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"SW" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"SX" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"SY" = (/obj/machinery/light_switch{dir = 8; pixel_x = 26; pixel_y = -11},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) -"SZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Ta" = (/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"Tc" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"Td" = (/obj/structure/sign/directions/evac{dir = 10; pixel_x = 32},/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/milspec/color/orange/corner,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"Te" = (/obj/machinery/power/smes/buildable/offmap_spawn/empty{RCon_tag = "Solar Array - Port"},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"Tf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Tg" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/blue{icon_state = "0-8"},/obj/structure/cable/blue{icon_state = "16-0"},/obj/structure/disposalpipe/up{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"Th" = (/obj/machinery/computer/station_alert,/obj/machinery/light/floortube{dir = 1; pixel_y = 6},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"Ti" = (/obj/structure/closet/emcloset,/obj/machinery/status_display/supply_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"Tj" = (/obj/machinery/vending/loadout/costume,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"Tk" = (/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"Tl" = (/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Tm" = (/obj/structure/table/rack,/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"Tn" = (/obj/machinery/chem_master,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"To" = (/turf/simulated/wall/bay/orange,/area/engineering/workshop) -"Tp" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood,/area/medical/psych) -"Tq" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{name = "Waste to Filter"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) -"Tr" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"Ts" = (/turf/simulated/shuttle/wall,/area/stellardelight/deck2/starboardescape) -"Tt" = (/obj/effect/shuttle_landmark/premade/sd/deck2/port,/turf/space,/area/space) -"Tu" = (/obj/machinery/atmospherics/binary/pump/fuel{dir = 8; name = "Tank Refuel"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) -"Tv" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) -"Tw" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) -"Tx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"TA" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"TB" = (/obj/structure/table/standard,/obj/item/weapon/storage/box{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box,/obj/item/weapon/tape_roll{pixel_x = 4; pixel_y = 4},/obj/item/weapon/tape_roll,/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/storage/art) -"TC" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"TD" = (/obj/structure/table/steel,/obj/item/weapon/module/power_control,/obj/item/weapon/airlock_electronics,/obj/item/weapon/module/power_control,/obj/item/weapon/airlock_electronics,/obj/item/device/aicard,/obj/item/weapon/aiModule/reset,/obj/structure/cable/orange{icon_state = "1-4"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"TF" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"TG" = (/obj/structure/table/reinforced,/obj/machinery/firealarm/angled,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"TH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"TI" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"TJ" = (/obj/machinery/computer/guestpass{pixel_y = 24},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"TK" = (/obj/structure/closet/secure_closet/cargotech,/obj/item/weapon/stamp/cargo,/obj/item/weapon/storage/backpack/dufflebag,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"TL" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/bodyscanner{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"TM" = (/obj/effect/floor_decal/milspec/color/black/corner,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"TN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"TO" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"TP" = (/obj/structure/flora/pottedplant/orientaltree,/obj/effect/floor_decal/milspec/color/white/corner,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"TQ" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape) -"TR" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"TS" = (/obj/structure/flora/pottedplant/tall,/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"TU" = (/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/turf/simulated/floor/airless,/area/crew_quarters/bar) -"TV" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardfore) -"TW" = (/obj/structure/sign/department/atmos{pixel_x = -32},/obj/effect/floor_decal/milspec/color/orange/half{dir = 10},/obj/structure/flora/pottedplant/smalltree,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"TX" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"TY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"TZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"Ua" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"Ub" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"Uc" = (/turf/simulated/floor,/area/stellardelight/deck2/aftstarboard) -"Ud" = (/obj/structure/table/glass,/obj/machinery/door/window/southright{dir = 1; req_access = list(5)},/obj/structure/cable/white{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"Ue" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) -"Uf" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/full,/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/structure/cable/orange{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Ug" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"Uh" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Ui" = (/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Uj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"Uk" = (/obj/machinery/pipedispenser,/obj/machinery/light{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Ul" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/disposalpipe/segment,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Um" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"Un" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; name = "Ports to Waste"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"Uo" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics) -"Up" = (/obj/structure/cable/orange{icon_state = "2-8"},/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Uq" = (/obj/machinery/vending/medical,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"Ur" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Us" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Ut" = (/turf/simulated/floor/glass/reinforced,/area/crew_quarters/recreation_area) -"Uu" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{id = "privacyshutters"; name = "Privacy Shutter"},/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/stellardelight/deck2/briefingroom) -"Uv" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"Ux" = (/obj/structure/bed/chair/backed_red{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"Uy" = (/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark{name = "lightsout"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"Uz" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 2; name = "Engineering"; sortType = "Engineering"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) -"UA" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"UB" = (/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Engineering"; output_attempt = 0},/obj/structure/cable/orange{icon_state = "0-2"},/obj/structure/cable/orange,/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering) -"UC" = (/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"UD" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"UE" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) -"UF" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/airless,/area/engineering/engine_room) -"UG" = (/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/fuelstorage) -"UH" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"UI" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/combustionworkshop) -"UJ" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"UK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) -"UL" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"UM" = (/obj/effect/floor_decal/emblem/stellardelight,/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"UN" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/storage/art) -"UO" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/structure/plasticflaps,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"UQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 1; pixel_y = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"UR" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port) -"US" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/sign/directions/bar{dir = 1; pixel_x = -32},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"UT" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"UU" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"UV" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/body_designer{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/resleeving_control{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/transhuman_clonepod{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/transhuman_synthprinter{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"UX" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) -"UY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"UZ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Vb" = (/turf/simulated/wall/bay/white,/area/stellardelight/deck2/triage) -"Vc" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-2"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Vd" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/kitchen) -"Ve" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"Vf" = (/turf/simulated/floor/airless,/area/engineering/engine_room) -"Vg" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) -"Vh" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#9c9c9c"; fill_color = "#5c5c5c"; name = "Bar Backroom"; req_access = list(25); stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/bar) -"Vi" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Vj" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#a6753d"; name = "Cargo Office"; req_access = list(31); stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/quartermaster/storage) -"Vk" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"Vl" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "Trash"; sortType = "Trash"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Vm" = (/turf/simulated/floor/airless,/area/stellardelight/deck2/fuelstorage) -"Vo" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/workshop) -"Vp" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/item/weapon/module/power_control,/obj/item/weapon/cell{maxcharge = 2000},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Vq" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"Vr" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 4},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) -"Vt" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"Vu" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"Vv" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/snacks/mint,/obj/machinery/light/floortube{pixel_y = -6},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3; pixel_y = 13},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -1; pixel_y = 10},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"Vw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) -"Vx" = (/obj/machinery/power/grounding_rod,/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/airless,/area/engineering/engine_room) -"Vy" = (/obj/machinery/disposal/wall{dir = 1},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"Vz" = (/obj/structure/window/reinforced{dir = 1},/obj/effect/landmark/start/botanist,/turf/simulated/floor/grass,/area/hydroponics) -"VA" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"VB" = (/obj/machinery/atmospherics/unary/outlet_injector{frequency = 1438; id = "cooling_in"; name = "Coolant Injector"; pixel_y = 1; power_rating = 30000; use_power = 1; volume_rate = 700},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop) -"VC" = (/obj/effect/floor_decal/spline/plain{dir = 9},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"VD" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) -"VE" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"VF" = (/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#323d80"; name = "Briefing Room"; req_access = list(19); req_one_access = list(19); stripe_color = "#f7d35c"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/briefingroom) -"VG" = (/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"VH" = (/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) -"VI" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"VJ" = (/turf/simulated/floor/airless,/area/engineering/engine_eva) -"VK" = (/obj/structure/table/standard,/obj/item/stack/nanopaste,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"VL" = (/obj/structure/closet/chefcloset,/obj/item/glass_jar,/obj/item/device/retail_scanner/civilian,/obj/item/weapon/soap/nanotrasen,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/tool/wrench,/obj/structure/noticeboard{dir = 1; pixel_y = -32},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"VM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"VN" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/central) -"VO" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"VP" = (/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/port) -"VS" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/toxin{pixel_x = -9; pixel_y = 10},/obj/item/weapon/storage/firstaid/toxin{pixel_x = -9; pixel_y = 1},/obj/item/weapon/storage/firstaid/o2{pixel_x = 6; pixel_y = 10},/obj/item/weapon/storage/firstaid/o2{pixel_x = 6; pixel_y = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"VT" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape) -"VU" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/gadget,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) -"VV" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"VW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/green{dir = 1},/obj/machinery/meter,/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"VX" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/vacuum{pixel_x = 32},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"VY" = (/obj/machinery/computer/timeclock/premade/north,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"VZ" = (/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"Wa" = (/obj/structure/kitchenspike,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) -"Wb" = (/obj/structure/lattice,/turf/space,/area/space) -"Wc" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/machinery/computer/stockexchange{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"We" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"Wf" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"Wg" = (/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"Wh" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/tool/wrench,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) -"Wi" = (/obj/machinery/computer/crew,/obj/effect/floor_decal/milspec/color/white/half,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"Wj" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) -"Wk" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Wl" = (/obj/machinery/vending/assist,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/storage/primary) -"Wm" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"Wn" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"Wo" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) -"Wp" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) -"Wq" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 4},/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) -"Wr" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) -"Ws" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) -"Wu" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"Wv" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"Ww" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"Wx" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"Wy" = (/obj/structure/sign/painting/public{pixel_x = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"Wz" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/white,/turf/simulated/floor,/area/medical/reception) -"WA" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#e6ab22"; fill_color = "#877242"; name = "Atmospherics"; req_access = list(24); stripe_color = "#2ebfbd"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/monitoring) -"WB" = (/obj/structure/table/glass,/mob/living/simple_mob/animal/passive/cat/jones,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"WC" = (/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"WE" = (/obj/machinery/firealarm/angled{dir = 4},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"WF" = (/obj/structure/sign/directions/medical{dir = 4; pixel_x = -32; pixel_y = 35},/obj/structure/sign/directions/cargo{pixel_x = -32; pixel_y = 29},/obj/structure/sign/directions/bridge{dir = 1; pixel_x = -32; pixel_y = 41},/obj/structure/sign/directions/bar{dir = 1; pixel_x = -32; pixel_y = 47},/obj/structure/sign/directions/engineering/atmospherics{dir = 10; pixel_x = -32; pixel_y = 23},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"WG" = (/obj/structure/railing/grey,/turf/simulated/open,/area/quartermaster/storage) -"WH" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"WI" = (/obj/structure/bed/chair/backed_red{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"WJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"WK" = (/obj/structure/closet/emcloset,/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"WL" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"WM" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"WN" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/grass,/area/hydroponics) -"WO" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"WP" = (/turf/simulated/shuttle/wall,/area/stellardelight/deck2/portescape) -"WQ" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/camera/network/medbay{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"WR" = (/obj/structure/table/wooden_reinforced,/obj/random/paicard,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"WS" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"WT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) -"WU" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#e6ab22"; fill_color = "#877242"; name = "Fuel Storage"; req_access = list(24); stripe_color = "#2ebfbd"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/fuelstorage) -"WV" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"WW" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"WX" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start/captain,/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) -"WY" = (/obj/structure/table/glass,/obj/random/medical{pixel_x = -4; pixel_y = 5},/obj/machinery/camera/network/medbay{dir = 8},/obj/machinery/injector_maker{pixel_x = 29},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"WZ" = (/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"Xa" = (/turf/simulated/wall/bay/r_wall/white,/area/medical/chemistry) -"Xb" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"Xc" = (/obj/machinery/shipsensors{dir = 1},/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/turf/simulated/floor/airless,/area/crew_quarters/bar) -"Xd" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"Xe" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/landmark/vines,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Xf" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar,/obj/item/clothing/gloves/black,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) -"Xg" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start/chemist,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"Xh" = (/obj/effect/floor_decal/industrial/loading{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"Xi" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Xj" = (/obj/structure/closet/crate,/obj/item/stack/material/phoron{amount = 25},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/yellow{icon_state = "2-8"},/turf/simulated/floor/plating,/area/engineering/storage) -"Xk" = (/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/kitchen) -"Xl" = (/obj/machinery/firealarm/angled,/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Xm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"Xo" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/airless,/area/engineering/engine_room) -"Xp" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) -"Xq" = (/obj/item/weapon/stool/padded{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"Xr" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"Xs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/blue{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"Xt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/table/glass,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"Xu" = (/obj/machinery/atmospherics/unary/freezer{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring) -"Xv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) -"Xx" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/crew_quarters/recreation_area) -"Xy" = (/turf/simulated/floor/tiled/techmaint,/area/storage/primary) -"Xz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"XB" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/transhuman_resleever{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/circuit_imprinter{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/aiupload{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/borgupload{pixel_x = 3; pixel_y = -3},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) -"XC" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"XD" = (/obj/structure/easel,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/storage/art) -"XE" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"XF" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/adv{name = "human repair kit"; pixel_x = -9; pixel_y = 9},/obj/item/weapon/storage/firstaid/adv{pixel_x = -9; pixel_y = 1},/obj/item/weapon/storage/firstaid/fire{pixel_x = 6; pixel_y = 9},/obj/item/weapon/storage/firstaid/fire{pixel_x = 6; pixel_y = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"XG" = (/obj/machinery/atmospherics/binary/algae_farm/filled{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"XH" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Engineering Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering) -"XI" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"XJ" = (/obj/machinery/autolathe,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"XK" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) -"XL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftstarboard) -"XM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{dir = 8; frequency = 1380; id_tag = "starboard_escape_berth"; pixel_x = 24},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard) -"XN" = (/obj/machinery/computer/supplycomp{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/camera/network/cargo{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) -"XO" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"XP" = (/obj/machinery/status_display{pixel_y = 32},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"XQ" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"XR" = (/obj/machinery/suit_cycler/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"XS" = (/obj/effect/floor_decal/industrial/danger/corner{dir = 4},/obj/machinery/computer/security/engineering,/obj/structure/noticeboard{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"XT" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) -"XU" = (/obj/item/weapon/stool/padded{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"XV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"XW" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/orange,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) -"XX" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/table/standard,/obj/item/weapon/cartridge/quartermaster{pixel_x = -4; pixel_y = 7},/obj/item/weapon/cartridge/quartermaster{pixel_x = 6; pixel_y = 5},/obj/item/weapon/cartridge/quartermaster,/turf/simulated/floor/wood,/area/quartermaster/qm) -"XY" = (/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"XZ" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/anomaly_spectroscopy,/obj/item/weapon/book/manual/anomaly_testing,/obj/item/weapon/book/manual/materials_chemistry_analysis,/obj/item/weapon/book/manual/resleeving,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood,/area/medical/psych) -"Ya" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{name = "Air to Distro"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) -"Yb" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"Yc" = (/obj/structure/musician/piano{dir = 4},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"Yd" = (/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"Ye" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Yf" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/barbackroom) -"Yg" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/bay/brown,/area/quartermaster/storage) -"Yh" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) -"Yi" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/barbackroom) -"Yj" = (/obj/structure/table/standard,/obj/item/device/retail_scanner/civilian,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"Yk" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) -"Yl" = (/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"Ym" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"Yn" = (/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; dir = 4; id = "chemistry"; name = "Chemistry Shutters"; pixel_x = -24; pixel_y = -30; req_access = list(5)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"Yo" = (/obj/machinery/atmospherics/unary/heater{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring) -"Yp" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"Yq" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/engineering/engine_room) -"Yr" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) -"Ys" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/full,/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) -"Yu" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/door/blast/angled_shutter{dir = 4; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"Yv" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/obj/structure/sign/atmos/n2o{pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) -"Yw" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"Yx" = (/obj/structure/sign/deck2{pixel_x = -32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"Yy" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Yz" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"YA" = (/obj/structure/grille,/obj/structure/shuttle/window,/turf/simulated/floor,/area/stellardelight/deck2/starboardescape) -"YB" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardaft) -"YC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/landmark/start/chef,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"YD" = (/obj/structure/noticeboard{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"YE" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) -"YF" = (/obj/structure/sign/painting/public{pixel_y = -30},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/storage/art) -"YG" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) -"YH" = (/obj/machinery/beehive,/obj/machinery/camera/network/civilian{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) -"YI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) -"YJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) -"YK" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/poster{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) -"YL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) -"YM" = (/obj/structure/table/woodentable,/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) -"YN" = (/obj/item/weapon/stool/padded{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/civilian{dir = 5},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) -"YO" = (/obj/structure/table/gamblingtable,/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) -"YP" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"YQ" = (/obj/random/vendorfood,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) -"YR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) -"YS" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"YT" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"YU" = (/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"YV" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"YW" = (/obj/random/vendordrink,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) -"YX" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) -"YY" = (/turf/simulated/wall/bay/brown,/area/quartermaster/qm) -"YZ" = (/obj/machinery/light/small{dir = 1},/obj/structure/ladder/up,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) -"Za" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) -"Zb" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; fill_color = "#ffffff"; name = "Kitchen Cold Room"; req_access = list(28)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/kitchen) -"Zc" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{frequency = 1380; id_tag = "port_escape_pod"; pixel_y = 24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape) -"Zd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) -"Ze" = (/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"Zf" = (/obj/machinery/power/apc/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/orange{icon_state = "0-4"},/obj/structure/table/reinforced,/obj/item/device/radio/off{pixel_y = 6},/obj/item/device/radio/off{pixel_x = -6; pixel_y = 4},/obj/item/device/radio/off{pixel_x = 6; pixel_y = 4},/obj/item/device/radio/off,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) -"Zh" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) -"Zi" = (/obj/structure/table/rack,/obj/item/clothing/suit/radiation,/obj/item/clothing/head/radiation,/obj/item/bodybag/cryobag{pixel_x = 1; pixel_y = 1},/obj/item/weapon/storage/toolbox/emergency{pixel_x = 2; pixel_y = 1},/obj/item/weapon/storage/box/lights/mixed{pixel_y = 4},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -2},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"Zj" = (/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"Zk" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) -"Zl" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "kitchenlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/kitchen) -"Zm" = (/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Zo" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Zp" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Zq" = (/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"Zr" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"Zs" = (/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) -"Zt" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) -"Zu" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) -"Zv" = (/obj/structure/closet/walllocker_double/medical/north,/obj/item/weapon/storage/box/rxglasses{pixel_x = 7; pixel_y = 7},/obj/item/weapon/storage/box/rxglasses,/obj/item/device/glasses_kit,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"Zw" = (/obj/machinery/camera/network/medbay{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) -"Zx" = (/obj/item/modular_computer/console/preset/engineering{dir = 8},/obj/effect/floor_decal/milspec/color/orange/half{dir = 10},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) -"Zy" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/kitchen) -"ZA" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) -"ZC" = (/obj/item/weapon/stool/padded{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) -"ZD" = (/obj/structure/table/reinforced,/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) -"ZE" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) -"ZF" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 1; pixel_y = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) -"ZG" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) -"ZH" = (/obj/machinery/computer/guestpass{dir = 8; pixel_x = 25},/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) -"ZI" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"ZJ" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) -"ZK" = (/obj/effect/floor_decal/steeldecal/steel_decals10,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) -"ZL" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) -"ZM" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) -"ZN" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/vending/engivend,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) -"ZO" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_coffee/full{dir = 1},/obj/item/device/radio/intercom{pixel_y = -24},/obj/machinery/light/small,/turf/simulated/floor/lino,/area/crew_quarters/bar) -"ZP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) -"ZQ" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) -"ZR" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/machinery/door/window/westright{name = "Engineering Reception Desk"; req_access = list(10)},/obj/item/weapon/pen/blue{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen/red,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/engineering_monitoring) -"ZS" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"ZT" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/button/remote/blast_door{id = "atmoswindowlockdown"; name = "Window Lockdown"; pixel_y = 56},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"ZU" = (/obj/machinery/computer/ship/sensors,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) -"ZV" = (/turf/simulated/floor,/area/stellardelight/deck2/aftport) -"ZW" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/camera/network/civilian{dir = 5},/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics) -"ZX" = (/obj/machinery/power/smes/buildable/offmap_spawn/empty{RCon_tag = "Solar Array - Starboard"},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) -"ZY" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/conveyor{id = "cargoload"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) -"ZZ" = (/obj/structure/bed/chair/sofa/corp/corner{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) - -(1,1,1) = {" -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLbDNLWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbseWnNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLseyKjxjxlZJhJhJhNLbDJhJhJhJhJhJhJhJhJhJhJhbDNLJhJhJhsejxyKjxjxlZNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLsenPNLWbJhDilZWbNLNLdkJhJhJhJhWbJhWbJhJhJhJhdkNLNLWbsenPJhWbNLNLdkNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLsenPNLWbWbJhJhDijxjxjxdMJhJhJhWbTUXcTUWbJhJhJhDijxtjjxnPJhJhWbWbNLdkNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLCZnPNLWbWbJhJhJhWbNLNLHQiroJoJoJHQoJoJoJHQoJoJoJHQHQdkNLWbJhJhJhWbWbDijxurNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLdkNLJhJhWbJhJhJhXkXkXkHQpnGnwGGnNkGnLPGnbOGnwGGnLTHQPRoJHQJhJhJhWbJhJhNLdkNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLdkJhJhXkXkXkZlZlXkiCiFYDQSMKMKMKYUMKzwMKYUMKMKzwaspWPemJHQHQYfYfYiYiJhJhdkNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbdkJhXkXkOAnCQGgrcWTaPnEVQSYUYUYUYUYUJloBlUfififiuXsPbpsPvgSxrGUCcBYiYiJhdkWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkXkXkrndmTaBmTagjTaPnEVQSNcGnicYUNcGnwqasVCdwdwdwdwdwdwAxSxbVTYUCIJYiiQdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhVdXkFmoOYCBnAkOOpzTaPnEVBJNcCYlsqeUxCIwqasXUOnBVOnOnOnOnLLSxLNOgyMKxYiiQTVJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLhOZykXkiCElzyfPgVvBoGBYuZCFbdUGnoFYUxDiTWIRrsrrdpyhYpypywVGXVhKGFBLyEzYiYZTVBuiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLKLMdoDGiYpIWhZIWIWIWcwzJnUFMTCTCTCTCTCPcTCLRAYXqANfpfpfpfpaKuZSxRnUCNYgPcQdegkOoiQiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhbDJhhOMdUbchwLuWVLlrYjrrpITaZLPnEVDIYUYUaYYUfBkubyYUqSsLmnMZDjZOnQHiSxFCJTYMpRYioGoGNbhbBuJhbDJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhseyKjxSEQxchchchchhliNBjhlGyGyNgHJSxSxrVrVbxSxiXSxFJSxSxrVrVSxSxSxSxSxSxflflflflaNaNaNaNrieAjxyZlZJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLdkNLWbKLGvchBkDDgQhlYKmlMUZoGjglRDpojrVGlTVGVGUQJeOWLsEElTVGXlpoVYaCiyFAflAeCVFRxIVUmdaNWOiQWbNLdkNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLdkNLJhaTGvchWaavcuhlgGBHjoNDjCaBKHtdKHKHKHKHKHkSDWpGKHKHKHKHKHAIKHKHmVZrHWRmWmWmWmyniVaNWOiQJhNLdkNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLdkJhJhaTGvchvhACVHhlbqBHjoNDXCTMzzjFzzHOCtzzzzPKJLcozzzzCtHOzzjFzzjPXCsjflWZtWHVHVeMTjHWWOBuJhJhdkNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhTtJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLdkJhJhaTGvchWaDPLWZbYJjMajauXCHRntntntntntntntJRntBDntntntntntntntTlrQFUrXCFeYtJeYrzCvHWWOBuJhJhdkNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhobJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLdkJhJhKLGvchOMBFHahlufBHjoNDXCofntJiMpGLWCmtycxABSudycfEYlXPSFfLntpHxThBflwttWHVHVRmKjHWWOBuJhJhdkNLNLNLJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhPpJhJhNLNLNLdkJhJhaTGvchhlhlhlhlbtYHMUSrXCcPntYNdYmtmtBpDlDSDlEpDlBpmtmtFymUnteXxTZrHWhTRKRKRKpVrIsDWOiQJhJhdkNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLArUTNLWbKLGvKKrOpNafMnDqRoMUzOXCyhntDecCmtmtoSUXUXYOUXUXiomtmtcCDOntGaxTvjflhPevevmGevDuaNWOiQWbNLhkWnNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLcTjxjxSEKDKKsVyvdQojIssEMUQeXCaHntQZiOmtmtoSUXBpBKBpUXiomtmtiOkpntaPxTpZflflflflflflflaNFZeAjxjxgiNLNLNLJhJhPpJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhsejxjxnPNLJhKLGvKKZWUoDoifhhbcjoQeXCXekEHomtmtmtoSUXObFwUXUXiomtmtmtGAkEzsxTDCeCZAvuEZWlOJrErxWOiQJhNLDijxjxlZJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLNLNLJhJhaTGvkRWpiZiZvPhHUejoQeihqoQVaECyCyjvBpvStsvStsvSBphmlOlOfKlJlSkdZrKezmXySLXyXyxKEyWOBuJhJhNLNLNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLNLNLJhJhaTGvkRLOESGMUyiYSYMUhEZMekntQJmtmtctmtmtUtUtUtmtmtVMmtRiijnteVSUOVHPGGwvwvwvwvawsNaxBuJhJhNLNLNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLNLJhJhJhaTGvkRrtealfapYwzrSyPZbNmNntWRYcSILqmtmtUtIEUtmtmtuJmtsHsHntKnxTZrhqgRramFNEoTDdrxoGiQJhJhJhNLNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLNLJhJhJhKLGvKKLzQomzzbiZbSMUGYMVkVntntntntctmtmtUtUtUtmtmtVMntntntntUSWHYemTmTmTmTmTmTmTJYoGiQJhJhJhNLNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLJhJhJhJhaTGvkRbbpXsAEAiZaSgxQeXOZrDNRqRqntHEDLDLDLXxDLDLDLBCntRqRqdvNDxTZrmTqsmXTBMamQfHJYoGiQJhJhJhJhNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLJhJhJhJhaTGvkRkGiZiZwPiZaGlIQeXOZrxPRqRqntxELbLbtbNShDLbLblGntRqRqImNDxTZrAMRXNsNsNsUNBiAMoGBuJhJhJhJhNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkJhJhJhJhJhKLGvKKsdejiiJIKcRAMUHkXOZrWqRqlQntyGixscrgmLwfscixZZntlYRqGbNDxTZmmTtnNsNsNsUNXDAMoGBuJhJhJhJhJhdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhbwJhJhJhJhJhaTGvkRVzWNWNfaWNqpjoQeXOZrVraAgAntntntntntntntntntntntBAaAklNDxgOVJBOkZupPZuwyjjJYoGiQJhJhJhJhJhbwJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhaTGvkRozokokaJokdFjoQeXOsOWkJqJqPAkrrHyFdGHYpayFYyysPAJqJqWksOjJZroMKEwJwJwJwJuyAMoGBuJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhaTGvkRpddPLSrPdPshyXQehdXiXiXiXiXiMiQXuEwKGIrjuEHyIKIKIKIKIKIKljZrmTNJmTmTmTmTuyAMoGBuJhlMJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLGvKKuAARJprPARmSjoQeuTuaRTRTkFcYRTRTRTGSUMENRTRTRTcYkFRTRTjyjisjmTYFcIcIcIcICgJYoGiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLUvKKKKKKKKhfKKKKKKnSuTRjnKnKnKnKnKjUjUjUjUjUjUjUnKnKnKnKnKBcjiZrJYJYJYJYJYJYJYJYySiQJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLVDOQGqsiJHNwbPmYBwVwjwVwnKfVnKnKxBkcLxewHbMwTPWiDhnKnKfVnKyrXvyrHdzKGQTgatNegvfdrliQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLyzEvCupSFcIwkKqyBweLRRminKnKnKSoZjruZxRfHLILLdhclooZnKnKnKoiEnMmanRSSVOtYbOtUJPiepiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLKLKLhOhOKLKLHzURURzPYVbARdzHRdlDSpXsULUjnDUjUjGPlBgCyJuCyJGdjklvHdHdZkHdiQBuBuiQiQiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWPWPWPWPWPwnBwgmAapwVPVPMAxdxdxdxdIoCwBXZUCGNnfynvGWrNrNrNrNPfRuRurZrMXMHdfeTsTsTsTsTsJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhBrZcypVTLMsWBWPGsgYkVPVPtLxdmHPlxdkJCwVyJQwoJQZjJKfMrNSNlgrNwWRuRuzNBqHDSTKJAhGNTQfciLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhhgfXbIfXLMsWBWPGsgCeVPVPVPugAdOLxdxdkDxdnKnKrNrNnurNrNDGEOrNRuRuRuEwBqHDPoKJrDpQbCpQYAJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWPWPWPWPWPwnBwCbprpwMDVebAugrFcJcgdZMtxdnKnKrNryRHVEfSvKEDrNnLCCMkrZzkGtHdfeTsTsTsTsTsJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhiUJhJhJhJhJhJhJhJhrRrRrRQYQYrRrRRpBwBweLVebAugGVcbCKeritxdbLuQrNsBkyocuPuPforNWLCCMkHdHdZkHdYBXTXTYBYBYBJhJhJhJhJhJhJhJhiUJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeJhJhJhJhJhJhJhJhrRrREGKbKbRzKbWsFSBwpAVebAugGVAlcbGgSHxdwixyrNcZAOxvIVIVXRrNWLCClvHdpJSMSRunSRSRIrYBYBJhJhJhJhJhJhJhJhLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLJhJhJhJhJhJhJhrRREYhBwBwBwBwBwyPBwEIVembxdODFkFkPPVgVFVNHgrNlCWXOwIVsXgnrNIvCCMkHdEXHdHdHdHdHdTvPVYBJhJhJhJhJhJhJhNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLJhJhJhJhJhJhJhrRumYhBwYQvXmgBwBwBwMDVebAxdxdUuUuxdxdxdsSosrNrNrNrNrNrNrNrNiuCCMkHdHdHdYWKUusHdTvjBYBJhJhJhJhJhJhJhNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLNLJhJhJhJhJhJhQYizYhBwGcEcpLdnKoEcWFVeBPoHMjMjlldpABrkMjemMjzoHhIGuFmkweoHecCCuqXdIYPsrhXdaLHdTvpJXTJhJhJhJhJhJhNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLNLJhJhJhJhJhJhQYsnAPBwdXkICJMswFwFwFwFwFSDDaDaxZDaDaDaDaPOWrWrWrAAdBeZdBNrYXYXYXYXYXbaxXUAzSHdphXpXTJhJhJhJhJhJhNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhVcNLNLyyJhJhJhJhJhrRkgFIBwfrtihrMoSXSXSXSXFPfvvHIbxnVZVZVZVZwlVZVZVZrcaFVZfIfvvRJGJGJGJGdyQdwbWyHdTvZaYBJhJhJhJhJhyyNLNLUfJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLNLuKJhJhJhJhJhrRizYhBwMDtiCjxpxpipipipxpxpPEPEPEPEWzxQvNCivNxQWzXaXasqsqsqXasqsqsqXaXaNxJWxhHdTvpJYBJhJhJhJhJhuKNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhFhZGZGbHCPJhJhJhJhrRdCYhBwoxtiCjxpqnsoGrmPkexpQhpMdKPELvlWRFzGRFwSQqXaeJvOxJjfTnOrLnBRKYXaCWNdXEHdTvJfYBJhJhJhJhDsGoZGZGcGJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeyHiHmZLeJhJhJhJhrRcVuLBwMDtiCjQBhCNudhTplcxHbiXbmekZRFRFRFwXRFRFKmRcJVFtfhjcXgFtckFtjcsqCWNdMkHdvQzWYBJhJhJhJhLeKhiHMxLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhDskLyHUhMxSOCPJhJhJhrRaVYhBwzpIBCjQBDxECFrHBDnxpNhhpgHyaYImoXtPrwasvMqtfYnDvMSdgKyKyKyKyBbsqCWmmfsHdTvqaYBJhJhJhDskLyHUhMxSOCPJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHUhCqqGSOCPJhWbieqCYmBweLtiCjQByowswsfbRWxpVbDkkbVbKtIQeSqjeSUdxLXaHcolNFShFtRIadFtUHsqCWcSTkHdaIgdxcWbJhDskLwrCpUhMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHUhCqUhMxSOZGZGTwzvqYBwfrtiCjxpXZvatvjIjXxpZDdsiWVbEJefjGldWBggLCXaXaDzqQXavOYsmWvYhLXaCWcSyuHdqhmjFgZGhzkLyHUhCpUhMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHUhCqUhMxNLWbJhFzXmfwBwvUtiZQHrHrHrHrHrHrHrHMhxuhKSWQxOiPrCrCHHyQNQzcrmexqfqfqfqfqfqfqfYzcSIXHdIehaCUJhWbNLyHUhCpUhMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhwgNLyHUhCqUhMxNLieaaPkeEucBwWVtiCjHrOjhwzUdDDyHrFHhxOxVbVbVbVbVbVbVbVbVbujhjzXndxYhMOGVKoKndCWcSMkHdHSXrElsMxcNLyHUhCpUhMxNLNUJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLNLNLNLNLNLCfzIebPxpkJPBwMDqItPHrHthVEesKuvHrbuAyfOKTwhfPKgHAOlwTwTqmLlkCvfndohXhhoOphQndcAcSgzHdamtwKzEaNACfNLNLNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHIgCqIgMxNLieFzsaFeDHbhfRxetUHrFqRMBhGeELHrQpLZJywzwzvewzwzFGBUzDWudrvILVndbsvLLhBvSsndCWTILHvpCcVXPQCUxcNLyHIgCpMNMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeIzyHIgCqIgMxNLJhFzFoPUCAwBICMYjdHrQyOmiDyUIZBlIhbJnTZKRQTLfxTRZKRQikGFhxNPGTmKOUHwGwcDVtndzZCoMkHdJwgpLBCUJhNLyHIgCpMNMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHIgCqIgMxNLWbFzTeGONBBwTZtihvHrwdztcaxjOCHrKVLlykZeZeQDzCKlKsZeZehRhxCdlPndOXfggJhFKwndCWCofCHdaMtpZXCUWbNLyHIgCpMNMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHIgCqIgMxNLWbjLCOGKLfBwcntiBfHrHrHrHrHrHrHrjKhxMbnjEoBafxviZKFEogfutTOEWYndndndndndndndJFCoMkHdFTPTNvGRWbNLyHIgCpMNMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSOCPyHBECqBEMxJhJhWbuxZJdOBwTZtiNGEcGsjtxmnBHrHrVbEUwwQihAjpMHZeZeLahAdcIuEUVbndndIkqDPyXLXdrYCoXEHdpjvtjTWbJhJhyHBECpsCMxDskLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhMXZGCPNLWbWbJhJhJhuxMyAUBwdREscOcOydgKdjcjOiGxQPQPQPPvQPQPLZAyhxQPQPzQQPQPQPuzjzTNCxPFwOFQFQGplvHdNpjnjTJhJhJhWbWbNLDsZGUpJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLLeJhWbWbWbJhFDMCPWdxbgWKteBxBxpvePYSFXbYDAQPQNUqlLguQPVbqZVbQPsJfFITlRQPBgMldIhJONXLKayxdEAjHdNpWgxcNLJhWbWbWbJhLeNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSjWbLeJhJhWbBTBTBTBTeqlhbFeqeqeqeqeqyYYSCDaUbmQPZiKfcRKftVVbbnVbkknJaXLQjqQPbrbveNhJTdLIQUQUQULImOyimOtKtKtKtKWbJhJhLeWbSjJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbLeJhJhmIBTcxcxYvWvgMWxRNMuCTCTeqfnYSCDktEfQPtMKfeeKfIdVbbfVbxVkjQcnVZwQPfJeneNhJOuQUThNznsGzbZKWmOcmzTeltKtKJhJhLeWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbLeJhmImIeqezJSxuxioehNgYxuJSkQeqHGuleDwYwYQPkoXFcRKfyVVbVbVbjWPbTmftDfQPyWyWEjhyLrZRPhrqrqTcrqnfmOpecmelgStKtKJhLeWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbLemImIfQeqQHQHoAoQAXqgqgoABYBYeqbkYSCDIpdLQPIaVSyIKfKfhiZvvGKfVqhnhnhnhnNWabeNhJOuQTrqivNZuDiSkhoIYrYrtXwDLisyKXkLWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbrWsxuRtheqeqeqoooQDcacacTAeqeqeqMcYSCDZVqTQPXYXYXYXYXYXYKfKfKfkOpfzLDJhniEUceNhJOuQUGZEdKuYRQkJDmOHxAKOsehcdcpMBClWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLGJDBDBWoeqqlqlxWzMheWxvBsUcEcEeqMcYSFXbYALQPpgpgpgpgpgpgsZwCAGyEhnPYPzhnAwMldIhJRkLILILIReLILILImOdbdfddDTdlpxpxbTNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLGJrsDBXWeqezJSxuMfCRezNlxuJSuOeqfDYSFXFXsIQPQPQPQPQPQPQPQPQPQPQPhnExhnhnYxONdIfWkvHKaifkOIfmBeqdMrcciGddgUoRpxKIbTNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhDsZGZGvJDBStQgeqmBmBoAoQAXacwIoAChCheqSQYSgwFXFXeicsRvQfjNtATJHjcKPtjNQfZFeOOzONONeThJZHHKMFSWdaKvmMnaqrHTHTWTlugVJbJbbTNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhDskLNLtcmIDBWoeqeqeqeqmAoQAXQKAiNXeqeqeqnXdzcicizlBtciciMRcicicilnVkciciqbciJnKAJnJnnNbXOSIIgTAEiwdSnxoYERqVItgEnMoRJXJbbTtcNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSkuuovovovovHmbReqnEnEnykWwAheffRNxlmfmfeqSQYSFXHlAoeBeBeBUaeBeBeBxCBLeBeBUaeBzhXQLKVuupjSgLHKZfQQdWvbfUrpqrSeoPqrqrqrqrqrMBRYRYRYRYJxJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeoyubcqPwwpHmxriAJSJSxueIahAXnGtFHXsboLnrymEWJCdodododododoOPdqdqxGKRrvgqYYcXcXJZcXtadAdAdAToTorwToNmMvFsqrNMQAqrVfVfRsGusYGuHfKPniLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeovVBubgswpHmGheqNKNKoAWSueaoCHINOHwZwZylQngfzfdoMEbGWGWGdoTSzjzjzjwHzjHZNfedOaHpxotaLtRPLDtBxMjYToeoOZWwqrqvXjqrVfVfVfVfVfVfVfMTniLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeovvVyNIfwpwpnWeqeqeqooUnAsAXAWKizdeqeqylnwDQCDdoblLmHugbdoXNWeGEGESvDVNjNfduttSqNOtaXfAtZdEgqzeQVoOFtgkaqrqrfZqrXoibEPgWEPRbVfcrHvLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeovNHgZVOFxwpRLbeszXSErAbTqQrLUYaYEOTCzWAxxQRpqVjhUYPakkxdoNNLuNNdoskdoNNYYdJBIXXcHtaLcbdYGqHUzuUVoOqxbRJkfvzZPbjVfUFBsVfVfVfBscraQLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeFfZsaqkPziaDDYZTtokMlaAboUagjavFlytyHsclTWzRczdododoMeRxTiouCSBMiBgNEMaelemEPDDrkYtakAUKYLbMvcfTVogcSbngSbQvRVyjVflxVfVfVfVfVfcraQLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhhIxRQOZskPBGwpHmHmdTZSlaEkxNXKEqAngoltknpTHmHmHmHmvCAzarJjDMvyvqROvqUmuYgtYYbQedFnbUtagDAtGHFdoVywVoRGxzPduwFFzyzaEPsQVfVfKMVfVfcrmrLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLDtovkzlFkPKdMQHmEmAgVAtzQCZqqNVWuBUDOYZpvxBQwMvxHmUONNuIPHJNmwRhplXJwRhSWEYYYYcXJZYYtaCLWhvojYAfiIVolNMgRySbrBJEyjVfiRVfVfVfVfVfcraQLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmovdHopSgVIvWHmAmFlkmeuuNVVCMCnXILknZdtFLFLFLboHmPCquSnwEhSmwgOLFMMwRhSUixkcenFPMSftaToToTohsToToVoisqJcLhXswLpfNVfUFBsVfVfVfBscraQLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmFfzuTrYTDXNyHmEtspNaiggyetqwmDimoqDmOvgBgBeHUkHmPLrewkeshSjDvqoCnzfzbWBOBOBOBOwNTKLYjmeFTGnbUUxqqrOFtgQzOFOFOFOFXoVxEPgWEPRbVfcrjOLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmFfIFpBApFavwHmAmhKUltNSSCaiJvDvnomCBalHCyBcMxtHmPCpcCmRxzjzjhShShSbBzjUiUiUiUirKkqLYyqtlSmfATXoXnHgIcftmOFsmcNOFpuVfVfVfVfVfVfMTniLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmovvksFADjEnAmunRPqFvmxDgYoXuqLqFIHqFqFfGqFXVtIHmUONNQjVidNPSdNdNdNORZYdNdNdNcyVlvAuMTOIlpUxaQmaWBBKBTXazlVbzYqSwUEGumCGuIxGumClAniLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhiUJmovUIJdovukEFoERwoEGDoEoEUGUGUGUGWUUGUGUGUGTfgaHmPjNNAZpDpDcULXpDsufYETpDpDpDtuqkVpLYFYnoYdUgaOXztEgXKNnOOFOFOFOFOFOFOFOFnininininilqAFJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSOsRWbuiKpQwIUIneUodKqCktDZNUGdiJMBdzVRlotDFUGaZqxHmsGYghtjQjQjQjQjQjQjQjQjQjQjQHNEhWcoaGfHqGflmNqNqqPlKjgnOilQlIjqXowMWghXBRaNLNLWbWbLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmAuPuPumaIUhuTHUYgeJtUYpYOdIqGUNoTuSdMGRUJoxUMJpKpbFiyejQjQjQjQjQjQjQjQjQjQjQHNSZkBoaXHtQGfWWSmSmSmJJZhkTQtzqsleKowCrkHTxRaNLNLNLWbLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmQIPuPuQwukBZqOWJIAutOKDEUGEQSuzYJsZESuWjegjVGlHmJrEKDZjQjQjQjQjQjQjQjQjQjQjQHNJvHeoaUBvMGfQESPSPmvPIFVnOonNCJgliowowMzowrTNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmtZPuPumaukTFpOpOeGXGpOsTUGZtLGygScMPayDRegKQFKHmUreRDZEujQjQjQjQjQjQjQjQjQjQHNjZaRoanpkNuocFNtlkqWjAlXnOSGNCJgtCMhqAJgASrTNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmQIPuPuQwukukPmHIEiPJQuWMcvqMAVAVPBPBwmAVtkeyqqSKEHEKDZjQjQjQjQjQjQjQjQjQjQjQHNppIRBNBNSABNJkLwLwKrLwyAnqrTTDATvdvdvdpCFNrTNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmtZPuPumaNLukukAvjsKkfjfqcvVmVmcvNLcvVmVmcvLeWbLEyTqtDZjQjQjQjQjQjQjQjQjQjQjQHNyRxwLEWbLenqVJVJnqNLnqVJVJrTJaiKUVlwbKksrTrTNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmQIPuPuPuPuQwukdVukrbSzSzcvmqVmcvNLcvmqVmcvLeWbLEUZWfDZjQjQjQjQjQjQjQjQjQjQjQHNHFZILEWbLenqDwVJnqNLnqDwVJrTrTrTRaRaRarTrTNLNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhUseWwuwuwuwumsZGmhZGmRZGQWCPWbWbDsZGCPWbWbDsgFNLLEyCIDinQaQaQaQaQaFWQaQaQaQaQanmIOhWLENLuGCPWbWbDsZGCPWbWbDsqiZGZGZGZGZGZGZGZGZGZGZGLgJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmQIPuPuPuPuQwNLJhJhJhJhJhSOZGZGkLJhSOZGZGkLIiCPLELEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbELELENLLeSOZGZGkLJhSOZGZGkLJhJhJhJhJhNLNLNLNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLnIPuPuPuPuPumaJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSjSOZGZGZGZGZGZGZGZGCPJhNLNLWbWbJhWbWbNLNLNLSjJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLNLNLLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhCQkLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSOAFNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSOAFJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhPpJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh -JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh ->>>>>>> 5e30d29614... Merge pull request #14566 from Heroman3003/wall-locker-color -======= (1,1,1) = {" Jh @@ -58908,7 +35219,7 @@ WZ CF wt hT -hP +hG fl ZA zm @@ -67097,5 +43408,4 @@ Jh Jh Jh Jh ->>>>>>> 3917d1a8d1... Merge pull request #14701 from KillianKirilenko/kk-misc2 "} diff --git a/maps/submaps/surface_submaps/plains/dogbase.dmm b/maps/submaps/surface_submaps/plains/dogbase.dmm new file mode 100644 index 0000000000..b652282219 --- /dev/null +++ b/maps/submaps/surface_submaps/plains/dogbase.dmm @@ -0,0 +1,1855 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"ae" = ( +/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{ + desc = "The biggest and baddest guard dog around."; + faction = "syndicate"; + max_co2 = 0; + max_tox = 0; + name = "syndicate guard dog" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"ay" = ( +/obj/structure/dogbed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/tajaran, +/obj/random/maintenance/medical, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"aF" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/submap/DogBase) +"aX" = ( +/obj/structure/dogbed, +/obj/effect/decal/remains/tajaran, +/obj/effect/decal/cleanable/filth, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/bone, +/obj/random/maintenance/security, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"bl" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/DogBase) +"bw" = ( +/obj/item/weapon/storage/belt/janitor, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"bx" = ( +/obj/machinery/porta_turret/poi{ + faction = "syndicate" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"bT" = ( +/obj/structure/safe, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"cS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"ec" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"eA" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"eI" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"eZ" = ( +/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{ + desc = "The biggest and baddest guard dog around."; + faction = "syndicate"; + max_co2 = 0; + max_tox = 0; + name = "syndicate guard dog" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"fg" = ( +/obj/structure/closet/l3closet/janitor, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"fI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/cargo, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"hl" = ( +/obj/effect/floor_decal/borderfloor/corner, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"hp" = ( +/turf/template_noop, +/area/template_noop) +"hA" = ( +/obj/structure/table/woodentable, +/obj/item/stolenpackage, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"hZ" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"ik" = ( +/obj/random/mob/merc/all, +/turf/template_noop, +/area/template_noop) +"iv" = ( +/obj/structure/dogbed, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/filth, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/bone/ribs, +/obj/random/maintenance/research, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"jz" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"jD" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"jO" = ( +/obj/structure/dogbed, +/obj/effect/decal/remains/unathi, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/security, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"kl" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/cargo, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"km" = ( +/obj/effect/decal/remains/human, +/turf/template_noop, +/area/template_noop) +"lb" = ( +/obj/random/mob/merc/all, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"lg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"lh" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"lk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"lm" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"lr" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/DogBase) +"lN" = ( +/obj/machinery/porta_turret/poi{ + faction = "syndicate" + }, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/DogBase) +"lX" = ( +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"ng" = ( +/mob/living/bot/cleanbot{ + faction = "malf_drone" + }, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"np" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/gun/projectile/pistol, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"oW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"pR" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"qg" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"qk" = ( +/obj/machinery/porta_turret/poi{ + faction = "syndicate" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"qI" = ( +/obj/structure/dogbed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/bone, +/obj/random/maintenance/security, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"qO" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"qZ" = ( +/obj/effect/decal/remains/ribcage, +/turf/template_noop, +/area/template_noop) +"re" = ( +/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{ + desc = "The biggest and baddest guard dog around."; + faction = "syndicate"; + max_co2 = 0; + max_tox = 0; + name = "syndicate guard dog" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"rH" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"se" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"tp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/DogBase) +"tt" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"tz" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"tN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"vq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"vX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"wI" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"wQ" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"wS" = ( +/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{ + desc = "The biggest and baddest guard dog around."; + faction = "syndicate"; + max_co2 = 0; + max_tox = 0; + name = "syndicate guard dog" + }, +/turf/template_noop, +/area/template_noop) +"xc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"xe" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/random/projectile/scrapped_smg, +/obj/random/projectile/scrapped_smg, +/obj/random/projectile/scrapped_smg, +/obj/random/projectile/scrapped_shotgun, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"xp" = ( +/obj/structure/dogbed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/random/contraband/nofail, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"yl" = ( +/obj/structure/dogbed, +/obj/effect/decal/remains/deer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/contraband/nofail, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"yx" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"yX" = ( +/obj/item/modular_computer/laptop/preset/custom_loadout/cheap, +/obj/structure/table/woodentable, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Am" = ( +/obj/machinery/door/blast/gate/thin, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"AJ" = ( +/obj/machinery/door/airlock/engineering, +/turf/simulated/floor/tiled, +/area/submap/DogBase) +"AY" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/random/projectile, +/obj/random/projectile, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Bk" = ( +/turf/simulated/wall/r_wall, +/area/submap/DogBase) +"Bx" = ( +/obj/structure/table/woodentable, +/obj/random/projectile/scrapped_pistol, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"BA" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"BB" = ( +/obj/structure/table/woodentable, +/obj/random/cash/big, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Ce" = ( +/obj/structure/janitorialcart, +/obj/item/weapon/storage/bag/trash, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Cz" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"CQ" = ( +/obj/structure/dogbed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/bone, +/obj/random/contraband/nofail, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"Dt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Dv" = ( +/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{ + desc = "The biggest and baddest guard dog around."; + faction = "syndicate"; + max_co2 = 0; + max_tox = 0; + name = "syndicate guard dog" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Ez" = ( +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/template_noop, +/area/template_noop) +"Fm" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled, +/area/submap/DogBase) +"FD" = ( +/obj/structure/fence, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"FO" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Ge" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/random/cash/huge, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Gf" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/filth, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/cargo, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"GB" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"GJ" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/random/projectile, +/obj/random/projectile, +/obj/effect/landmark/loot_spawn, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Hl" = ( +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/DogBase) +"HF" = ( +/obj/random/mob/merc/all, +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"HM" = ( +/obj/structure/table/woodentable, +/obj/random/contraband/nofail, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Iz" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Jm" = ( +/obj/structure/dogbed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/research, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"Ki" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"Kt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"Le" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"Lm" = ( +/obj/effect/landmark/loot_spawn, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"LJ" = ( +/obj/effect/decal/remains/tajaran, +/turf/template_noop, +/area/template_noop) +"LP" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Ng" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/vending/security, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Ni" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Ok" = ( +/obj/structure/table/woodentable, +/obj/item/device/radio/phone, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Ol" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/bone/leg, +/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{ + desc = "The biggest and baddest guard dog around."; + faction = "syndicate"; + max_co2 = 0; + max_tox = 0; + name = "syndicate guard dog" + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"OR" = ( +/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{ + desc = "The biggest and baddest guard dog around."; + faction = "syndicate"; + max_co2 = 0; + max_tox = 0; + name = "syndicate guard dog" + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/DogBase) +"OS" = ( +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Pi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"PB" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"PJ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/obj/structure/table/rack/shelf/steel, +/obj/item/stack/material/phoron{ + amount = 10 + }, +/obj/item/stack/material/phoron{ + amount = 10; + pixel_x = 1; + pixel_y = 6 + }, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"Qp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/template_noop, +/area/template_noop) +"Qu" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"QB" = ( +/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{ + desc = "The biggest and baddest guard dog around."; + faction = "syndicate"; + max_co2 = 0; + max_tox = 0; + name = "syndicate guard dog" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"Rz" = ( +/obj/structure/table/woodentable, +/obj/item/device/radio/phone, +/obj/random/contraband/nofail, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"RW" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"SW" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"To" = ( +/obj/structure/fence/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"UW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"UY" = ( +/obj/structure/dogbed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/security, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"Vm" = ( +/obj/structure/loot_pile/maint/technical, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Vy" = ( +/obj/effect/decal/remains/unathi, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"VG" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Wm" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/random/curseditem, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Wq" = ( +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Wu" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"WH" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"WU" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/random/cash/huge, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Xz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"Ya" = ( +/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{ + desc = "The biggest and baddest guard dog around."; + faction = "syndicate"; + max_co2 = 0; + max_tox = 0; + name = "syndicate guard dog" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Yi" = ( +/obj/structure/table/rack/shelf/steel, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Yr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"YJ" = ( +/obj/random/mob/merc/all, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/DogBase) +"YX" = ( +/obj/structure/dogbed, +/obj/effect/decal/remains/deer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/medical, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/DogBase) +"ZK" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "Unknown APC"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/simulated/floor/plating, +/area/submap/DogBase) + +(1,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +hp +km +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +km +hp +"} +(2,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +"} +(3,1,1) = {" +hp +km +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +Ez +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +"} +(4,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +lN +Hl +hp +hp +hp +Hl +lN +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +"} +(5,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +Hl +Bk +Bk +Bk +Bk +Bk +FD +FD +FD +FD +FD +To +Qp +hp +hp +hp +hp +Xz +hp +hp +km +hp +hp +"} +(6,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +hp +Bk +fg +ng +Vm +Bk +iv +yl +YX +qI +jO +GB +Qp +LJ +hp +hp +Xz +Xz +Ez +hp +SW +hp +hp +"} +(7,1,1) = {" +hp +hp +hp +hp +hp +ik +wS +hp +Bk +Yi +Qu +Vm +Bk +UY +Gf +Ol +Vy +fI +Am +oW +oW +oW +oW +oW +hp +SW +hp +hp +hp +hp +"} +(8,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +hp +Bk +lg +Qu +bw +Bk +aX +lk +ae +kl +lk +Am +oW +oW +QB +oW +hp +hp +hp +hp +SW +hp +hp +"} +(9,1,1) = {" +hp +hp +lN +Hl +hp +hp +hp +hp +Bk +eI +Qu +Ce +Bk +Jm +xp +ay +CQ +YX +GB +LJ +hp +hp +Qp +Qp +tp +lN +hp +hp +hp +hp +"} +(10,1,1) = {" +hp +hp +Hl +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Fm +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Hl +hp +km +hp +hp +"} +(11,1,1) = {" +hp +hp +hp +Bk +pR +RW +Wu +vq +Bk +Ng +wQ +FO +Bk +Dt +tN +tN +Dv +RW +vq +Bk +Pi +tN +qk +vq +Bk +Hl +Hl +hp +hp +hp +"} +(12,1,1) = {" +km +hp +Ez +Bk +Ge +Wq +Bx +lX +Bk +GJ +lb +OS +Bk +Yr +VG +HM +wI +Wq +lX +Bk +eZ +hl +se +UW +Bk +lr +Hl +hp +hp +SW +"} +(13,1,1) = {" +hp +Ez +hp +Bk +qO +Wq +BA +lX +Bk +AY +Wq +OS +Bk +Yr +HF +Rz +wI +Wq +Ni +RW +PB +eA +Bk +Bk +Bk +OR +Hl +SW +SW +hp +"} +(14,1,1) = {" +hp +Hl +Hl +Bk +hA +Wq +Iz +lX +Bk +xe +Wq +OS +Bk +rH +VG +HM +wI +Wq +hl +se +WH +lX +Bk +jz +aF +bl +Hl +SW +hp +hp +"} +(15,1,1) = {" +hp +lN +Hl +Bk +qO +lb +BA +lX +LP +Cz +Wq +OS +LP +Yr +VG +Ok +wI +re +lX +Bk +Yr +lX +yx +Wq +yx +lr +YJ +SW +SW +SW +"} +(16,1,1) = {" +hp +Hl +Hl +Bk +hA +Wq +BB +lX +Bk +Wm +Wq +OS +Bk +rH +VG +np +wI +Wq +Ni +tN +PB +lX +Bk +jz +aF +bl +Hl +SW +SW +hp +"} +(17,1,1) = {" +hp +Ez +hp +Bk +qO +Wq +BA +lX +Bk +yX +wI +OS +Bk +Yr +VG +HM +wI +lb +hl +jD +WH +eA +Bk +Bk +Bk +OR +Hl +SW +SW +hp +"} +(18,1,1) = {" +hp +hp +Ez +Bk +lm +Wq +Iz +lX +Bk +WU +lb +OS +Bk +Yr +VG +HM +wI +Wq +lX +Bk +Yr +Ni +tN +vq +Bk +lr +Hl +hp +SW +hp +"} +(19,1,1) = {" +km +hp +hp +Bk +bT +jD +se +UW +Bk +ab +tz +qg +Bk +Lm +se +se +se +jD +Ya +Bk +ec +se +bx +UW +Bk +Hl +Hl +hp +hp +hp +"} +(20,1,1) = {" +hp +hp +Hl +Bk +Bk +Bk +Bk +Bk +Bk +Bk +AJ +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Hl +hp +hp +hp +hp +"} +(21,1,1) = {" +hp +hp +lN +Hl +hp +hp +hp +hp +Bk +ZK +Le +Ki +Bk +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +Hl +lN +hp +hp +hp +km +"} +(22,1,1) = {" +hp +hp +hp +hp +hp +hp +Ez +hp +Bk +PJ +xc +vX +Bk +hp +hp +hp +hp +hp +hp +hp +hp +wS +hp +hp +hp +hp +hp +hp +hp +hp +"} +(23,1,1) = {" +hp +hp +hp +hp +hp +hp +wS +hp +Bk +lh +cS +lh +Bk +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +Ez +hp +hp +hp +hp +"} +(24,1,1) = {" +hp +hp +hp +hp +hp +ik +hp +hp +Bk +hZ +Kt +tt +Bk +hp +hp +km +hp +hp +km +hp +hp +hp +km +hp +hp +hp +hp +hp +km +hp +"} +(25,1,1) = {" +hp +hp +km +hp +hp +hp +hp +Hl +Bk +Bk +Bk +Bk +Bk +Hl +hp +hp +hp +Ez +hp +hp +qZ +hp +hp +hp +hp +hp +hp +hp +hp +hp +"} +(26,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +lN +Hl +hp +hp +hp +Hl +lN +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +"} +(27,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +Ez +hp +hp +hp +km +hp +hp +km +hp +hp +"} +(28,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +km +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +"} +(29,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +km +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +"} +(30,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +hp +km +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +"} diff --git a/maps/submaps/surface_submaps/plains/emptycabin.dmm b/maps/submaps/surface_submaps/plains/emptycabin.dmm new file mode 100644 index 0000000000..707aaa9bab --- /dev/null +++ b/maps/submaps/surface_submaps/plains/emptycabin.dmm @@ -0,0 +1,328 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/effect/decal/cleanable/filth, +/obj/item/weapon/bone/arm, +/obj/item/weapon/bone/skull/unathi, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"c" = ( +/obj/structure/curtain/black, +/obj/structure/simple_door/sifwood, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"d" = ( +/obj/structure/closet/wardrobe, +/obj/item/weapon/material/fishing_rod/modern, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/weapon/storage/toolbox/lunchbox/nymph/filled, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"e" = ( +/turf/simulated/wall/sifwood, +/area/submap/EmptyCabin) +"f" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"g" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/purpledouble, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"h" = ( +/obj/structure/loot_pile/surface/bones, +/turf/template_noop, +/area/template_noop) +"i" = ( +/obj/structure/bed/chair/sofa/left/blue{ + dir = 1 + }, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"j" = ( +/obj/effect/decal/cleanable/blood, +/mob/living/simple_mob/vore/otie/friendly/chubby{ + desc = "The classic bioengineered longdog. This one still probably won't tolerate you. What an absolute unit"; + faction = "spiders"; + max_co2 = 0; + max_tox = 0 + }, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"k" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/bed/chair/sofa/left{ + dir = 8 + }, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"l" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/bed/chair/sofa{ + dir = 8 + }, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"n" = ( +/obj/structure/table/sifwoodentable, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/paper/crumpled/bloody{ + info = "I found an otie while picking flowers today. He's so cute! I took him back home, and he seemed quite happy to share food with me. He really likes fish. Though, he never really seems to not be hungry..." + }, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"q" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/template_noop, +/area/submap/EmptyCabin) +"r" = ( +/obj/effect/landmark/loot_spawn/low, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"t" = ( +/obj/structure/railing/grey, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"y" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/curtain/black, +/obj/structure/grille/rustic, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"z" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "4" + }, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"A" = ( +/obj/structure/bonfire/permanent/sifwood, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/virgo3b_indoors, +/area/submap/EmptyCabin) +"B" = ( +/turf/template_noop, +/area/submap/EmptyCabin) +"C" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"D" = ( +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"G" = ( +/obj/structure/bed/chair/sofa/blue{ + dir = 1 + }, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"I" = ( +/obj/structure/table/sifwoodentable, +/obj/item/pizzabox/meat, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"J" = ( +/obj/structure/bed/chair/sofa/right/blue{ + dir = 1 + }, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"L" = ( +/obj/structure/table/sifwoodentable, +/obj/item/weapon/flame/candle/candelabra, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"M" = ( +/obj/item/weapon/bone/leg, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"O" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/bed/chair/sofa/right{ + dir = 8 + }, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"Q" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"T" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/template_noop, +/area/submap/EmptyCabin) +"V" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"W" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"X" = ( +/obj/item/weapon/bone, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) +"Z" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/EmptyCabin) + +(1,1,1) = {" +a +q +e +O +l +l +k +C +e +a +"} +(2,1,1) = {" +a +B +D +D +D +D +D +D +t +a +"} +(3,1,1) = {" +a +T +f +e +e +c +e +e +t +a +"} +(4,1,1) = {" +a +a +e +e +b +M +D +e +e +a +"} +(5,1,1) = {" +a +a +e +g +j +X +L +i +e +a +"} +(6,1,1) = {" +a +a +y +n +W +D +I +G +e +a +"} +(7,1,1) = {" +a +a +e +d +Z +r +D +J +e +a +"} +(8,1,1) = {" +a +a +e +e +z +V +Q +e +e +a +"} +(9,1,1) = {" +a +a +h +e +e +A +e +e +a +a +"} +(10,1,1) = {" +a +a +a +h +e +e +e +a +a +a +"} diff --git a/maps/submaps/surface_submaps/plains/greatwolfden.dmm b/maps/submaps/surface_submaps/plains/greatwolfden.dmm new file mode 100644 index 0000000000..d8ac2577ee --- /dev/null +++ b/maps/submaps/surface_submaps/plains/greatwolfden.dmm @@ -0,0 +1,1597 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/decal/cleanable/blood/drip, +/mob/living/simple_mob/vore/wolf/direwolf{ + ai_holder_type = /datum/ai_holder/simple_mob/retaliate; + desc = "The biggest and baddest wolf around. Seems pretty chill, for a wolf."; + faction = "sif"; + max_co2 = 0; + max_tox = 0; + min_oxy = 0 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"bp" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"bz" = ( +/obj/structure/flora/bboulder1, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"bI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"bY" = ( +/turf/simulated/floor/outdoors/snow/virgo3b, +/area/submap/GreatWolfDen) +"dM" = ( +/obj/structure/flora/bboulder2, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"dX" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"eq" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/outdoors/snow/virgo3b, +/area/submap/GreatWolfDen) +"fh" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"fX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rocks2, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"ge" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "frostbelle" + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"hJ" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"iX" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"jg" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/item/ammo_casing/a10mm{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"ju" = ( +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"kg" = ( +/obj/item/weapon/bone/skull/unathi, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"kk" = ( +/obj/effect/decal/cleanable/blood/gibs{ + color = "red"; + icon_state = "gib2_flesh" + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"kL" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "grass3" + }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/GreatWolfDen) +"lu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/a10mm, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"lL" = ( +/obj/structure/loot_pile/surface/bones, +/obj/effect/landmark/loot_spawn/low, +/obj/random/projectile/scrapped_gun, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"lQ" = ( +/obj/effect/decal/cleanable/filth, +/obj/item/weapon/card/emag_broken, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"mk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/item/ammo_casing/a10mm{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"mm" = ( +/obj/random/trash_pile, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"nd" = ( +/obj/structure/flora/rocks2, +/obj/effect/decal/remains/lizard, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"nv" = ( +/mob/living/simple_mob/vore/greatwolf{ + dir = 8; + max_co2 = 0; + min_oxy = 0 + }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/GreatWolfDen) +"pS" = ( +/turf/template_noop, +/area/template_noop) +"qb" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"rn" = ( +/obj/structure/loot_pile/mecha/gygax/dark/adv, +/obj/effect/decal/cleanable/blood/gibs/robot/down, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"rM" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "eyeplant2" + }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/GreatWolfDen) +"tb" = ( +/obj/structure/flora/smallbould, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"tm" = ( +/turf/simulated/mineral/ignore_mapgen, +/area/submap/GreatWolfDen) +"tC" = ( +/obj/effect/decal/remains/mouse, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"uz" = ( +/mob/living/simple_mob/vore/wolf/direwolf{ + ai_holder_type = /datum/ai_holder/simple_mob/retaliate; + desc = "The biggest and baddest wolf around. Seems pretty chill, for a wolf."; + faction = "sif"; + max_co2 = 0; + max_tox = 0; + min_oxy = 0 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"uY" = ( +/obj/item/ammo_casing/a10mm, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"vu" = ( +/obj/item/weapon/bone/skull/tajaran, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"wc" = ( +/obj/item/weapon/bone/skull/unathi, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"xt" = ( +/obj/effect/landmark/loot_spawn/low, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"xu" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"xK" = ( +/obj/effect/decal/remains/human, +/obj/item/clothing/under/syndicate, +/obj/random/projectile/scrapped_gun, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"yi" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "frostbelle2" + }, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"yF" = ( +/obj/structure/flora/smallbould, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"yG" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/outdoors/snow/virgo3b, +/area/submap/GreatWolfDen) +"yH" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"zl" = ( +/obj/structure/flora/bboulder1, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"zs" = ( +/obj/structure/flora/bboulder2, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"zV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/ledge/ledge_stairs, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"AG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rocks2, +/obj/structure/ledge/ledge_stairs, +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/submap/GreatWolfDen) +"AK" = ( +/obj/structure/cliff/automatic/ramp{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"BR" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "frostbelle2" + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"Cd" = ( +/mob/living/simple_mob/vore/otie/feral/chubby{ + ai_holder_type = /datum/ai_holder/simple_mob/retaliate; + desc = "The classic bioengineered longdog. No pets. Only bite. What an absolute unit."; + faction = "sif"; + minbodytemp = 0 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"CR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"Dj" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"DV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/outcrop, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"EU" = ( +/obj/structure/flora/rocks1, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"Fy" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "eyeplant1" + }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/GreatWolfDen) +"GZ" = ( +/obj/structure/flora/rocks1, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"Hb" = ( +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"HC" = ( +/obj/random/outcrop, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"Ic" = ( +/obj/effect/decal/remains/deer, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"Id" = ( +/obj/effect/decal/cleanable/dirt, +/turf/template_noop, +/area/template_noop) +"If" = ( +/obj/effect/decal/cleanable/blood/gibs/robot/limb, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"Iw" = ( +/obj/effect/decal/remains/deer, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"Kb" = ( +/obj/item/ammo_casing/a10mm{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"Ko" = ( +/obj/effect/decal/cleanable/blood/gibs{ + color = "red"; + icon_state = "gibdown1_flesh" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"Kp" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/outdoors/snow/virgo3b, +/area/submap/GreatWolfDen) +"KU" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "grass3" + }, +/turf/simulated/floor/outdoors/snow/virgo3b, +/area/submap/GreatWolfDen) +"Lx" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"Lz" = ( +/obj/effect/decal/cleanable/blood/gibs{ + color = "red"; + icon_state = "gib1_flesh" + }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/GreatWolfDen) +"LJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/sif/subterranean{ + icon_state = "glowplant2" + }, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"LP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rocks2, +/obj/structure/ledge/ledge_stairs, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"LT" = ( +/obj/structure/cliff/automatic/corner{ + dir = 10 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"Mc" = ( +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"Mv" = ( +/obj/random/outcrop, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"MD" = ( +/obj/structure/flora/tree/sif{ + icon_state = "tree_sif4" + }, +/turf/simulated/floor/outdoors/snow/virgo3b, +/area/submap/GreatWolfDen) +"OB" = ( +/obj/item/stack/material/log{ + amount = 25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"OL" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"OV" = ( +/obj/structure/cliff/automatic{ + dir = 6 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"OW" = ( +/obj/structure/cliff/automatic{ + dir = 5 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"Pa" = ( +/obj/structure/cliff/automatic/ramp, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"Pf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"Pl" = ( +/obj/effect/decal/remains/lizard, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"PC" = ( +/obj/structure/closet/crate/secure/loot, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"PX" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"Qb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rocks1, +/obj/structure/ledge/ledge_stairs, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"Qv" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"QA" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "grass2" + }, +/turf/simulated/floor/outdoors/snow/virgo3b, +/area/submap/GreatWolfDen) +"QJ" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"QM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"Rb" = ( +/obj/item/weapon/bone/leg, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"Rf" = ( +/obj/structure/loot_pile/surface/bones, +/obj/structure/flora/sif/subterranean{ + icon_state = "frostbelle" + }, +/obj/item/weapon/gun/projectile/pistol, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"Rj" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/outdoors/snow/virgo3b, +/area/submap/GreatWolfDen) +"Rx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"RW" = ( +/obj/structure/flora/rocks2, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"SO" = ( +/obj/item/weapon/telecube/mated, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"SQ" = ( +/obj/structure/cliff/automatic/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"Tf" = ( +/obj/item/weapon/paper/card/heart{ + desc = "A gift card with a heart on the cover. This appears to be a thank-you to the.. wolves??" + }, +/obj/item/weapon/paper/crumpled{ + icon_state = "scrap_bloodied"; + info = "The wolves dragged me back to their den when they found me incapacitated, and nursed me back to health, instead of eating me. I don't know why. Anyway, they're a bunch of goodboyes. Don't let the bones strewn about their den frighten you. Just be nice to them and they won't hurt you."; + name = "survivor's note" + }, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"Tn" = ( +/obj/structure/bonfire, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/GreatWolfDen) +"Ty" = ( +/obj/random/trash_pile, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"UV" = ( +/obj/structure/cliff/automatic{ + dir = 10 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"Vq" = ( +/obj/structure/loot_pile/surface/bones, +/obj/random/projectile/scrapped_gun, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"WH" = ( +/obj/structure/loot_pile/surface/bones, +/obj/item/weapon/storage/toolbox/syndicate, +/obj/random/projectile/scrapped_gun, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"WR" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "glowplant1" + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"WY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rocks1, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"Xx" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "grass1" + }, +/turf/simulated/floor/outdoors/snow/virgo3b, +/area/submap/GreatWolfDen) +"Xy" = ( +/obj/item/weapon/bone/ribs, +/obj/effect/landmark/loot_spawn/low, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"Yw" = ( +/obj/structure/loot_pile/surface/bones, +/obj/effect/landmark/loot_spawn/low, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"Yy" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"Zj" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/GreatWolfDen) +"Zk" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "glowplant2" + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"Zu" = ( +/obj/structure/loot_pile/surface/bones, +/obj/effect/landmark/loot_spawn/low, +/obj/effect/decal/cleanable/dirt, +/obj/random/projectile/scrapped_gun, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) + +(1,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +"} +(2,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +Ty +pS +pS +Qv +Qv +Qv +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +"} +(3,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +Qv +Qv +Qv +HC +Qv +Qv +Qv +Qv +Qv +Qv +Qv +pS +pS +pS +pS +pS +pS +Qv +pS +pS +"} +(4,1,1) = {" +pS +pS +pS +pS +Qv +pS +pS +Qv +Qv +Qv +bp +dX +dX +dX +dX +dX +dX +dX +Dj +Qv +HC +Qv +pS +pS +pS +pS +Qv +Qv +pS +pS +"} +(5,1,1) = {" +pS +pS +pS +pS +pS +pS +Qv +bp +dX +dX +OV +tm +tm +tm +tm +tm +tm +tm +OW +dX +dX +Dj +Qv +Qv +Qv +pS +pS +pS +pS +pS +"} +(6,1,1) = {" +pS +pS +pS +pS +pS +Qv +Qv +fh +tm +tm +tm +tm +tm +tm +tm +tm +tm +tm +tm +tm +tm +OW +dX +Dj +Qv +Qv +pS +pS +pS +pS +"} +(7,1,1) = {" +pS +pS +pS +pS +Qv +Qv +bp +OV +tm +tm +tm +tm +jg +BR +Mv +tm +tm +tm +tm +tm +tm +tm +tm +OW +Dj +Qv +pS +pS +pS +pS +"} +(8,1,1) = {" +pS +pS +pS +pS +pS +Qv +fh +tm +tm +tm +yi +CR +xK +uY +xu +Zu +zs +xu +xu +Mv +tm +tm +tm +tm +OW +Dj +Qv +pS +pS +pS +"} +(9,1,1) = {" +pS +pS +pS +pS +pS +Qv +fh +tm +tm +Mc +QJ +qb +lu +mk +uY +xu +xu +kk +xu +xu +xu +tb +tm +tm +tm +OL +Qv +Qv +pS +pS +"} +(10,1,1) = {" +pS +pS +pS +pS +Qv +Qv +fh +tm +tm +mm +Rb +EU +lQ +BR +Kb +QM +Iw +xu +RW +Zk +xu +xu +tm +tm +tm +OL +Qv +Qv +Qv +pS +"} +(11,1,1) = {" +pS +pS +pS +Qv +Qv +Qv +fh +tm +tm +bz +Pl +bI +DV +tm +wc +xu +xu +xu +xu +xu +Cd +xu +kg +tm +tm +OW +Dj +Qv +Qv +pS +"} +(12,1,1) = {" +pS +pS +pS +Qv +HC +Qv +LT +UV +tm +tm +bI +CR +tm +tm +rn +PX +Tn +Zj +Zj +uz +xu +xu +BR +tm +tm +tm +OL +Qv +Qv +pS +"} +(13,1,1) = {" +pS +pS +Id +pS +Qv +Qv +Qv +fh +tm +tm +Tf +Ko +tm +tm +OB +uz +Zj +Xx +rM +Zj +Iw +xu +xu +tm +tm +tm +OL +Qv +Qv +pS +"} +(14,1,1) = {" +pS +pS +pS +pS +Id +Qv +Qv +fh +tm +tm +CR +CR +tm +yF +Yy +Fy +Zj +Rj +Kp +Lz +Zj +xu +uz +Xy +tm +tm +OL +Qv +Qv +Qv +"} +(15,1,1) = {" +pS +Qv +Id +fX +pS +dM +Pa +OV +tm +LJ +Pf +CR +tm +ju +aa +Lz +eq +bY +MD +yG +Zj +xu +If +xu +tm +tm +OL +Qv +HC +Qv +"} +(16,1,1) = {" +Qv +pS +Qv +Id +Rx +zV +LP +Qb +AG +CR +CR +CR +tm +SO +tC +Zj +Zj +bY +QA +Zj +kL +uz +xu +Mv +tm +tm +OL +Qv +Qv +Qv +"} +(17,1,1) = {" +pS +pS +Qv +Rx +WY +Rx +AK +UV +tm +tm +tm +tm +tm +vu +WR +GZ +nv +KU +Rj +Zj +xu +xu +xu +xu +tm +tm +OL +Qv +Qv +pS +"} +(18,1,1) = {" +pS +pS +pS +pS +pS +pS +Qv +LT +UV +tm +tm +tm +zs +xu +xK +Ic +Zj +Zj +bY +Zj +nd +xu +xu +lL +tm +tm +OL +Qv +Qv +pS +"} +(19,1,1) = {" +pS +pS +pS +pS +pS +pS +Qv +Qv +fh +tm +tm +tm +tm +Hb +xu +uz +xu +Zj +Zj +Zj +xu +uz +xt +tm +tm +hJ +SQ +Qv +pS +Qv +"} +(20,1,1) = {" +pS +pS +pS +pS +pS +pS +Qv +Qv +fh +tm +tm +tm +tm +PC +xu +Yy +kk +Ic +uz +xu +Vq +xt +Rf +tm +tm +OL +Qv +Qv +pS +pS +"} +(21,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +Qv +LT +UV +tm +tm +tm +tm +xu +WH +iX +yH +Yy +xu +Vq +Yw +tm +tm +tm +OL +Qv +Qv +Qv +pS +"} +(22,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +Qv +HC +fh +tm +tm +tm +tm +zl +BR +xu +ge +xu +Vq +xt +tm +tm +tm +hJ +SQ +Qv +Ty +Qv +pS +"} +(23,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +Qv +LT +UV +tm +tm +tm +tm +tm +tm +tm +tm +tm +tm +tm +tm +hJ +SQ +Qv +Qv +pS +pS +pS +"} +(24,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +Qv +Qv +LT +Lx +UV +tm +tm +tm +tm +tm +tm +tm +tm +tm +hJ +SQ +Qv +Qv +Qv +pS +pS +pS +"} +(25,1,1) = {" +pS +pS +pS +pS +pS +Qv +pS +pS +pS +Qv +Qv +Qv +LT +Lx +UV +tm +tm +hJ +Lx +Lx +Lx +Lx +SQ +Qv +Qv +pS +pS +pS +pS +pS +"} +(26,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +pS +Qv +Qv +Qv +Qv +Ty +LT +Lx +Lx +SQ +Qv +Qv +Qv +Qv +Qv +Qv +pS +pS +pS +pS +pS +pS +"} +(27,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +Qv +Qv +Qv +Qv +Qv +Qv +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +"} +(28,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +Qv +Qv +HC +Qv +Qv +pS +pS +pS +pS +pS +pS +Qv +Qv +pS +pS +pS +"} +(29,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +Qv +pS +pS +pS +pS +pS +pS +"} +(30,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +"} diff --git a/maps/submaps/surface_submaps/plains/leopardmanderden.dmm b/maps/submaps/surface_submaps/plains/leopardmanderden.dmm new file mode 100644 index 0000000000..006b3c6689 --- /dev/null +++ b/maps/submaps/surface_submaps/plains/leopardmanderden.dmm @@ -0,0 +1,1055 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aK" = ( +/obj/item/weapon/ore/silver, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"aT" = ( +/obj/structure/table/bench/sifwooden/padded, +/mob/living/simple_mob/animal/sif/siffet{ + faction = "neutral"; + max_co2 = 0; + max_tox = 0; + min_oxy = 0; + minbodytemp = 0 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"bj" = ( +/obj/item/weapon/bluespace_crystal, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"bO" = ( +/obj/item/stack/material/gold, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"cu" = ( +/turf/simulated/floor/outdoors/rocks/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"dA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/simple_door/sifwood, +/turf/simulated/floor/outdoors/rocks/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"eD" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"eF" = ( +/obj/structure/ledge/ledge_stairs, +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/template_noop) +"fe" = ( +/obj/item/weapon/coin/diamond, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"fQ" = ( +/obj/effect/landmark/loot_spawn/low, +/obj/item/weapon/ore/gold, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"gg" = ( +/obj/random/obstruction, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"gC" = ( +/obj/item/weapon/flame/lighter/zippo/gold, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"gD" = ( +/obj/structure/flora/smallbould, +/turf/simulated/floor/outdoors/rocks/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"gP" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"gU" = ( +/obj/item/weapon/coin/gold, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"hi" = ( +/obj/structure/sign/warning/falling, +/turf/simulated/wall/gold, +/area/submap/LeopardmanderDen) +"hr" = ( +/obj/structure/flora/rocks1, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"hw" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"iV" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"jb" = ( +/obj/machinery/crystal/ice, +/turf/template_noop, +/area/template_noop) +"jE" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"ki" = ( +/obj/structure/table/bench/sifwooden/padded, +/obj/item/clothing/head/pin/flower/violet, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"kx" = ( +/obj/item/stack/material/gold, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"kO" = ( +/obj/structure/cliff/automatic{ + dir = 6 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"lb" = ( +/obj/structure/cliff/automatic{ + dir = 10 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"ll" = ( +/obj/structure/cliff/automatic/corner{ + dir = 10 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"mi" = ( +/obj/structure/cliff/automatic/ramp{ + dir = 9 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"mu" = ( +/obj/structure/flora/rocks2, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"mW" = ( +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"nG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"nR" = ( +/mob/living/simple_mob/animal/sif/sakimm, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"oD" = ( +/obj/fiftyspawner/silver, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"pQ" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"qa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"qg" = ( +/obj/structure/bed/chair/sofa/right{ + dir = 8 + }, +/turf/simulated/floor/outdoors/rocks/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"rn" = ( +/turf/template_noop, +/area/template_noop) +"ro" = ( +/obj/structure/flora/lily3, +/turf/simulated/floor/water/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"rD" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"rG" = ( +/obj/structure/flora/pottedplant/flower, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"sl" = ( +/obj/machinery/crystal/ice, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"sN" = ( +/mob/living/simple_mob/vore/otie/red/chubby{ + desc = "Seems this ominous looking longdog has been infused with wicked infernal forces. What an absolute unit. It has a collar around one of its ankles that reads 'Tawny'."; + name = "Tawny" + }, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"sY" = ( +/mob/living/simple_mob/animal/sif/sakimm{ + faction = "neutral"; + max_co2 = 0; + max_tox = 0; + min_oxy = 0; + minbodytemp = 0 + }, +/turf/template_noop, +/area/template_noop) +"tC" = ( +/obj/item/weapon/ore/diamond, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"tP" = ( +/mob/living/simple_mob/animal/sif/sakimm{ + faction = "neutral"; + max_co2 = 0; + max_tox = 0; + min_oxy = 0; + minbodytemp = 0 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"uw" = ( +/obj/structure/ledge/ledge_stairs{ + dir = 4 + }, +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/template_noop) +"uz" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"xf" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"xg" = ( +/obj/item/weapon/ore/silver, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"xL" = ( +/obj/random/outcrop, +/turf/simulated/floor/outdoors/rocks/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"yl" = ( +/turf/simulated/wall/golddiamond, +/area/submap/LeopardmanderDen) +"zJ" = ( +/mob/living/simple_mob/animal/sif/siffet{ + faction = "neutral"; + max_co2 = 0; + max_tox = 0; + min_oxy = 0; + minbodytemp = 0 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"zW" = ( +/obj/structure/cliff/automatic/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"Ah" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"AF" = ( +/turf/simulated/floor/water/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"AP" = ( +/obj/structure/bed/chair/sofa/right{ + dir = 4 + }, +/turf/simulated/floor/outdoors/rocks/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"BE" = ( +/obj/item/stack/material/diamond, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"DI" = ( +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"DJ" = ( +/obj/structure/flora/log1, +/turf/simulated/floor/water/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"Ez" = ( +/obj/structure/flora/bboulder2, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"EH" = ( +/obj/structure/ledge/ledge_stairs, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"Gl" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"Gw" = ( +/obj/item/weapon/ore/gold, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"Hx" = ( +/obj/structure/sign/warning/falling, +/turf/simulated/wall/sifwood, +/area/template_noop) +"HV" = ( +/obj/structure/bed/chair/sofa/left{ + dir = 4 + }, +/turf/simulated/floor/outdoors/rocks/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"Ih" = ( +/obj/random/obstruction, +/turf/template_noop, +/area/template_noop) +"IQ" = ( +/turf/simulated/mineral/ignore_mapgen, +/area/submap/LeopardmanderDen) +"Jk" = ( +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/template_noop) +"Kd" = ( +/obj/structure/cliff/automatic, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"Kv" = ( +/obj/random/outcrop, +/turf/template_noop, +/area/template_noop) +"KT" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/tree/bigtree, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"Lb" = ( +/obj/structure/cliff/automatic{ + dir = 5 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"Ls" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"MQ" = ( +/obj/machinery/crystal/ice, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"NS" = ( +/obj/structure/cliff/automatic{ + dir = 10 + }, +/obj/structure/railing/grey, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"Pc" = ( +/obj/item/stack/material/diamond, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"PO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rocks2, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"Qa" = ( +/obj/machinery/crystal/ice, +/turf/simulated/floor/outdoors/rocks/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"QQ" = ( +/obj/item/stack/material/gold, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"RA" = ( +/obj/fiftyspawner/gold, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"Sk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rocks1, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"Sm" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"SM" = ( +/obj/structure/flora/log2, +/turf/simulated/floor/water/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"Te" = ( +/obj/item/weapon/coin/silver, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"Tj" = ( +/mob/living/simple_mob/animal/sif/tymisian{ + faction = "neutral"; + max_co2 = 0; + max_tox = 0; + min_oxy = 0; + minbodytemp = 0 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"Tt" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/item/weapon/coin/iron, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"TF" = ( +/obj/structure/bed/chair/sofa/left{ + dir = 8 + }, +/turf/simulated/floor/outdoors/rocks/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"Uc" = ( +/obj/item/weapon/ore/diamond, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"Ul" = ( +/obj/item/weapon/ore/gold, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"UA" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/item/weapon/coin/gold, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"Vi" = ( +/obj/structure/flora/lily2, +/turf/simulated/floor/water/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"VM" = ( +/turf/simulated/wall/gold, +/area/submap/LeopardmanderDen) +"VV" = ( +/obj/structure/flora/lily1, +/turf/simulated/floor/water/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"WB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/rocks/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"Xt" = ( +/mob/living/simple_mob/vore/leopardmander{ + max_co2 = 0; + min_oxy = 0 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"XR" = ( +/obj/effect/map_effect/interval/effect_emitter/steam, +/turf/simulated/floor/water/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"Yq" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/template_noop) +"YJ" = ( +/obj/item/weapon/ore/diamond, +/turf/simulated/floor/outdoors/grass/sif/forest{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) +"Zj" = ( +/mob/living/simple_mob/animal/sif/tymisian{ + faction = "neutral" + }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) + +(1,1,1) = {" +rn +Ih +iV +Yq +Yq +Yq +Yq +Yq +Yq +Yq +pQ +Sm +Sm +Sm +Sm +rn +rn +rn +rn +rn +"} +(2,1,1) = {" +rn +iV +kO +IQ +IQ +IQ +IQ +IQ +IQ +IQ +Lb +Yq +Yq +Yq +pQ +Sm +sY +rn +Sm +rn +"} +(3,1,1) = {" +iV +kO +IQ +IQ +Qa +yl +IQ +IQ +IQ +IQ +IQ +IQ +IQ +IQ +Lb +Yq +pQ +Sm +Ih +rn +"} +(4,1,1) = {" +Ls +IQ +IQ +cu +xf +bj +Pc +xf +IQ +cu +IQ +IQ +IQ +IQ +IQ +IQ +Lb +pQ +Sm +rn +"} +(5,1,1) = {" +Ls +IQ +IQ +xL +BE +DI +PO +DI +kx +gU +DI +Uc +xL +cu +IQ +IQ +IQ +Lb +Yq +pQ +"} +(6,1,1) = {" +Ls +IQ +IQ +xf +fe +Xt +AF +Vi +YJ +AF +Ah +xg +Zj +Qa +cu +IQ +IQ +IQ +IQ +gP +"} +(7,1,1) = {" +Ls +IQ +IQ +RA +DI +AF +SM +AF +AF +ro +AF +nR +DI +Pc +xL +IQ +IQ +IQ +IQ +gP +"} +(8,1,1) = {" +Ls +IQ +cu +xf +mu +AF +AF +AF +UA +XR +AF +DJ +hr +tC +Uc +IQ +Qa +IQ +IQ +gP +"} +(9,1,1) = {" +Ls +IQ +IQ +IQ +QQ +AF +AF +rD +KT +Tt +AF +AF +AF +fQ +xf +IQ +HV +AP +IQ +gP +"} +(10,1,1) = {" +Ls +IQ +IQ +cu +gC +nG +AF +XR +Ez +VV +AF +AF +ki +Gw +bO +cu +cu +cu +IQ +gP +"} +(11,1,1) = {" +Ls +IQ +IQ +cu +xL +DI +DI +AF +AF +AF +AF +AF +aT +Ul +qa +VM +qg +TF +IQ +gP +"} +(12,1,1) = {" +ll +lb +IQ +IQ +VM +Qa +sN +aK +Te +DJ +Ah +rG +Sk +qa +oD +IQ +IQ +IQ +IQ +gP +"} +(13,1,1) = {" +rn +ll +lb +IQ +IQ +IQ +IQ +Qa +DI +hr +DI +xf +xf +xL +cu +IQ +IQ +IQ +IQ +gP +"} +(14,1,1) = {" +rn +gg +Ls +IQ +IQ +IQ +IQ +IQ +IQ +IQ +xf +cu +cu +Qa +cu +IQ +IQ +IQ +Gl +zW +"} +(15,1,1) = {" +rn +Sm +ll +jE +lb +IQ +IQ +IQ +IQ +IQ +gD +cu +WB +IQ +IQ +IQ +IQ +Gl +zW +rn +"} +(16,1,1) = {" +rn +Sm +gg +Sm +ll +lb +IQ +IQ +IQ +IQ +IQ +hi +dA +VM +IQ +Gl +jE +zW +rn +Kv +"} +(17,1,1) = {" +rn +rn +Sm +rn +Sm +ll +jE +jE +jE +jE +jE +NS +uw +hw +jE +zW +Sm +jb +zJ +rn +"} +(18,1,1) = {" +rn +Sm +Sm +Sm +Tj +Sm +Sm +Hx +Sm +sl +eD +mW +uw +Kd +tP +rn +Tj +rn +rn +rn +"} +(19,1,1) = {" +rn +rn +Sm +rn +Sm +tP +Sm +zJ +Sm +EH +eF +eF +Jk +Kd +Sm +Ih +rn +rn +rn +rn +"} +(20,1,1) = {" +rn +rn +rn +rn +rn +Sm +Sm +Sm +Sm +MQ +mi +uz +uz +zW +rn +rn +rn +rn +rn +rn +"} diff --git a/maps/submaps/surface_submaps/plains/otieshelter.dmm b/maps/submaps/surface_submaps/plains/otieshelter.dmm new file mode 100644 index 0000000000..137930b5f8 --- /dev/null +++ b/maps/submaps/surface_submaps/plains/otieshelter.dmm @@ -0,0 +1,1095 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ag" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"aj" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/OtieShelter) +"ar" = ( +/obj/structure/closet/secure_closet/medical_wall/anesthetics, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"cq" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet/virgo3b, +/area/submap/OtieShelter) +"cU" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/OtieShelter) +"eI" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/OtieShelter) +"fw" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/OtieShelter) +"gr" = ( +/obj/machinery/porta_turret/poi, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/OtieShelter) +"gN" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"hh" = ( +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/item/trash/bowl, +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"hk" = ( +/obj/structure/grille/rustic, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/structure/window/phoronreinforced, +/turf/simulated/floor/plating, +/area/submap/OtieShelter) +"hD" = ( +/obj/effect/decal/cleanable/filth, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"iv" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/surgery, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"iC" = ( +/obj/effect/decal/cleanable/blood, +/mob/living/simple_mob/vore/otie/friendly{ + health = 0 + }, +/turf/template_noop, +/area/template_noop) +"iY" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/item/trash/bowl, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"jc" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"jo" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"jy" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/carpet/turcarpet/virgo3b, +/area/submap/OtieShelter) +"jI" = ( +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/blood/tracks{ + color = "red"; + desc = "Your instincts say you shouldn't be following these."; + dir = 4; + icon = 'icons/effects/blood.dmi'; + icon_state = "tracks" + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"kF" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/dogbed, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"kX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"lv" = ( +/obj/structure/door_assembly, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"lP" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "4" + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"lQ" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"lY" = ( +/obj/machinery/light, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "4" + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"mu" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/mob/living/simple_mob/vore/otie/friendly/chubby, +/obj/item/trash/bowl, +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"mC" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"mJ" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/submap/OtieShelter) +"nK" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "4" + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"nR" = ( +/obj/structure/table/marble, +/obj/item/weapon/newspaper, +/obj/item/weapon/paper/card/heart, +/turf/simulated/floor/carpet/turcarpet/virgo3b, +/area/submap/OtieShelter) +"ob" = ( +/obj/structure/grille/rustic, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced, +/turf/simulated/floor/plating, +/area/submap/OtieShelter) +"od" = ( +/obj/machinery/door/window, +/obj/item/weapon/bone, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"op" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "4" + }, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/OtieShelter) +"pa" = ( +/obj/structure/loot_pile/surface/bones, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/filth, +/obj/effect/decal/cleanable/filth, +/obj/random/handgun/sec, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"pd" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"rb" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/OtieShelter) +"sJ" = ( +/obj/structure/grille/rustic, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced, +/turf/simulated/floor/plating, +/area/submap/OtieShelter) +"tt" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/mob/living/simple_mob/vore/otie/cotie, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"tz" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/turf/simulated/floor/carpet/turcarpet/virgo3b, +/area/submap/OtieShelter) +"tP" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/item/trash/bowl, +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"uw" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/dogbed, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"uD" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"uS" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"vA" = ( +/obj/item/weapon/bone, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"vB" = ( +/obj/machinery/door/window{ + dir = 8 + }, +/obj/item/weapon/bone, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"vV" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"wg" = ( +/turf/simulated/floor/carpet/turcarpet/virgo3b, +/area/submap/OtieShelter) +"wO" = ( +/obj/structure/dogbed, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"xf" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/reagent_dispensers, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"xj" = ( +/obj/structure/table/marble, +/obj/item/modular_computer/laptop/preset/custom_loadout/cheap, +/turf/simulated/floor/carpet/turcarpet/virgo3b, +/area/submap/OtieShelter) +"xI" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/mob/living/simple_mob/vore/otie/friendly, +/obj/structure/dogbed, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"yD" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/adv, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"Aa" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/mob/living/simple_mob/vore/otie/cotie/phoron, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"At" = ( +/obj/structure/table/marble, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/simulated/floor/carpet/turcarpet/virgo3b, +/area/submap/OtieShelter) +"AO" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"AQ" = ( +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"BM" = ( +/obj/item/weapon/melee/baton/cattleprod, +/obj/effect/decal/cleanable/blood/tracks{ + color = "red"; + desc = "Your instincts say you shouldn't be following these."; + dir = 4; + icon = 'icons/effects/blood.dmi'; + icon_state = "tracks" + }, +/obj/effect/decal/cleanable/filth, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"Cw" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"CM" = ( +/obj/structure/closet/wardrobe, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"EE" = ( +/obj/machinery/door/airlock/engineering, +/turf/simulated/floor/plating, +/area/submap/OtieShelter) +"EI" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"Hk" = ( +/obj/machinery/door/window, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"HV" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"Ih" = ( +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Ij" = ( +/mob/living/simple_mob/vore/otie/cotie{ + max_co2 = 0; + max_tox = 0 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"IF" = ( +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"JY" = ( +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/OtieShelter) +"KJ" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"Lr" = ( +/obj/structure/door_assembly, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/OtieShelter) +"LF" = ( +/obj/structure/ghost_pod/manual/lost_drone/dogborg, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"Mc" = ( +/obj/structure/fireaxecabinet{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"Mg" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"Mn" = ( +/mob/living/simple_mob/vore/otie/red/chubby, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Mz" = ( +/turf/simulated/wall/r_wall, +/area/submap/OtieShelter) +"MK" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"Nd" = ( +/obj/structure/table/marble, +/obj/structure/table/marble, +/obj/item/device/radio/phone, +/turf/simulated/floor/carpet/turcarpet/virgo3b, +/area/submap/OtieShelter) +"Nh" = ( +/obj/item/weapon/bedsheet/browndouble, +/obj/structure/bed/double/padded, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"Np" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/item/trash/bowl, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"NJ" = ( +/obj/machinery/door/window{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Of" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"OJ" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/obj/effect/decal/cleanable/blood/tracks/paw{ + icon_state = "paw1" + }, +/obj/item/ammo_casing/spent, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"Pn" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/item/trash/bowl, +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Px" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"Qr" = ( +/turf/template_noop, +/area/template_noop) +"Ro" = ( +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"RW" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "PAPC"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/OtieShelter) +"Sn" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet/virgo3b, +/area/submap/OtieShelter) +"SD" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"TP" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/OtieShelter) +"UF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"UH" = ( +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/item/trash/bowl, +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"VE" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/effect/decal/cleanable/blood/tracks/paw{ + icon_state = "paw1" + }, +/turf/simulated/floor/carpet/turcarpet/virgo3b, +/area/submap/OtieShelter) +"VL" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/carpet/turcarpet/virgo3b, +/area/submap/OtieShelter) +"VY" = ( +/mob/living/simple_mob/vore/otie/cotie/chubby, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Wl" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/windoor_assembly, +/obj/structure/windoor_assembly{ + dir = 2 + }, +/turf/simulated/floor/virgo3b_indoors, +/area/submap/OtieShelter) +"WY" = ( +/obj/machinery/oxygen_pump/mobile/anesthetic, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"XB" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"XG" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/mob/living/simple_mob/vore/otie/red/friendly, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) + +(1,1,1) = {" +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +"} +(2,1,1) = {" +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +"} +(3,1,1) = {" +Qr +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Qr +Qr +Qr +"} +(4,1,1) = {" +Qr +Mz +wO +Of +kF +Of +kF +Of +xI +Of +kF +Of +Mz +Nh +MK +gN +Mz +Qr +Qr +Qr +"} +(5,1,1) = {" +Qr +Mz +IF +VY +tt +IF +Aa +Ih +lQ +IF +lQ +IF +Mz +vV +Ro +Ro +Mz +Qr +Qr +Qr +"} +(6,1,1) = {" +Qr +Mz +hh +Hk +tP +Hk +Np +od +Np +Hk +mu +Hk +Mz +CM +Ro +Ro +Mz +gr +Qr +Qr +"} +(7,1,1) = {" +Qr +Mz +ar +Px +Px +Px +Px +Px +Px +Px +Px +Px +Mz +Mz +fw +Mz +mJ +rb +Lr +Qr +"} +(8,1,1) = {" +Qr +Mz +jo +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +fw +mC +nK +ag +AQ +aj +op +iC +"} +(9,1,1) = {" +Qr +Mz +Mc +AQ +AQ +AO +Cw +yD +AO +AQ +AQ +uD +Mz +Mz +lv +Mz +mJ +rb +JY +Qr +"} +(10,1,1) = {" +Qr +Mz +HV +WY +jc +AO +iv +AO +AO +vA +hD +AQ +sJ +Sn +tz +wg +Mz +gr +Qr +Qr +"} +(11,1,1) = {" +Qr +Mz +jo +AQ +AQ +AQ +AQ +AQ +hD +pa +OJ +AQ +ob +jy +Nd +nR +Mz +Qr +Qr +Qr +"} +(12,1,1) = {" +Qr +Mz +LF +UF +UF +UF +UF +UF +UF +BM +kX +EI +hk +wg +xj +cq +Mz +Qr +Qr +Qr +"} +(13,1,1) = {" +Qr +Mz +UH +NJ +Pn +vB +Pn +NJ +Mg +jI +xf +lY +Mz +VL +At +wg +Mz +Qr +Qr +Qr +"} +(14,1,1) = {" +Qr +Mz +IF +Ij +XG +IF +lQ +Mn +iY +lP +XB +pd +Wl +VE +wg +wg +Mz +Qr +Qr +Qr +"} +(15,1,1) = {" +Qr +Mz +wO +uS +kF +uS +kF +uS +uw +SD +KJ +AQ +Mz +wg +wg +wg +Mz +Qr +Qr +Qr +"} +(16,1,1) = {" +Qr +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +EE +Mz +Mz +Mz +Mz +Mz +Qr +Qr +Qr +"} +(17,1,1) = {" +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Mz +RW +cU +Mz +Qr +Qr +Qr +Qr +Qr +Qr +"} +(18,1,1) = {" +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Mz +TP +eI +Mz +Qr +Qr +Qr +Qr +Qr +Qr +"} +(19,1,1) = {" +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Mz +Mz +Mz +Mz +Qr +Qr +Qr +Qr +Qr +Qr +"} +(20,1,1) = {" +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +"} diff --git a/maps/submaps/surface_submaps/plains/plains.dm b/maps/submaps/surface_submaps/plains/plains.dm index 518be7521a..70ad1907c8 100644 --- a/maps/submaps/surface_submaps/plains/plains.dm +++ b/maps/submaps/surface_submaps/plains/plains.dm @@ -2,17 +2,17 @@ // This is so CI can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors. // When adding a new PoI, please add it to this list. #if MAP_TEST -#include "boathouse.dmm" +#include "Boathouse.dmm" #include "bonfire.dmm" -#include "buriedtreasure.dmm" -#include "buriedtreasure2.dmm" -#include "buriedtreasure3.dmm" +#include "Buriedtreasure.dmm" +#include "Buriedtreasure2.dmm" +#include "Buriedtreasure3.dmm" #include "camp.dmm" #include "chemspill1.dmm" #include "construction.dmm" -#include "diner.dmm" -#include "epod.dmm" -#include "epod2.dmm" +#include "Diner.dmm" +#include "Epod.dmm" +#include "Epod2.dmm" #include "explorerhouse.dmm" #include "farm.dmm" #include "field.dmm" @@ -24,12 +24,12 @@ #include "methlab.dmm" #include "oldhotel.dmm" #include "oldlibrary.dmm" -#include "pascalb.dmm" +#include "Pascalb.dmm" #include "pooledrocks.dmm" #include "priderock.dmm" -#include "rationcache.dmm" +#include "Rationcache.dmm" #include "rockyoutcrop.dmm" -#include "shakden.dmm" +#include "Shakden.dmm" #include "snow1.dmm" #include "snow2.dmm" #include "snow3.dmm" diff --git a/maps/submaps/surface_submaps/wilderness/bountyhunters.dmm b/maps/submaps/surface_submaps/wilderness/bountyhunters.dmm index 15ff2b4c39..3fc58b5b58 100644 --- a/maps/submaps/surface_submaps/wilderness/bountyhunters.dmm +++ b/maps/submaps/surface_submaps/wilderness/bountyhunters.dmm @@ -100,7 +100,7 @@ /turf/simulated/floor/concrete, /area/submap/BountyHunters) "mi" = ( -/mob/living/simple_mob/mobs_monsters/clowns/destroyer, +/mob/living/simple_mob/clowns/destroyer, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/concrete, /area/submap/BountyHunters) diff --git a/maps/submaps/surface_submaps/wilderness/chasm.dmm b/maps/submaps/surface_submaps/wilderness/chasm.dmm index c0b3121fc6..ddd128f087 100644 --- a/maps/submaps/surface_submaps/wilderness/chasm.dmm +++ b/maps/submaps/surface_submaps/wilderness/chasm.dmm @@ -110,7 +110,7 @@ /area/submap/Chasm) "kR" = ( /obj/effect/floor_decal/rust, -/mob/living/simple_mob/animal/space/jelly{ +/mob/living/simple_mob/vore/jelly{ health = 150; maxHealth = 150; name = "Cavern jelly blob" @@ -363,7 +363,7 @@ /turf/simulated/floor/plating, /area/submap/Chasm) "DH" = ( -/mob/living/simple_mob/animal/space/jelly, +/mob/living/simple_mob/vore/jelly, /turf/simulated/floor/outdoors/rocks{ outdoors = 0 }, @@ -606,7 +606,7 @@ /obj/structure/cliff/automatic/corner{ dir = 10 }, -/mob/living/simple_mob/animal/space/jelly{ +/mob/living/simple_mob/vore/jelly{ health = 150; maxHealth = 150; name = "Cavern jelly blob" @@ -661,7 +661,7 @@ }, /area/submap/Chasm) "Zn" = ( -/mob/living/simple_mob/animal/space/jelly{ +/mob/living/simple_mob/vore/jelly{ health = 150; maxHealth = 150; name = "Cavern jelly blob" @@ -672,7 +672,7 @@ }, /area/submap/Chasm) "ZS" = ( -/mob/living/simple_mob/animal/space/jelly{ +/mob/living/simple_mob/vore/jelly{ health = 150; maxHealth = 150; name = "Cavern jelly blob" diff --git a/maps/submaps/surface_submaps/wilderness/dogbase.dmm b/maps/submaps/surface_submaps/wilderness/dogbase.dmm index 697c7da787..3a6416cc1b 100644 --- a/maps/submaps/surface_submaps/wilderness/dogbase.dmm +++ b/maps/submaps/surface_submaps/wilderness/dogbase.dmm @@ -1,1888 +1,1863 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ab" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/corner/red/border{ - dir = 5; - icon_state = "bordercolor" - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"ae" = ( -/mob/living/simple_mob/animal/wolf/direwolf/dog/sec{ - desc = "The biggest and baddest guard dog around."; - faction = "syndicate"; - name = "syndicate guard dog" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"ay" = ( -/obj/structure/dogbed, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/tajaran, -/obj/random/maintenance/medical, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"aF" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/submap/DogBase) -"aX" = ( -/obj/structure/dogbed, -/obj/effect/decal/remains/tajaran, -/obj/effect/decal/cleanable/filth, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/bone, -/obj/random/maintenance/security, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"bl" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/submap/DogBase) -"bw" = ( -/obj/item/weapon/storage/belt/janitor, -/obj/effect/floor_decal/corner/purple/diagonal, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"bx" = ( -/obj/machinery/porta_turret/poi{ - faction = "syndicate" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"bT" = ( -/obj/structure/safe, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"cS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/mob/living/simple_mob/mechanical/viscerator/mercenary, -/turf/simulated/floor/plating, -/area/submap/DogBase) -"ec" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"eA" = ( -/obj/machinery/vending/cola, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"eI" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/floor_decal/corner/purple/diagonal, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"eZ" = ( -/mob/living/simple_mob/animal/wolf/direwolf/dog/sec{ - desc = "The biggest and baddest guard dog around."; - faction = "syndicate"; - name = "syndicate guard dog" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"fg" = ( -/obj/structure/closet/l3closet/janitor, -/obj/effect/floor_decal/corner/purple/diagonal, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"fI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/maintenance/cargo, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"hl" = ( -/obj/effect/floor_decal/borderfloor/corner, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"hp" = ( -/turf/template_noop, -/area/template_noop) -"hA" = ( -/obj/structure/table/woodentable, -/obj/item/stolenpackage, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"hZ" = ( -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/submap/DogBase) -"ik" = ( -/obj/random/mob/merc/all, -/turf/template_noop, -/area/template_noop) -"iv" = ( -/obj/structure/dogbed, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/filth, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/bone/ribs, -/obj/random/maintenance/research, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"jz" = ( -/obj/machinery/vending/cigarette, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"jD" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"jO" = ( -/obj/structure/dogbed, -/obj/effect/decal/remains/unathi, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/maintenance/security, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"kl" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/maintenance/cargo, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"km" = ( -/obj/effect/decal/remains/human, -/turf/template_noop, -/area/template_noop) -"la" = ( -/obj/effect/map_helper/no_phaseshift, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"lb" = ( -/obj/random/mob/merc/all, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"lg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/diagonal, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"lh" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/mob/living/simple_mob/mechanical/viscerator/mercenary, -/turf/simulated/floor/plating, -/area/submap/DogBase) -"lk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"lm" = ( -/obj/structure/table/woodentable, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"lr" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/submap/DogBase) -"lN" = ( -/obj/machinery/porta_turret/poi{ - faction = "syndicate" - }, -/turf/simulated/floor, -/area/submap/DogBase) -"lX" = ( -/obj/effect/floor_decal/borderfloor, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"ng" = ( -/mob/living/bot/cleanbot{ - faction = "syndicate" - }, -/obj/effect/floor_decal/corner/purple/diagonal, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"np" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/gun/projectile/pistol, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"oW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/template_noop) -"pR" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"qg" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"qk" = ( -/obj/machinery/porta_turret/poi{ - faction = "syndicate" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"qI" = ( -/obj/structure/dogbed, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/bone, -/obj/random/maintenance/security, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"qO" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"qZ" = ( -/obj/effect/decal/remains/ribcage, -/turf/template_noop, -/area/template_noop) -"re" = ( -/mob/living/simple_mob/animal/wolf/direwolf/dog/sec{ - desc = "The biggest and baddest guard dog around."; - faction = "syndicate"; - name = "syndicate guard dog" - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"rH" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"se" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"tp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating/sif/planetuse, -/area/submap/DogBase) -"tt" = ( -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/submap/DogBase) -"tz" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 4; - icon_state = "bordercolor" - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"tN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"vq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"vX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/mob/living/simple_mob/mechanical/viscerator/mercenary, -/turf/simulated/floor/plating, -/area/submap/DogBase) -"wI" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"wQ" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 8; - icon_state = "bordercolor" - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"wS" = ( -/mob/living/simple_mob/animal/wolf/direwolf/dog/sec{ - desc = "The biggest and baddest guard dog around."; - faction = "syndicate"; - name = "syndicate guard dog" - }, -/turf/template_noop, -/area/template_noop) -"xc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/mob/living/simple_mob/mechanical/viscerator/mercenary, -/turf/simulated/floor/plating, -/area/submap/DogBase) -"xe" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/random/projectile/scrapped_smg, -/obj/random/projectile/scrapped_smg, -/obj/random/projectile/scrapped_smg, -/obj/random/projectile/scrapped_shotgun, -/obj/effect/floor_decal/corner/red/border{ - dir = 1; - icon_state = "bordercolor" - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"xp" = ( -/obj/structure/dogbed, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/random/contraband/nofail, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"yl" = ( -/obj/structure/dogbed, -/obj/effect/decal/remains/deer, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/contraband/nofail, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"yx" = ( -/obj/machinery/door/airlock/external, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"yX" = ( -/obj/item/modular_computer/laptop/preset/custom_loadout/cheap, -/obj/structure/table/woodentable, -/obj/effect/floor_decal/corner/red/border{ - dir = 1; - icon_state = "bordercolor" - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Am" = ( -/obj/machinery/door/blast/gate/thin, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"AJ" = ( -/obj/machinery/door/airlock/engineering, -/turf/simulated/floor/tiled, -/area/submap/DogBase) -"AY" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/random/projectile, -/obj/random/projectile, -/obj/effect/floor_decal/corner/red/border{ - dir = 1; - icon_state = "bordercolor" - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Bk" = ( -/turf/simulated/wall/r_wall, -/area/submap/DogBase) -"Bx" = ( -/obj/structure/table/woodentable, -/obj/random/projectile/scrapped_pistol, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"BA" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"BB" = ( -/obj/structure/table/woodentable, -/obj/random/cash/big, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"BY" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Ce" = ( -/obj/structure/janitorialcart, -/obj/item/weapon/storage/bag/trash, -/obj/effect/floor_decal/corner/purple/diagonal, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Cz" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 1; - icon_state = "bordercolor" - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"CQ" = ( -/obj/structure/dogbed, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/bone, -/obj/random/contraband/nofail, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"Dt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/landmark/loot_spawn, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Dv" = ( -/mob/living/simple_mob/animal/wolf/direwolf/dog/sec{ - desc = "The biggest and baddest guard dog around."; - faction = "syndicate"; - name = "syndicate guard dog" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Ez" = ( -/mob/living/simple_mob/mechanical/viscerator/mercenary, -/turf/template_noop, -/area/template_noop) -"Fm" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/tiled, -/area/submap/DogBase) -"FD" = ( -/obj/structure/fence, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"FO" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10; - icon_state = "bordercolor" - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Ge" = ( -/obj/structure/table/woodentable, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/random/cash/huge, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Gf" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/filth, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/maintenance/cargo, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"GB" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"GJ" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/random/projectile, -/obj/random/projectile, -/obj/effect/landmark/loot_spawn, -/obj/effect/floor_decal/corner/red/border{ - dir = 1; - icon_state = "bordercolor" - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Hl" = ( -/turf/simulated/floor/plating/sif/planetuse, -/area/submap/DogBase) -"HF" = ( -/obj/random/mob/merc/all, -/obj/structure/bed/chair, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"HM" = ( -/obj/structure/table/woodentable, -/obj/random/contraband/nofail, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Iz" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"IE" = ( -/obj/machinery/porta_turret/poi{ - faction = "syndicate" - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/submap/DogBase) -"Jm" = ( -/obj/structure/dogbed, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/maintenance/research, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"Ki" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/submap/DogBase) -"Kt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/mob/living/simple_mob/mechanical/viscerator/mercenary, -/turf/simulated/floor/plating, -/area/submap/DogBase) -"KG" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Le" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/mob/living/simple_mob/mechanical/viscerator/mercenary, -/turf/simulated/floor/plating, -/area/submap/DogBase) -"Lm" = ( -/obj/effect/landmark/loot_spawn, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"LJ" = ( -/obj/effect/decal/remains/tajaran, -/turf/template_noop, -/area/template_noop) -"LP" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Ng" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/machinery/vending/security, -/obj/effect/floor_decal/corner/red/border{ - dir = 9; - icon_state = "bordercolor" - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Ni" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Ok" = ( -/obj/structure/table/woodentable, -/obj/item/device/radio/phone, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Ol" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/bone/leg, -/mob/living/simple_mob/animal/wolf/direwolf/dog/sec{ - desc = "The biggest and baddest guard dog around."; - faction = "syndicate"; - name = "syndicate guard dog" - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"OR" = ( -/mob/living/simple_mob/animal/wolf/direwolf/dog/sec{ - desc = "The biggest and baddest guard dog around."; - faction = "syndicate"; - name = "syndicate guard dog" - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/submap/DogBase) -"OS" = ( -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Pi" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"PB" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"PJ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/mob/living/simple_mob/mechanical/viscerator/mercenary, -/obj/structure/table/rack/shelf/steel, -/obj/item/stack/material/phoron{ - amount = 10 - }, -/obj/item/stack/material/phoron{ - amount = 10; - pixel_x = 1; - pixel_y = 6 - }, -/turf/simulated/floor/plating, -/area/submap/DogBase) -"Qp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/template_noop, -/area/template_noop) -"Qu" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"QB" = ( -/mob/living/simple_mob/animal/wolf/direwolf/dog/sec{ - desc = "The biggest and baddest guard dog around."; - faction = "syndicate"; - name = "syndicate guard dog" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/template_noop) -"Rz" = ( -/obj/structure/table/woodentable, -/obj/item/device/radio/phone, -/obj/random/contraband/nofail, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"RW" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"SW" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/template_noop) -"To" = ( -/obj/structure/fence/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"UW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"UY" = ( -/obj/structure/dogbed, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/maintenance/security, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"Vm" = ( -/obj/structure/loot_pile/maint/technical, -/obj/effect/floor_decal/corner/purple/diagonal, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Vy" = ( -/obj/effect/decal/remains/unathi, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"VG" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Wm" = ( -/obj/structure/table/woodentable, -/obj/effect/floor_decal/corner/red/border{ - dir = 1; - icon_state = "bordercolor" - }, -/obj/random/curseditem, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Wq" = ( -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Wu" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"WH" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"WU" = ( -/obj/structure/table/woodentable, -/obj/effect/floor_decal/corner/red/border{ - dir = 1; - icon_state = "bordercolor" - }, -/obj/random/cash/huge, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Xz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/template_noop) -"Ya" = ( -/mob/living/simple_mob/animal/wolf/direwolf/dog/sec{ - desc = "The biggest and baddest guard dog around."; - faction = "syndicate"; - name = "syndicate guard dog" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Yi" = ( -/obj/structure/table/rack/shelf/steel, -/obj/effect/floor_decal/corner/purple/diagonal, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"Yr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) -"YJ" = ( -/obj/random/mob/merc/all, -/turf/simulated/floor/plating/sif/planetuse, -/area/submap/DogBase) -"YX" = ( -/obj/structure/dogbed, -/obj/effect/decal/remains/deer, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/maintenance/medical, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/submap/DogBase) -"ZK" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "Unknown APC"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/mob/living/simple_mob/mechanical/viscerator/mercenary, -/turf/simulated/floor/plating, -/area/submap/DogBase) - -(1,1,1) = {" -hp -hp -hp -hp -hp -hp -hp -hp -km -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -km -hp -"} -(2,1,1) = {" -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -"} -(3,1,1) = {" -hp -km -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -Ez -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -"} -(4,1,1) = {" -hp -hp -hp -hp -hp -hp -hp -IE -Hl -hp -hp -hp -Hl -IE -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -"} -(5,1,1) = {" -hp -hp -hp -hp -hp -hp -hp -Hl -Bk -Bk -Bk -Bk -Bk -FD -FD -FD -FD -FD -To -Qp -hp -hp -hp -hp -Xz -hp -hp -km -hp -hp -"} -(6,1,1) = {" -hp -hp -hp -hp -hp -hp -hp -hp -Bk -fg -ng -Vm -Bk -iv -yl -YX -qI -jO -GB -Qp -LJ -hp -hp -Xz -Xz -Ez -hp -SW -hp -hp -"} -(7,1,1) = {" -hp -hp -hp -hp -hp -ik -wS -hp -Bk -Yi -Qu -Vm -Bk -UY -Gf -Ol -Vy -fI -Am -oW -oW -oW -oW -oW -hp -SW -hp -hp -hp -hp -"} -(8,1,1) = {" -hp -hp -hp -hp -hp -hp -hp -hp -Bk -lg -Qu -bw -Bk -aX -lk -ae -kl -lk -Am -oW -oW -QB -oW -hp -hp -hp -hp -SW -hp -hp -"} -(9,1,1) = {" -hp -hp -lN -Hl -hp -hp -hp -hp -Bk -eI -Qu -Ce -Bk -Jm -xp -ay -CQ -YX -GB -LJ -hp -hp -Qp -Qp -tp -IE -hp -hp -hp -hp -"} -(10,1,1) = {" -hp -hp -Hl -Bk -Bk -Bk -Bk -Bk -Bk -Bk -Fm -Bk -Bk -Bk -Bk -Bk -Bk -Bk -Bk -Bk -Bk -Bk -Bk -Bk -Bk -Hl -hp -km -hp -hp -"} -(11,1,1) = {" -hp -hp -hp -Bk -pR -RW -Wu -vq -Bk -Ng -wQ -FO -Bk -Dt -tN -tN -Dv -RW -vq -Bk -Pi -tN -qk -vq -Bk -Hl -Hl -hp -hp -hp -"} -(12,1,1) = {" -km -hp -Ez -Bk -Ge -Wq -Bx -lX -Bk -GJ -lb -OS -Bk -Yr -VG -HM -wI -Wq -lX -Bk -eZ -Wq -Wq -lX -Bk -lr -Hl -hp -hp -SW -"} -(13,1,1) = {" -hp -Ez -hp -Bk -qO -Wq -BA -lX -Bk -AY -Wq -OS -Bk -Yr -HF -Rz -wI -Wq -Ni -KG -PB -hl -se -jz -Bk -OR -Hl -SW -SW -hp -"} -(14,1,1) = {" -hp -Hl -Hl -Bk -hA -Wq -Iz -lX -Bk -xe -Wq -OS -Bk -rH -VG -HM -wI -Wq -hl -se -WH -BY -Bk -Bk -aF -bl -Hl -SW -hp -hp -"} -(15,1,1) = {" -hp -IE -Hl -Bk -qO -lb -BA -lX -LP -Cz -Wq -OS -LP -Yr -VG -Ok -wI -re -lX -Bk -Yr -lX -yx -Wq -yx -lr -YJ -SW -SW -SW -"} -(16,1,1) = {" -hp -Hl -Hl -Bk -hA -Wq -BB -lX -Bk -Wm -Wq -OS -Bk -rH -VG -np -wI -la -Ni -tN -PB -BY -Bk -Bk -aF -bl -Hl -SW -SW -hp -"} -(17,1,1) = {" -hp -Ez -hp -Bk -qO -Wq -BA -lX -Bk -yX -wI -OS -Bk -Yr -VG -HM -wI -lb -hl -jD -WH -Ni -tN -eA -Bk -OR -Hl -SW -SW -hp -"} -(18,1,1) = {" -hp -hp -Ez -Bk -lm -Wq -Iz -lX -Bk -WU -lb -OS -Bk -Yr -VG -HM -wI -Wq -lX -Bk -Yr -Wq -Wq -lX -Bk -lr -Hl -hp -SW -hp -"} -(19,1,1) = {" -km -hp -hp -Bk -bT -jD -se -UW -Bk -ab -tz -qg -Bk -Lm -se -se -se -jD -Ya -Bk -ec -se -bx -UW -Bk -Hl -Hl -hp -hp -hp -"} -(20,1,1) = {" -hp -hp -Hl -Bk -Bk -Bk -Bk -Bk -Bk -Bk -AJ -Bk -Bk -Bk -Bk -Bk -Bk -Bk -Bk -Bk -Bk -Bk -Bk -Bk -Bk -Hl -hp -hp -hp -hp -"} -(21,1,1) = {" -hp -hp -IE -Hl -hp -hp -hp -hp -Bk -ZK -Le -Ki -Bk -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -Hl -IE -hp -hp -hp -km -"} -(22,1,1) = {" -hp -hp -hp -hp -hp -hp -Ez -hp -Bk -PJ -xc -vX -Bk -hp -hp -hp -hp -hp -hp -hp -hp -wS -hp -hp -hp -hp -hp -hp -hp -hp -"} -(23,1,1) = {" -hp -hp -hp -hp -hp -hp -wS -hp -Bk -lh -cS -lh -Bk -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -Ez -hp -hp -hp -hp -"} -(24,1,1) = {" -hp -hp -hp -hp -hp -ik -hp -hp -Bk -hZ -Kt -tt -Bk -hp -hp -km -hp -hp -km -hp -hp -hp -km -hp -hp -hp -hp -hp -km -hp -"} -(25,1,1) = {" -hp -hp -km -hp -hp -hp -hp -Hl -Bk -Bk -Bk -Bk -Bk -Hl -hp -hp -hp -Ez -hp -hp -qZ -hp -hp -hp -hp -hp -hp -hp -hp -hp -"} -(26,1,1) = {" -hp -hp -hp -hp -hp -hp -hp -IE -Hl -hp -hp -hp -Hl -IE -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -"} -(27,1,1) = {" -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -Ez -hp -hp -hp -km -hp -hp -km -hp -hp -"} -(28,1,1) = {" -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -km -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -"} -(29,1,1) = {" -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -km -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -"} -(30,1,1) = {" -hp -hp -hp -hp -hp -hp -hp -hp -km -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -hp -"} +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"ae" = ( +/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{ + desc = "The biggest and baddest guard dog around."; + faction = "syndicate"; + max_co2 = 0; + max_tox = 0; + name = "syndicate guard dog" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"ay" = ( +/obj/structure/dogbed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/tajaran, +/obj/random/maintenance/medical, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"aF" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/submap/DogBase) +"aX" = ( +/obj/structure/dogbed, +/obj/effect/decal/remains/tajaran, +/obj/effect/decal/cleanable/filth, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/bone, +/obj/random/maintenance/security, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"bl" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor, +/area/submap/DogBase) +"bw" = ( +/obj/item/weapon/storage/belt/janitor, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"bx" = ( +/obj/machinery/porta_turret/poi{ + faction = "syndicate" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"bT" = ( +/obj/structure/safe, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"cS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"ec" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"eA" = ( +/obj/machinery/vending/cola, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"eI" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"eZ" = ( +/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{ + desc = "The biggest and baddest guard dog around."; + faction = "syndicate"; + max_co2 = 0; + max_tox = 0; + name = "syndicate guard dog" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"fg" = ( +/obj/structure/closet/l3closet/janitor, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"fI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/cargo, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"hl" = ( +/obj/effect/floor_decal/borderfloor/corner, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"hp" = ( +/turf/template_noop, +/area/template_noop) +"hA" = ( +/obj/structure/table/woodentable, +/obj/item/stolenpackage, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"hZ" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"ik" = ( +/obj/random/mob/merc/all, +/turf/template_noop, +/area/template_noop) +"iv" = ( +/obj/structure/dogbed, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/filth, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/bone/ribs, +/obj/random/maintenance/research, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"jz" = ( +/obj/machinery/vending/cigarette, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"jD" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"jO" = ( +/obj/structure/dogbed, +/obj/effect/decal/remains/unathi, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/security, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"kl" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/cargo, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"km" = ( +/obj/effect/decal/remains/human, +/turf/template_noop, +/area/template_noop) +"lb" = ( +/obj/random/mob/merc/all, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"lg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"lh" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"lk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"lm" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"lr" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor, +/area/submap/DogBase) +"lN" = ( +/obj/machinery/porta_turret/poi{ + faction = "syndicate" + }, +/turf/simulated/floor, +/area/submap/DogBase) +"lX" = ( +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"ng" = ( +/mob/living/bot/cleanbot{ + faction = "malf_drone" + }, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"np" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/gun/projectile/pistol, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"oW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"pR" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"qg" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"qk" = ( +/obj/machinery/porta_turret/poi{ + faction = "syndicate" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"qI" = ( +/obj/structure/dogbed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/bone, +/obj/random/maintenance/security, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"qO" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"qZ" = ( +/obj/effect/decal/remains/ribcage, +/turf/template_noop, +/area/template_noop) +"re" = ( +/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{ + desc = "The biggest and baddest guard dog around."; + faction = "syndicate"; + max_co2 = 0; + max_tox = 0; + name = "syndicate guard dog" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"rH" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"se" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"tp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/submap/DogBase) +"tt" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"tz" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"tN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"vq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"vX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"wI" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"wQ" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"wS" = ( +/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{ + desc = "The biggest and baddest guard dog around."; + faction = "syndicate"; + max_co2 = 0; + max_tox = 0; + name = "syndicate guard dog" + }, +/turf/template_noop, +/area/template_noop) +"xc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"xe" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/random/projectile/scrapped_smg, +/obj/random/projectile/scrapped_smg, +/obj/random/projectile/scrapped_smg, +/obj/random/projectile/scrapped_shotgun, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"xp" = ( +/obj/structure/dogbed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/random/contraband/nofail, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"yl" = ( +/obj/structure/dogbed, +/obj/effect/decal/remains/deer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/contraband/nofail, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"yx" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"yX" = ( +/obj/item/modular_computer/laptop/preset/custom_loadout/cheap, +/obj/structure/table/woodentable, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Am" = ( +/obj/machinery/door/blast/gate/thin, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"AJ" = ( +/obj/machinery/door/airlock/engineering, +/turf/simulated/floor/tiled, +/area/submap/DogBase) +"AY" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/random/projectile, +/obj/random/projectile, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Bk" = ( +/turf/simulated/wall/r_wall, +/area/submap/DogBase) +"Bx" = ( +/obj/structure/table/woodentable, +/obj/random/projectile/scrapped_pistol, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"BA" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"BB" = ( +/obj/structure/table/woodentable, +/obj/random/cash/big, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"BY" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Ce" = ( +/obj/structure/janitorialcart, +/obj/item/weapon/storage/bag/trash, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Cz" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"CQ" = ( +/obj/structure/dogbed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/bone, +/obj/random/contraband/nofail, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"Dt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Dv" = ( +/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{ + desc = "The biggest and baddest guard dog around."; + faction = "syndicate"; + max_co2 = 0; + max_tox = 0; + name = "syndicate guard dog" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Ez" = ( +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/template_noop, +/area/template_noop) +"Fm" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled, +/area/submap/DogBase) +"FD" = ( +/obj/structure/fence, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"FO" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Ge" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/random/cash/huge, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Gf" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/filth, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/cargo, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"GB" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"GJ" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/random/projectile, +/obj/random/projectile, +/obj/effect/landmark/loot_spawn, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Hl" = ( +/turf/simulated/floor, +/area/submap/DogBase) +"HF" = ( +/obj/random/mob/merc/all, +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"HM" = ( +/obj/structure/table/woodentable, +/obj/random/contraband/nofail, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Iz" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Jm" = ( +/obj/structure/dogbed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/research, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"Ki" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"Kt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"Le" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"Lm" = ( +/obj/effect/landmark/loot_spawn, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"LJ" = ( +/obj/effect/decal/remains/tajaran, +/turf/template_noop, +/area/template_noop) +"LP" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Ng" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/vending/security, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Ni" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Ok" = ( +/obj/structure/table/woodentable, +/obj/item/device/radio/phone, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Ol" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/bone/leg, +/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{ + desc = "The biggest and baddest guard dog around."; + faction = "syndicate"; + max_co2 = 0; + max_tox = 0; + name = "syndicate guard dog" + }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"OR" = ( +/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{ + desc = "The biggest and baddest guard dog around."; + faction = "syndicate"; + max_co2 = 0; + max_tox = 0; + name = "syndicate guard dog" + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor, +/area/submap/DogBase) +"OS" = ( +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Pi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"PB" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"PJ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/obj/structure/table/rack/shelf/steel, +/obj/item/stack/material/phoron{ + amount = 10 + }, +/obj/item/stack/material/phoron{ + amount = 10; + pixel_x = 1; + pixel_y = 6 + }, +/turf/simulated/floor/plating, +/area/submap/DogBase) +"Qp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/template_noop, +/area/template_noop) +"Qu" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"QB" = ( +/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{ + desc = "The biggest and baddest guard dog around."; + faction = "syndicate"; + max_co2 = 0; + max_tox = 0; + name = "syndicate guard dog" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"Rz" = ( +/obj/structure/table/woodentable, +/obj/item/device/radio/phone, +/obj/random/contraband/nofail, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"RW" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"SW" = ( +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"To" = ( +/obj/structure/fence/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"UW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"UY" = ( +/obj/structure/dogbed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/security, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"Vm" = ( +/obj/structure/loot_pile/maint/technical, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Vy" = ( +/obj/effect/decal/remains/unathi, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"VG" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Wm" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/random/curseditem, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Wq" = ( +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Wu" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"WH" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"WU" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/random/cash/huge, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Xz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"Ya" = ( +/mob/living/simple_mob/vore/wolf/direwolf/dog/sec{ + desc = "The biggest and baddest guard dog around."; + faction = "syndicate"; + max_co2 = 0; + max_tox = 0; + name = "syndicate guard dog" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Yi" = ( +/obj/structure/table/rack/shelf/steel, +/obj/effect/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"Yr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/DogBase) +"YJ" = ( +/obj/random/mob/merc/all, +/turf/simulated/floor, +/area/submap/DogBase) +"YX" = ( +/obj/structure/dogbed, +/obj/effect/decal/remains/deer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/medical, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DogBase) +"ZK" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "Unknown APC"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/simulated/floor/plating, +/area/submap/DogBase) + +(1,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +hp +km +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +km +hp +"} +(2,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +"} +(3,1,1) = {" +hp +km +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +Ez +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +"} +(4,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +lN +Hl +hp +hp +hp +Hl +lN +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +"} +(5,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +Hl +Bk +Bk +Bk +Bk +Bk +FD +FD +FD +FD +FD +To +Qp +hp +hp +hp +hp +Xz +hp +hp +km +hp +hp +"} +(6,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +hp +Bk +fg +ng +Vm +Bk +iv +yl +YX +qI +jO +GB +Qp +LJ +hp +hp +Xz +Xz +Ez +hp +SW +hp +hp +"} +(7,1,1) = {" +hp +hp +hp +hp +hp +ik +wS +hp +Bk +Yi +Qu +Vm +Bk +UY +Gf +Ol +Vy +fI +Am +oW +oW +oW +oW +oW +hp +SW +hp +hp +hp +hp +"} +(8,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +hp +Bk +lg +Qu +bw +Bk +aX +lk +ae +kl +lk +Am +oW +oW +QB +oW +hp +hp +hp +hp +SW +hp +hp +"} +(9,1,1) = {" +hp +hp +lN +Hl +hp +hp +hp +hp +Bk +eI +Qu +Ce +Bk +Jm +xp +ay +CQ +YX +GB +LJ +hp +hp +Qp +Qp +tp +lN +hp +hp +hp +hp +"} +(10,1,1) = {" +hp +hp +Hl +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Fm +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Hl +hp +km +hp +hp +"} +(11,1,1) = {" +hp +hp +hp +Bk +pR +RW +Wu +vq +Bk +Ng +wQ +FO +Bk +Dt +tN +tN +Dv +RW +vq +Bk +Pi +tN +qk +vq +Bk +Hl +Hl +hp +hp +hp +"} +(12,1,1) = {" +km +hp +Ez +Bk +Ge +Wq +Bx +lX +Bk +GJ +lb +OS +Bk +Yr +VG +HM +wI +Wq +lX +Bk +eZ +Wq +Wq +lX +Bk +lr +Hl +hp +hp +SW +"} +(13,1,1) = {" +hp +Ez +hp +Bk +qO +Wq +BA +lX +Bk +AY +Wq +OS +Bk +Yr +HF +Rz +wI +Wq +Ni +RW +PB +hl +se +jz +Bk +OR +Hl +SW +SW +hp +"} +(14,1,1) = {" +hp +Hl +Hl +Bk +hA +Wq +Iz +lX +Bk +xe +Wq +OS +Bk +rH +VG +HM +wI +Wq +hl +se +WH +BY +Bk +Bk +aF +bl +Hl +SW +hp +hp +"} +(15,1,1) = {" +hp +lN +Hl +Bk +qO +lb +BA +lX +LP +Cz +Wq +OS +LP +Yr +VG +Ok +wI +re +lX +Bk +Yr +lX +yx +Wq +yx +lr +YJ +SW +SW +SW +"} +(16,1,1) = {" +hp +Hl +Hl +Bk +hA +Wq +BB +lX +Bk +Wm +Wq +OS +Bk +rH +VG +np +wI +Wq +Ni +tN +PB +BY +Bk +Bk +aF +bl +Hl +SW +SW +hp +"} +(17,1,1) = {" +hp +Ez +hp +Bk +qO +Wq +BA +lX +Bk +yX +wI +OS +Bk +Yr +VG +HM +wI +lb +hl +jD +WH +Ni +tN +eA +Bk +OR +Hl +SW +SW +hp +"} +(18,1,1) = {" +hp +hp +Ez +Bk +lm +Wq +Iz +lX +Bk +WU +lb +OS +Bk +Yr +VG +HM +wI +Wq +lX +Bk +Yr +Wq +Wq +lX +Bk +lr +Hl +hp +SW +hp +"} +(19,1,1) = {" +km +hp +hp +Bk +bT +jD +se +UW +Bk +ab +tz +qg +Bk +Lm +se +se +se +jD +Ya +Bk +ec +se +bx +UW +Bk +Hl +Hl +hp +hp +hp +"} +(20,1,1) = {" +hp +hp +Hl +Bk +Bk +Bk +Bk +Bk +Bk +Bk +AJ +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Bk +Hl +hp +hp +hp +hp +"} +(21,1,1) = {" +hp +hp +lN +Hl +hp +hp +hp +hp +Bk +ZK +Le +Ki +Bk +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +Hl +lN +hp +hp +hp +km +"} +(22,1,1) = {" +hp +hp +hp +hp +hp +hp +Ez +hp +Bk +PJ +xc +vX +Bk +hp +hp +hp +hp +hp +hp +hp +hp +wS +hp +hp +hp +hp +hp +hp +hp +hp +"} +(23,1,1) = {" +hp +hp +hp +hp +hp +hp +wS +hp +Bk +lh +cS +lh +Bk +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +Ez +hp +hp +hp +hp +"} +(24,1,1) = {" +hp +hp +hp +hp +hp +ik +hp +hp +Bk +hZ +Kt +tt +Bk +hp +hp +km +hp +hp +km +hp +hp +hp +km +hp +hp +hp +hp +hp +km +hp +"} +(25,1,1) = {" +hp +hp +km +hp +hp +hp +hp +Hl +Bk +Bk +Bk +Bk +Bk +Hl +hp +hp +hp +Ez +hp +hp +qZ +hp +hp +hp +hp +hp +hp +hp +hp +hp +"} +(26,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +lN +Hl +hp +hp +hp +Hl +lN +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +"} +(27,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +Ez +hp +hp +hp +km +hp +hp +km +hp +hp +"} +(28,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +km +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +"} +(29,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +km +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +"} +(30,1,1) = {" +hp +hp +hp +hp +hp +hp +hp +hp +km +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +hp +"} diff --git a/maps/submaps/surface_submaps/wilderness/emptycabin.dmm b/maps/submaps/surface_submaps/wilderness/emptycabin.dmm index 9008166129..71f9cb72b4 100644 --- a/maps/submaps/surface_submaps/wilderness/emptycabin.dmm +++ b/maps/submaps/surface_submaps/wilderness/emptycabin.dmm @@ -117,7 +117,7 @@ /turf/simulated/floor/wood/sif, /area/submap/EmptyCabin) "F" = ( -/mob/living/simple_mob/otie/friendly/chubby{ +/mob/living/simple_mob/vore/otie/friendly/chubby{ desc = "The classic bioengineered longdog. This one still probably won't tolerate you. What an absolute unit"; faction = "spiders" }, diff --git a/maps/submaps/surface_submaps/wilderness/greatwolfden.dmm b/maps/submaps/surface_submaps/wilderness/greatwolfden.dmm index a029394e8b..738bac8d6e 100644 --- a/maps/submaps/surface_submaps/wilderness/greatwolfden.dmm +++ b/maps/submaps/surface_submaps/wilderness/greatwolfden.dmm @@ -1,1555 +1,1564 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/effect/decal/cleanable/blood/drip, -/mob/living/simple_mob/animal/wolf/direwolf{ - ai_holder_type = /datum/ai_holder/simple_mob/retaliate; - desc = "The biggest and baddest wolf around. Seems pretty chill, for a wolf."; - faction = "sif" - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"bp" = ( -/obj/structure/cliff/automatic/corner{ - dir = 6 - }, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"bz" = ( -/obj/structure/flora/bboulder1, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"bI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"bY" = ( -/turf/simulated/floor/outdoors/snow, -/area/submap/GreatWolfDen) -"dM" = ( -/obj/structure/flora/bboulder2, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"dX" = ( -/obj/structure/cliff/automatic{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"eq" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/outdoors/snow, -/area/submap/GreatWolfDen) -"fh" = ( -/obj/structure/cliff/automatic{ - dir = 2 - }, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"fX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/rocks2, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"ge" = ( -/obj/structure/flora/sif/subterranean{ - icon_state = "frostbelle" - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"hJ" = ( -/obj/structure/cliff/automatic{ - dir = 9 - }, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"iX" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "2" - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"jg" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/item/ammo_casing/a10mm{ - dir = 8 - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"ju" = ( -/obj/item/weapon/reagent_containers/food/snacks/meat/human, -/obj/item/weapon/reagent_containers/food/snacks/meat/human, -/obj/item/weapon/reagent_containers/food/snacks/meat/human, -/obj/item/weapon/reagent_containers/food/snacks/meat/human, -/obj/item/weapon/reagent_containers/food/snacks/meat/human, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"kg" = ( -/obj/item/weapon/bone/skull/unathi, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"kk" = ( -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gib2_flesh" - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"kL" = ( -/obj/structure/flora/sif/subterranean{ - icon_state = "grass3" - }, -/turf/simulated/floor/outdoors/grass/sif/forest{ - outdoors = 0 - }, -/area/submap/GreatWolfDen) -"lu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/a10mm, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"lL" = ( -/obj/structure/loot_pile/surface/bones, -/obj/effect/landmark/loot_spawn/low, -/obj/random/projectile/scrapped_gun, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"lQ" = ( -/obj/effect/decal/cleanable/filth, -/obj/item/weapon/card/emag_broken, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"mk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/obj/item/ammo_casing/a10mm{ - dir = 8 - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"mm" = ( -/obj/random/trash_pile, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"nd" = ( -/obj/structure/flora/rocks2, -/obj/effect/decal/remains/lizard, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"nv" = ( -/mob/living/simple_mob/vore/greatwolf{ - dir = 8 - }, -/turf/simulated/floor/outdoors/grass/sif/forest{ - outdoors = 0 - }, -/area/submap/GreatWolfDen) -"pS" = ( -/turf/template_noop, -/area/template_noop) -"qb" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"rn" = ( -/obj/structure/loot_pile/mecha/gygax/dark/adv, -/obj/effect/decal/cleanable/blood/gibs/robot/down, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"rM" = ( -/obj/structure/flora/sif/subterranean{ - icon_state = "eyeplant2" - }, -/turf/simulated/floor/outdoors/grass/sif/forest{ - outdoors = 0 - }, -/area/submap/GreatWolfDen) -"tb" = ( -/obj/structure/flora/smallbould, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"tm" = ( -/turf/simulated/mineral/ignore_mapgen, -/area/submap/GreatWolfDen) -"tC" = ( -/obj/effect/decal/remains/mouse, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"uz" = ( -/mob/living/simple_mob/animal/wolf/direwolf{ - ai_holder_type = /datum/ai_holder/simple_mob/retaliate; - desc = "The biggest and baddest wolf around. Seems pretty chill, for a wolf."; - faction = "sif" - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"uY" = ( -/obj/item/ammo_casing/a10mm, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"vu" = ( -/obj/item/weapon/bone/skull/tajaran, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"wc" = ( -/obj/item/weapon/bone/skull/unathi, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"xt" = ( -/obj/effect/landmark/loot_spawn/low, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"xK" = ( -/obj/effect/decal/remains/human, -/obj/item/clothing/under/syndicate, -/obj/random/projectile/scrapped_gun, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"yi" = ( -/obj/structure/flora/sif/subterranean{ - icon_state = "frostbelle2" - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"yF" = ( -/obj/structure/flora/smallbould, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"yG" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/outdoors/snow, -/area/submap/GreatWolfDen) -"yH" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"zl" = ( -/obj/structure/flora/bboulder1, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"zs" = ( -/obj/structure/flora/bboulder2, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"zV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/ledge/ledge_stairs, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"AG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/rocks2, -/obj/structure/ledge/ledge_stairs, -/turf/simulated/floor/outdoors/rocks, -/area/submap/GreatWolfDen) -"AK" = ( -/obj/structure/cliff/automatic/ramp{ - dir = 9 - }, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"Cd" = ( -/mob/living/simple_mob/otie/feral/chubby{ - ai_holder_type = /datum/ai_holder/simple_mob/retaliate; - desc = "The classic bioengineered longdog. No pets. Only bite. What an absolute unit."; - faction = "sif" - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"CR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"Dj" = ( -/obj/structure/cliff/automatic/corner, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"DV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/outcrop, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"EU" = ( -/obj/structure/flora/rocks1, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"Fy" = ( -/obj/structure/flora/sif/subterranean{ - icon_state = "eyeplant1" - }, -/turf/simulated/floor/outdoors/grass/sif/forest{ - outdoors = 0 - }, -/area/submap/GreatWolfDen) -"Hb" = ( -/obj/structure/closet/crate/secure/loot, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"HC" = ( -/obj/random/outcrop, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"Ic" = ( -/obj/effect/decal/remains/deer, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"Id" = ( -/obj/effect/decal/cleanable/dirt, -/turf/template_noop, -/area/template_noop) -"If" = ( -/obj/effect/decal/cleanable/blood/gibs/robot/limb, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"Iw" = ( -/obj/effect/decal/remains/deer, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"Kb" = ( -/obj/item/ammo_casing/a10mm{ - dir = 8 - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"Ko" = ( -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gibdown1_flesh" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"Kp" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/outdoors/snow, -/area/submap/GreatWolfDen) -"KU" = ( -/obj/structure/flora/sif/subterranean{ - icon_state = "grass3" - }, -/turf/simulated/floor/outdoors/snow, -/area/submap/GreatWolfDen) -"Lx" = ( -/obj/structure/cliff/automatic{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"Lz" = ( -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gib1_flesh" - }, -/turf/simulated/floor/outdoors/grass/sif/forest{ - outdoors = 0 - }, -/area/submap/GreatWolfDen) -"LJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/sif/subterranean{ - icon_state = "glowplant2" - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"LP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/rocks2, -/obj/structure/ledge/ledge_stairs, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"LT" = ( -/obj/structure/cliff/automatic/corner{ - dir = 10 - }, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"Mc" = ( -/obj/effect/decal/cleanable/ash, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"Mv" = ( -/obj/random/outcrop, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"MD" = ( -/obj/structure/flora/tree/sif{ - icon_state = "tree_sif4" - }, -/turf/simulated/floor/outdoors/snow, -/area/submap/GreatWolfDen) -"OB" = ( -/obj/item/stack/material/log{ - amount = 25 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"OL" = ( -/obj/structure/cliff/automatic, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"OV" = ( -/obj/structure/cliff/automatic{ - dir = 6 - }, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"OW" = ( -/obj/structure/cliff/automatic{ - dir = 5 - }, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"Pa" = ( -/obj/structure/cliff/automatic/ramp, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"Pf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"Pl" = ( -/obj/effect/decal/remains/lizard, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"PC" = ( -/obj/structure/closet/crate/secure/loot, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"PX" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"Qb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/rocks1, -/obj/structure/ledge/ledge_stairs, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"Qv" = ( -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"QA" = ( -/obj/structure/flora/sif/subterranean{ - icon_state = "grass2" - }, -/turf/simulated/floor/outdoors/snow, -/area/submap/GreatWolfDen) -"QJ" = ( -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"QM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "2" - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"Rb" = ( -/obj/item/weapon/bone/leg, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"Rf" = ( -/obj/structure/loot_pile/surface/bones, -/obj/structure/flora/sif/subterranean{ - icon_state = "frostbelle" - }, -/obj/item/weapon/gun/projectile/pistol, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"Rj" = ( -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow, -/area/submap/GreatWolfDen) -"Rx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"RW" = ( -/obj/structure/flora/rocks2, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"SO" = ( -/obj/item/weapon/telecube/mated, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"SQ" = ( -/obj/structure/cliff/automatic/corner{ - dir = 9 - }, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"Tf" = ( -/obj/item/weapon/paper/card/heart{ - desc = "A gift card with a heart on the cover. This appears to be a thank-you to the.. wolves??" - }, -/obj/item/weapon/paper/crumpled{ - icon_state = "scrap_bloodied"; - info = "The wolves dragged me back to their den when they found me incapacitated, and nursed me back to health, instead of eating me. I don't know why. Anyway, they're a bunch of goodboyes. Don't let the bones strewn about their den frighten you. Just be nice to them and they won't hurt you."; - name = "survivor's note" - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"Tn" = ( -/obj/structure/bonfire, -/turf/simulated/floor/outdoors/grass/sif/forest{ - outdoors = 0 - }, -/area/submap/GreatWolfDen) -"Ty" = ( -/obj/random/trash_pile, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"UV" = ( -/obj/structure/cliff/automatic{ - dir = 10 - }, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"Vq" = ( -/obj/structure/loot_pile/surface/bones, -/obj/random/projectile/scrapped_gun, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"WH" = ( -/obj/structure/loot_pile/surface/bones, -/obj/item/weapon/storage/toolbox/syndicate, -/obj/random/projectile/scrapped_gun, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"WR" = ( -/obj/structure/flora/sif/subterranean{ - icon_state = "glowplant1" - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"WY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/rocks1, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"Xx" = ( -/obj/structure/flora/sif/subterranean{ - icon_state = "grass1" - }, -/turf/simulated/floor/outdoors/snow, -/area/submap/GreatWolfDen) -"Xy" = ( -/obj/item/weapon/bone/ribs, -/obj/effect/landmark/loot_spawn/low, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"Yw" = ( -/obj/structure/loot_pile/surface/bones, -/obj/effect/landmark/loot_spawn/low, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"Zj" = ( -/turf/simulated/floor/outdoors/grass/sif/forest{ - outdoors = 0 - }, -/area/submap/GreatWolfDen) -"Zk" = ( -/obj/structure/flora/sif/subterranean{ - icon_state = "glowplant2" - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"Zu" = ( -/obj/structure/loot_pile/surface/bones, -/obj/effect/landmark/loot_spawn/low, -/obj/effect/decal/cleanable/dirt, -/obj/random/projectile/scrapped_gun, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) - -(1,1,1) = {" -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -"} -(2,1,1) = {" -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -Ty -pS -pS -Qv -Qv -Qv -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -"} -(3,1,1) = {" -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -Qv -Qv -Qv -HC -Qv -Qv -Qv -Qv -Qv -Qv -Qv -pS -pS -pS -pS -pS -pS -Qv -pS -pS -"} -(4,1,1) = {" -pS -pS -pS -pS -Qv -pS -pS -Qv -Qv -Qv -bp -dX -dX -dX -dX -dX -dX -dX -Dj -Qv -HC -Qv -pS -pS -pS -pS -Qv -Qv -pS -pS -"} -(5,1,1) = {" -pS -pS -pS -pS -pS -pS -Qv -bp -dX -dX -OV -tm -tm -tm -tm -tm -tm -tm -OW -dX -dX -Dj -Qv -Qv -Qv -pS -pS -pS -pS -pS -"} -(6,1,1) = {" -pS -pS -pS -pS -pS -Qv -Qv -fh -tm -tm -tm -tm -tm -tm -tm -tm -tm -tm -tm -tm -tm -OW -dX -Dj -Qv -Qv -pS -pS -pS -pS -"} -(7,1,1) = {" -pS -pS -pS -pS -Qv -Qv -bp -OV -tm -tm -tm -tm -jg -yi -Mv -tm -tm -tm -tm -tm -tm -tm -tm -OW -Dj -Qv -pS -pS -pS -pS -"} -(8,1,1) = {" -pS -pS -pS -pS -pS -Qv -fh -tm -tm -tm -yi -CR -xK -uY -QJ -Zu -zs -QJ -QJ -Mv -tm -tm -tm -tm -OW -Dj -Qv -pS -pS -pS -"} -(9,1,1) = {" -pS -pS -pS -pS -pS -Qv -fh -tm -tm -Mc -QJ -qb -lu -mk -uY -QJ -QJ -kk -QJ -QJ -QJ -tb -tm -tm -tm -OL -Qv -Qv -pS -pS -"} -(10,1,1) = {" -pS -pS -pS -pS -Qv -Qv -fh -tm -tm -mm -Rb -EU -lQ -yi -Kb -QM -Iw -QJ -RW -Zk -QJ -QJ -tm -tm -tm -OL -Qv -Qv -Qv -pS -"} -(11,1,1) = {" -pS -pS -pS -Qv -Qv -Qv -fh -tm -tm -bz -Pl -bI -DV -tm -wc -QJ -QJ -QJ -QJ -QJ -Cd -QJ -kg -tm -tm -OW -Dj -Qv -Qv -pS -"} -(12,1,1) = {" -pS -pS -pS -Qv -HC -Qv -LT -UV -tm -tm -bI -CR -tm -tm -rn -PX -Tn -Zj -Zj -uz -QJ -QJ -yi -tm -tm -tm -OL -Qv -Qv -pS -"} -(13,1,1) = {" -pS -pS -Id -pS -Qv -Qv -Qv -fh -tm -tm -Tf -Ko -tm -tm -OB -uz -Zj -Xx -rM -Zj -Iw -QJ -QJ -tm -tm -tm -OL -Qv -Qv -pS -"} -(14,1,1) = {" -pS -pS -pS -pS -Id -Qv -Qv -fh -tm -tm -CR -CR -tm -yF -qb -Fy -Zj -Rj -Kp -Lz -Zj -QJ -uz -Xy -tm -tm -OL -Qv -Qv -Qv -"} -(15,1,1) = {" -pS -Qv -Id -fX -pS -dM -Pa -OV -tm -LJ -Pf -CR -tm -ju -aa -Lz -eq -bY -MD -yG -Zj -QJ -If -QJ -tm -tm -OL -Qv -HC -Qv -"} -(16,1,1) = {" -Qv -pS -Qv -Id -Rx -zV -LP -Qb -AG -CR -CR -CR -tm -SO -tC -Zj -Zj -bY -QA -Zj -kL -uz -QJ -Mv -tm -tm -OL -Qv -Qv -Qv -"} -(17,1,1) = {" -pS -pS -Qv -Rx -WY -Rx -AK -UV -tm -tm -tm -tm -tm -vu -WR -EU -nv -KU -Rj -Zj -QJ -QJ -QJ -QJ -tm -tm -OL -Qv -Qv -pS -"} -(18,1,1) = {" -pS -pS -pS -pS -pS -pS -Qv -LT -UV -tm -tm -tm -zs -QJ -xK -Ic -Zj -Zj -bY -Zj -nd -QJ -QJ -lL -tm -tm -OL -Qv -Qv -pS -"} -(19,1,1) = {" -pS -pS -pS -pS -pS -pS -Qv -Qv -fh -tm -tm -tm -tm -Hb -QJ -uz -QJ -Zj -Zj -Zj -QJ -uz -xt -tm -tm -hJ -SQ -Qv -pS -Qv -"} -(20,1,1) = {" -pS -pS -pS -pS -pS -pS -Qv -Qv -fh -tm -tm -tm -tm -PC -QJ -qb -kk -Ic -uz -QJ -Vq -xt -Rf -tm -tm -OL -Qv -Qv -pS -pS -"} -(21,1,1) = {" -pS -pS -pS -pS -pS -pS -pS -Qv -LT -UV -tm -tm -tm -tm -QJ -WH -iX -yH -qb -QJ -Vq -Yw -tm -tm -tm -OL -Qv -Qv -Qv -pS -"} -(22,1,1) = {" -pS -pS -pS -pS -pS -pS -pS -Qv -HC -fh -tm -tm -tm -tm -zl -yi -QJ -ge -QJ -Vq -xt -tm -tm -tm -hJ -SQ -Qv -Ty -Qv -pS -"} -(23,1,1) = {" -pS -pS -pS -pS -pS -pS -pS -pS -Qv -LT -UV -tm -tm -tm -tm -tm -tm -tm -tm -tm -tm -tm -tm -hJ -SQ -Qv -Qv -pS -pS -pS -"} -(24,1,1) = {" -pS -pS -pS -pS -pS -pS -pS -pS -Qv -Qv -LT -Lx -UV -tm -tm -tm -tm -tm -tm -tm -tm -tm -hJ -SQ -Qv -Qv -Qv -pS -pS -pS -"} -(25,1,1) = {" -pS -pS -pS -pS -pS -Qv -pS -pS -pS -Qv -Qv -Qv -LT -Lx -UV -tm -tm -hJ -Lx -Lx -Lx -Lx -SQ -Qv -Qv -pS -pS -pS -pS -pS -"} -(26,1,1) = {" -pS -pS -pS -pS -pS -pS -pS -pS -pS -Qv -Qv -Qv -Qv -Ty -LT -Lx -Lx -SQ -Qv -Qv -Qv -Qv -Qv -Qv -pS -pS -pS -pS -pS -pS -"} -(27,1,1) = {" -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -Qv -Qv -Qv -Qv -Qv -Qv -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -"} -(28,1,1) = {" -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -Qv -Qv -HC -Qv -Qv -pS -pS -pS -pS -pS -pS -Qv -Qv -pS -pS -pS -"} -(29,1,1) = {" -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -Qv -pS -pS -pS -pS -pS -pS -"} -(30,1,1) = {" -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -pS -"} +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/decal/cleanable/blood/drip, +/mob/living/simple_mob/vore/wolf/direwolf{ + ai_holder_type = /datum/ai_holder/simple_mob/retaliate; + desc = "The biggest and baddest wolf around. Seems pretty chill, for a wolf."; + faction = "sif"; + max_co2 = 0; + max_tox = 0; + min_oxy = 0 + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"bp" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"bz" = ( +/obj/structure/flora/bboulder1, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"bI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"bY" = ( +/turf/simulated/floor/outdoors/snow, +/area/submap/GreatWolfDen) +"dM" = ( +/obj/structure/flora/bboulder2, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"dX" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"eq" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/outdoors/snow, +/area/submap/GreatWolfDen) +"fh" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"fX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rocks2, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"ge" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "frostbelle" + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"hJ" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"iX" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"jg" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/item/ammo_casing/a10mm{ + dir = 8 + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"ju" = ( +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"kg" = ( +/obj/item/weapon/bone/skull/unathi, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"kk" = ( +/obj/effect/decal/cleanable/blood/gibs{ + color = "red"; + icon_state = "gib2_flesh" + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"kL" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "grass3" + }, +/turf/simulated/floor/outdoors/grass/sif/forest{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"lu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/a10mm, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"lL" = ( +/obj/structure/loot_pile/surface/bones, +/obj/effect/landmark/loot_spawn/low, +/obj/random/projectile/scrapped_gun, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"lQ" = ( +/obj/effect/decal/cleanable/filth, +/obj/item/weapon/card/emag_broken, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"mk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/item/ammo_casing/a10mm{ + dir = 8 + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"mm" = ( +/obj/random/trash_pile, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"nd" = ( +/obj/structure/flora/rocks2, +/obj/effect/decal/remains/lizard, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"nv" = ( +/mob/living/simple_mob/vore/greatwolf{ + dir = 8; + max_co2 = 0; + min_oxy = 0 + }, +/turf/simulated/floor/outdoors/grass/sif/forest{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"pS" = ( +/turf/template_noop, +/area/template_noop) +"qb" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"rn" = ( +/obj/structure/loot_pile/mecha/gygax/dark/adv, +/obj/effect/decal/cleanable/blood/gibs/robot/down, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"rM" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "eyeplant2" + }, +/turf/simulated/floor/outdoors/grass/sif/forest{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"tb" = ( +/obj/structure/flora/smallbould, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"tm" = ( +/turf/simulated/mineral/ignore_mapgen, +/area/submap/GreatWolfDen) +"tC" = ( +/obj/effect/decal/remains/mouse, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"uz" = ( +/mob/living/simple_mob/vore/wolf/direwolf{ + ai_holder_type = /datum/ai_holder/simple_mob/retaliate; + desc = "The biggest and baddest wolf around. Seems pretty chill, for a wolf."; + faction = "sif"; + max_co2 = 0; + max_tox = 0; + min_oxy = 0 + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"uY" = ( +/obj/item/ammo_casing/a10mm, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"vu" = ( +/obj/item/weapon/bone/skull/tajaran, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"wc" = ( +/obj/item/weapon/bone/skull/unathi, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"xt" = ( +/obj/effect/landmark/loot_spawn/low, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"xK" = ( +/obj/effect/decal/remains/human, +/obj/item/clothing/under/syndicate, +/obj/random/projectile/scrapped_gun, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"yi" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "frostbelle2" + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"yF" = ( +/obj/structure/flora/smallbould, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"yG" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/outdoors/snow, +/area/submap/GreatWolfDen) +"yH" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"zl" = ( +/obj/structure/flora/bboulder1, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"zs" = ( +/obj/structure/flora/bboulder2, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"zV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/ledge/ledge_stairs, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"AG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rocks2, +/obj/structure/ledge/ledge_stairs, +/turf/simulated/floor/outdoors/rocks, +/area/submap/GreatWolfDen) +"AK" = ( +/obj/structure/cliff/automatic/ramp{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"Cd" = ( +/mob/living/simple_mob/vore/otie/feral/chubby{ + ai_holder_type = /datum/ai_holder/simple_mob/retaliate; + desc = "The classic bioengineered longdog. No pets. Only bite. What an absolute unit."; + faction = "sif"; + minbodytemp = 0 + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"CR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"Dj" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"DV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/outcrop, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"EU" = ( +/obj/structure/flora/rocks1, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"Fy" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "eyeplant1" + }, +/turf/simulated/floor/outdoors/grass/sif/forest{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"Hb" = ( +/obj/structure/closet/crate/secure/loot, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"HC" = ( +/obj/random/outcrop, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"Ic" = ( +/obj/effect/decal/remains/deer, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"Id" = ( +/obj/effect/decal/cleanable/dirt, +/turf/template_noop, +/area/template_noop) +"If" = ( +/obj/effect/decal/cleanable/blood/gibs/robot/limb, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"Iw" = ( +/obj/effect/decal/remains/deer, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"Kb" = ( +/obj/item/ammo_casing/a10mm{ + dir = 8 + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"Ko" = ( +/obj/effect/decal/cleanable/blood/gibs{ + color = "red"; + icon_state = "gibdown1_flesh" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"Kp" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/outdoors/snow, +/area/submap/GreatWolfDen) +"KU" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "grass3" + }, +/turf/simulated/floor/outdoors/snow, +/area/submap/GreatWolfDen) +"Lx" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"Lz" = ( +/obj/effect/decal/cleanable/blood/gibs{ + color = "red"; + icon_state = "gib1_flesh" + }, +/turf/simulated/floor/outdoors/grass/sif/forest{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"LJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/sif/subterranean{ + icon_state = "glowplant2" + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"LP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rocks2, +/obj/structure/ledge/ledge_stairs, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"LT" = ( +/obj/structure/cliff/automatic/corner{ + dir = 10 + }, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"Mc" = ( +/obj/effect/decal/cleanable/ash, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"Mv" = ( +/obj/random/outcrop, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"MD" = ( +/obj/structure/flora/tree/sif{ + icon_state = "tree_sif4" + }, +/turf/simulated/floor/outdoors/snow, +/area/submap/GreatWolfDen) +"OB" = ( +/obj/item/stack/material/log{ + amount = 25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"OL" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"OV" = ( +/obj/structure/cliff/automatic{ + dir = 6 + }, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"OW" = ( +/obj/structure/cliff/automatic{ + dir = 5 + }, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"Pa" = ( +/obj/structure/cliff/automatic/ramp, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"Pf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"Pl" = ( +/obj/effect/decal/remains/lizard, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"PC" = ( +/obj/structure/closet/crate/secure/loot, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"PX" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"Qb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rocks1, +/obj/structure/ledge/ledge_stairs, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"Qv" = ( +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"QA" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "grass2" + }, +/turf/simulated/floor/outdoors/snow, +/area/submap/GreatWolfDen) +"QJ" = ( +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"QM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"Rb" = ( +/obj/item/weapon/bone/leg, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"Rf" = ( +/obj/structure/loot_pile/surface/bones, +/obj/structure/flora/sif/subterranean{ + icon_state = "frostbelle" + }, +/obj/item/weapon/gun/projectile/pistol, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"Rj" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/outdoors/snow, +/area/submap/GreatWolfDen) +"Rx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"RW" = ( +/obj/structure/flora/rocks2, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"SO" = ( +/obj/item/weapon/telecube/mated, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"SQ" = ( +/obj/structure/cliff/automatic/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"Tf" = ( +/obj/item/weapon/paper/card/heart{ + desc = "A gift card with a heart on the cover. This appears to be a thank-you to the.. wolves??" + }, +/obj/item/weapon/paper/crumpled{ + icon_state = "scrap_bloodied"; + info = "The wolves dragged me back to their den when they found me incapacitated, and nursed me back to health, instead of eating me. I don't know why. Anyway, they're a bunch of goodboyes. Don't let the bones strewn about their den frighten you. Just be nice to them and they won't hurt you."; + name = "survivor's note" + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"Tn" = ( +/obj/structure/bonfire, +/turf/simulated/floor/outdoors/grass/sif/forest{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"Ty" = ( +/obj/random/trash_pile, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"UV" = ( +/obj/structure/cliff/automatic{ + dir = 10 + }, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"Vq" = ( +/obj/structure/loot_pile/surface/bones, +/obj/random/projectile/scrapped_gun, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"WH" = ( +/obj/structure/loot_pile/surface/bones, +/obj/item/weapon/storage/toolbox/syndicate, +/obj/random/projectile/scrapped_gun, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"WR" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "glowplant1" + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"WY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rocks1, +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"Xx" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "grass1" + }, +/turf/simulated/floor/outdoors/snow, +/area/submap/GreatWolfDen) +"Xy" = ( +/obj/item/weapon/bone/ribs, +/obj/effect/landmark/loot_spawn/low, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"Yw" = ( +/obj/structure/loot_pile/surface/bones, +/obj/effect/landmark/loot_spawn/low, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"Zj" = ( +/turf/simulated/floor/outdoors/grass/sif/forest{ + outdoors = 0 + }, +/area/submap/GreatWolfDen) +"Zk" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "glowplant2" + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) +"Zu" = ( +/obj/structure/loot_pile/surface/bones, +/obj/effect/landmark/loot_spawn/low, +/obj/effect/decal/cleanable/dirt, +/obj/random/projectile/scrapped_gun, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/submap/GreatWolfDen) + +(1,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +"} +(2,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +Ty +pS +pS +Qv +Qv +Qv +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +"} +(3,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +Qv +Qv +Qv +HC +Qv +Qv +Qv +Qv +Qv +Qv +Qv +pS +pS +pS +pS +pS +pS +Qv +pS +pS +"} +(4,1,1) = {" +pS +pS +pS +pS +Qv +pS +pS +Qv +Qv +Qv +bp +dX +dX +dX +dX +dX +dX +dX +Dj +Qv +HC +Qv +pS +pS +pS +pS +Qv +Qv +pS +pS +"} +(5,1,1) = {" +pS +pS +pS +pS +pS +pS +Qv +bp +dX +dX +OV +tm +tm +tm +tm +tm +tm +tm +OW +dX +dX +Dj +Qv +Qv +Qv +pS +pS +pS +pS +pS +"} +(6,1,1) = {" +pS +pS +pS +pS +pS +Qv +Qv +fh +tm +tm +tm +tm +tm +tm +tm +tm +tm +tm +tm +tm +tm +OW +dX +Dj +Qv +Qv +pS +pS +pS +pS +"} +(7,1,1) = {" +pS +pS +pS +pS +Qv +Qv +bp +OV +tm +tm +tm +tm +jg +yi +Mv +tm +tm +tm +tm +tm +tm +tm +tm +OW +Dj +Qv +pS +pS +pS +pS +"} +(8,1,1) = {" +pS +pS +pS +pS +pS +Qv +fh +tm +tm +tm +yi +CR +xK +uY +QJ +Zu +zs +QJ +QJ +Mv +tm +tm +tm +tm +OW +Dj +Qv +pS +pS +pS +"} +(9,1,1) = {" +pS +pS +pS +pS +pS +Qv +fh +tm +tm +Mc +QJ +qb +lu +mk +uY +QJ +QJ +kk +QJ +QJ +QJ +tb +tm +tm +tm +OL +Qv +Qv +pS +pS +"} +(10,1,1) = {" +pS +pS +pS +pS +Qv +Qv +fh +tm +tm +mm +Rb +EU +lQ +yi +Kb +QM +Iw +QJ +RW +Zk +QJ +QJ +tm +tm +tm +OL +Qv +Qv +Qv +pS +"} +(11,1,1) = {" +pS +pS +pS +Qv +Qv +Qv +fh +tm +tm +bz +Pl +bI +DV +tm +wc +QJ +QJ +QJ +QJ +QJ +Cd +QJ +kg +tm +tm +OW +Dj +Qv +Qv +pS +"} +(12,1,1) = {" +pS +pS +pS +Qv +HC +Qv +LT +UV +tm +tm +bI +CR +tm +tm +rn +PX +Tn +Zj +Zj +uz +QJ +QJ +yi +tm +tm +tm +OL +Qv +Qv +pS +"} +(13,1,1) = {" +pS +pS +Id +pS +Qv +Qv +Qv +fh +tm +tm +Tf +Ko +tm +tm +OB +uz +Zj +Xx +rM +Zj +Iw +QJ +QJ +tm +tm +tm +OL +Qv +Qv +pS +"} +(14,1,1) = {" +pS +pS +pS +pS +Id +Qv +Qv +fh +tm +tm +CR +CR +tm +yF +qb +Fy +Zj +Rj +Kp +Lz +Zj +QJ +uz +Xy +tm +tm +OL +Qv +Qv +Qv +"} +(15,1,1) = {" +pS +Qv +Id +fX +pS +dM +Pa +OV +tm +LJ +Pf +CR +tm +ju +aa +Lz +eq +bY +MD +yG +Zj +QJ +If +QJ +tm +tm +OL +Qv +HC +Qv +"} +(16,1,1) = {" +Qv +pS +Qv +Id +Rx +zV +LP +Qb +AG +CR +CR +CR +tm +SO +tC +Zj +Zj +bY +QA +Zj +kL +uz +QJ +Mv +tm +tm +OL +Qv +Qv +Qv +"} +(17,1,1) = {" +pS +pS +Qv +Rx +WY +Rx +AK +UV +tm +tm +tm +tm +tm +vu +WR +EU +nv +KU +Rj +Zj +QJ +QJ +QJ +QJ +tm +tm +OL +Qv +Qv +pS +"} +(18,1,1) = {" +pS +pS +pS +pS +pS +pS +Qv +LT +UV +tm +tm +tm +zs +QJ +xK +Ic +Zj +Zj +bY +Zj +nd +QJ +QJ +lL +tm +tm +OL +Qv +Qv +pS +"} +(19,1,1) = {" +pS +pS +pS +pS +pS +pS +Qv +Qv +fh +tm +tm +tm +tm +Hb +QJ +uz +QJ +Zj +Zj +Zj +QJ +uz +xt +tm +tm +hJ +SQ +Qv +pS +Qv +"} +(20,1,1) = {" +pS +pS +pS +pS +pS +pS +Qv +Qv +fh +tm +tm +tm +tm +PC +QJ +qb +kk +Ic +uz +QJ +Vq +xt +Rf +tm +tm +OL +Qv +Qv +pS +pS +"} +(21,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +Qv +LT +UV +tm +tm +tm +tm +QJ +WH +iX +yH +qb +QJ +Vq +Yw +tm +tm +tm +OL +Qv +Qv +Qv +pS +"} +(22,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +Qv +HC +fh +tm +tm +tm +tm +zl +yi +QJ +ge +QJ +Vq +xt +tm +tm +tm +hJ +SQ +Qv +Ty +Qv +pS +"} +(23,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +Qv +LT +UV +tm +tm +tm +tm +tm +tm +tm +tm +tm +tm +tm +tm +hJ +SQ +Qv +Qv +pS +pS +pS +"} +(24,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +Qv +Qv +LT +Lx +UV +tm +tm +tm +tm +tm +tm +tm +tm +tm +hJ +SQ +Qv +Qv +Qv +pS +pS +pS +"} +(25,1,1) = {" +pS +pS +pS +pS +pS +Qv +pS +pS +pS +Qv +Qv +Qv +LT +Lx +UV +tm +tm +hJ +Lx +Lx +Lx +Lx +SQ +Qv +Qv +pS +pS +pS +pS +pS +"} +(26,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +pS +Qv +Qv +Qv +Qv +Ty +LT +Lx +Lx +SQ +Qv +Qv +Qv +Qv +Qv +Qv +pS +pS +pS +pS +pS +pS +"} +(27,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +Qv +Qv +Qv +Qv +Qv +Qv +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +"} +(28,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +Qv +Qv +HC +Qv +Qv +pS +pS +pS +pS +pS +pS +Qv +Qv +pS +pS +pS +"} +(29,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +Qv +pS +pS +pS +pS +pS +pS +"} +(30,1,1) = {" +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +pS +"} diff --git a/maps/submaps/surface_submaps/wilderness/leopardmanderden.dmm b/maps/submaps/surface_submaps/wilderness/leopardmanderden.dmm index 305a26567d..f0fd28901d 100644 --- a/maps/submaps/surface_submaps/wilderness/leopardmanderden.dmm +++ b/maps/submaps/surface_submaps/wilderness/leopardmanderden.dmm @@ -242,7 +242,7 @@ /turf/simulated/floor/outdoors/dirt, /area/template_noop) "sN" = ( -/mob/living/simple_mob/otie/red/chubby{ +/mob/living/simple_mob/vore/otie/red/chubby{ desc = "Seems this ominous looking longdog has been infused with wicked infernal forces. What an absolute unit. It has a collar around one of its ankles that reads 'Tawny'."; name = "Tawny" }, diff --git a/maps/submaps/surface_submaps/wilderness/otieshelter.dmm b/maps/submaps/surface_submaps/wilderness/otieshelter.dmm index be1981d224..9bf07c817e 100644 --- a/maps/submaps/surface_submaps/wilderness/otieshelter.dmm +++ b/maps/submaps/surface_submaps/wilderness/otieshelter.dmm @@ -1,1069 +1,1070 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ag" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "5" - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"aj" = ( -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "5" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/submap/OtieShelter) -"ar" = ( -/obj/structure/closet/secure_closet/medical_wall/anesthetics, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"cq" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/submap/OtieShelter) -"cU" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/submap/OtieShelter) -"eI" = ( -/obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/submap/OtieShelter) -"fw" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/tiled/techfloor/grid, -/area/submap/OtieShelter) -"gr" = ( -/obj/machinery/porta_turret/poi, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/submap/OtieShelter) -"gN" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/carpet/turcarpet, -/area/submap/OtieShelter) -"hh" = ( -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/obj/item/trash/bowl, -/obj/item/weapon/reagent_containers/food/snacks/meat/human, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"hk" = ( -/obj/structure/grille/rustic, -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/obj/structure/window/phoronreinforced, -/turf/simulated/floor/plating, -/area/submap/OtieShelter) -"hD" = ( -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"iv" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/firstaid/surgery, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"iC" = ( -/obj/effect/decal/cleanable/blood, -/mob/living/simple_mob/otie/friendly{ - health = 0 - }, -/turf/template_noop, -/area/template_noop) -"iY" = ( -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/item/trash/bowl, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"jc" = ( -/obj/machinery/optable, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"jo" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"jy" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/carpet/turcarpet, -/area/submap/OtieShelter) -"jI" = ( -/obj/item/weapon/material/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/blood/tracks{ - color = "red"; - desc = "Your instincts say you shouldn't be following these."; - dir = 4; - icon = 'icons/effects/blood.dmi'; - icon_state = "tracks" - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"kF" = ( -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/structure/dogbed, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"kX" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"lv" = ( -/obj/structure/door_assembly, -/turf/simulated/floor/tiled/techfloor/grid, -/area/submap/OtieShelter) -"lP" = ( -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "4" - }, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "2" - }, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"lQ" = ( -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"lY" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "4" - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"mu" = ( -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/mob/living/simple_mob/otie/friendly/chubby, -/obj/item/trash/bowl, -/obj/item/weapon/reagent_containers/food/snacks/meat/human, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"mC" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"mJ" = ( -/obj/structure/sign/warning/secure_area, -/turf/simulated/wall/r_wall, -/area/submap/OtieShelter) -"nK" = ( -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "4" - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"nR" = ( -/obj/structure/table/marble, -/obj/item/weapon/newspaper, -/obj/item/weapon/paper/card/heart, -/turf/simulated/floor/carpet/turcarpet, -/area/submap/OtieShelter) -"ob" = ( -/obj/structure/grille/rustic, -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/structure/window/phoronreinforced, -/turf/simulated/floor/plating, -/area/submap/OtieShelter) -"od" = ( -/obj/machinery/door/window, -/obj/item/weapon/bone, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"op" = ( -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "4" - }, -/turf/simulated/floor/plating, -/area/submap/OtieShelter) -"pa" = ( -/obj/structure/loot_pile/surface/bones, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/filth, -/obj/effect/decal/cleanable/filth, -/obj/random/handgun/sec, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"pd" = ( -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "5" - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"rb" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/submap/OtieShelter) -"sJ" = ( -/obj/structure/grille/rustic, -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/obj/structure/window/phoronreinforced, -/turf/simulated/floor/plating, -/area/submap/OtieShelter) -"tt" = ( -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/mob/living/simple_mob/otie/cotie, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"tz" = ( -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "2" - }, -/turf/simulated/floor/carpet/turcarpet, -/area/submap/OtieShelter) -"tP" = ( -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/obj/item/trash/bowl, -/obj/item/weapon/reagent_containers/food/snacks/meat/human, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"uD" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"uS" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"vA" = ( -/obj/item/weapon/bone, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"vB" = ( -/obj/machinery/door/window{ - dir = 8 - }, -/obj/item/weapon/bone, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"vV" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/carpet/turcarpet, -/area/submap/OtieShelter) -"wO" = ( -/obj/structure/dogbed, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"xf" = ( -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/structure/reagent_dispensers, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"xj" = ( -/obj/structure/table/marble, -/obj/item/modular_computer/laptop/preset/custom_loadout/cheap, -/turf/simulated/floor/carpet/turcarpet, -/area/submap/OtieShelter) -"xI" = ( -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/mob/living/simple_mob/otie/friendly, -/obj/structure/dogbed, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"yD" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/firstaid/adv, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"Aa" = ( -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/mob/living/simple_mob/otie/cotie/phoron, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"At" = ( -/obj/structure/table/marble, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/simulated/floor/carpet/turcarpet, -/area/submap/OtieShelter) -"AO" = ( -/obj/structure/table/glass, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"BM" = ( -/obj/item/weapon/melee/baton/cattleprod, -/obj/effect/decal/cleanable/blood/tracks{ - color = "red"; - desc = "Your instincts say you shouldn't be following these."; - dir = 4; - icon = 'icons/effects/blood.dmi'; - icon_state = "tracks" - }, -/obj/effect/decal/cleanable/filth, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"Cw" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/firstaid, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"CM" = ( -/obj/structure/closet/wardrobe, -/turf/simulated/floor/carpet/turcarpet, -/area/submap/OtieShelter) -"EE" = ( -/obj/machinery/door/airlock/engineering, -/turf/simulated/floor/plating, -/area/submap/OtieShelter) -"EI" = ( -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "2" - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"Hk" = ( -/obj/machinery/door/window, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"HV" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"Ih" = ( -/obj/item/weapon/reagent_containers/food/snacks/meat/human, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"Ij" = ( -/mob/living/simple_mob/otie/cotie, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"IF" = ( -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"JY" = ( -/turf/simulated/floor/plating, -/area/submap/OtieShelter) -"KJ" = ( -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"Lr" = ( -/obj/structure/door_assembly, -/turf/simulated/floor/plating, -/area/submap/OtieShelter) -"LF" = ( -/obj/structure/ghost_pod/manual/lost_drone/dogborg, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"Mc" = ( -/obj/structure/fireaxecabinet{ - pixel_y = 29 - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"Mg" = ( -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"Mn" = ( -/mob/living/simple_mob/otie/red/chubby, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"Mz" = ( -/turf/simulated/wall/r_wall, -/area/submap/OtieShelter) -"MK" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/submap/OtieShelter) -"Nd" = ( -/obj/structure/table/marble, -/obj/structure/table/marble, -/obj/item/device/radio/phone, -/turf/simulated/floor/carpet/turcarpet, -/area/submap/OtieShelter) -"Nh" = ( -/obj/item/weapon/bedsheet/browndouble, -/obj/structure/bed/double/padded, -/turf/simulated/floor/carpet/turcarpet, -/area/submap/OtieShelter) -"Np" = ( -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/obj/item/trash/bowl, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"NJ" = ( -/obj/machinery/door/window{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"Of" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"OJ" = ( -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "2" - }, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "5" - }, -/obj/effect/decal/cleanable/blood/tracks/paw{ - icon_state = "paw1" - }, -/obj/item/ammo_casing/spent, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"Pn" = ( -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/obj/item/trash/bowl, -/obj/item/weapon/reagent_containers/food/snacks/meat/human, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"Px" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"Qr" = ( -/turf/template_noop, -/area/template_noop) -"Ro" = ( -/turf/simulated/floor/carpet/turcarpet, -/area/submap/OtieShelter) -"RW" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "PAPC"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/submap/OtieShelter) -"TP" = ( -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/submap/OtieShelter) -"UF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"UH" = ( -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/obj/item/trash/bowl, -/obj/item/weapon/reagent_containers/food/snacks/meat/human, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"VE" = ( -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/obj/effect/decal/cleanable/blood/tracks/paw{ - icon_state = "paw1" - }, -/turf/simulated/floor/carpet/turcarpet, -/area/submap/OtieShelter) -"VL" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "2" - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/carpet/turcarpet, -/area/submap/OtieShelter) -"VY" = ( -/mob/living/simple_mob/otie/cotie/chubby, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"Wl" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/windoor_assembly, -/obj/structure/windoor_assembly{ - dir = 2 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/submap/OtieShelter) -"WY" = ( -/obj/machinery/oxygen_pump/mobile/anesthetic, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"XB" = ( -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) -"XG" = ( -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/mob/living/simple_mob/otie/red/friendly, -/turf/simulated/floor/tiled, -/area/submap/OtieShelter) - -(1,1,1) = {" -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -"} -(2,1,1) = {" -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -"} -(3,1,1) = {" -Qr -Mz -Mz -Mz -Mz -Mz -Mz -Mz -Mz -Mz -Mz -Mz -Mz -Mz -Mz -Mz -Mz -Qr -Qr -Qr -"} -(4,1,1) = {" -Qr -Mz -wO -Of -kF -Of -kF -Of -xI -Of -kF -Of -Mz -Nh -MK -gN -Mz -Qr -Qr -Qr -"} -(5,1,1) = {" -Qr -Mz -IF -VY -tt -IF -Aa -Ih -lQ -IF -lQ -IF -Mz -vV -Ro -Ro -Mz -Qr -Qr -Qr -"} -(6,1,1) = {" -Qr -Mz -hh -Hk -tP -Hk -Np -od -Np -Hk -mu -Hk -Mz -CM -Ro -Ro -Mz -gr -Qr -Qr -"} -(7,1,1) = {" -Qr -Mz -ar -Px -Px -Px -Px -Px -Px -Px -Px -Px -Mz -Mz -fw -Mz -mJ -rb -Lr -Qr -"} -(8,1,1) = {" -Qr -Mz -jo -IF -IF -IF -IF -IF -IF -IF -IF -IF -fw -mC -nK -ag -IF -aj -op -iC -"} -(9,1,1) = {" -Qr -Mz -Mc -IF -IF -AO -Cw -yD -AO -IF -IF -uD -Mz -Mz -lv -Mz -mJ -rb -JY -Qr -"} -(10,1,1) = {" -Qr -Mz -HV -WY -jc -AO -iv -AO -AO -vA -hD -IF -sJ -MK -tz -Ro -Mz -gr -Qr -Qr -"} -(11,1,1) = {" -Qr -Mz -jo -IF -IF -IF -IF -IF -hD -pa -OJ -IF -ob -jy -Nd -nR -Mz -Qr -Qr -Qr -"} -(12,1,1) = {" -Qr -Mz -LF -UF -UF -UF -UF -UF -UF -BM -kX -EI -hk -Ro -xj -cq -Mz -Qr -Qr -Qr -"} -(13,1,1) = {" -Qr -Mz -UH -NJ -Pn -vB -Pn -NJ -Mg -jI -xf -lY -Mz -VL -At -Ro -Mz -Qr -Qr -Qr -"} -(14,1,1) = {" -Qr -Mz -IF -Ij -XG -IF -lQ -Mn -iY -lP -XB -pd -Wl -VE -Ro -Ro -Mz -Qr -Qr -Qr -"} -(15,1,1) = {" -Qr -Mz -wO -uS -kF -uS -kF -uS -kF -uS -KJ -IF -Mz -Ro -Ro -Ro -Mz -Qr -Qr -Qr -"} -(16,1,1) = {" -Qr -Mz -Mz -Mz -Mz -Mz -Mz -Mz -Mz -Mz -Mz -EE -Mz -Mz -Mz -Mz -Mz -Qr -Qr -Qr -"} -(17,1,1) = {" -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Mz -RW -cU -Mz -Qr -Qr -Qr -Qr -Qr -Qr -"} -(18,1,1) = {" -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Mz -TP -eI -Mz -Qr -Qr -Qr -Qr -Qr -Qr -"} -(19,1,1) = {" -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Mz -Mz -Mz -Mz -Qr -Qr -Qr -Qr -Qr -Qr -"} -(20,1,1) = {" -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -"} +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ag" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"aj" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/submap/OtieShelter) +"ar" = ( +/obj/structure/closet/secure_closet/medical_wall/anesthetics, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"cq" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"cU" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/OtieShelter) +"eI" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/OtieShelter) +"fw" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/OtieShelter) +"gr" = ( +/obj/machinery/porta_turret/poi, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/submap/OtieShelter) +"gN" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"hh" = ( +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/item/trash/bowl, +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"hk" = ( +/obj/structure/grille/rustic, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/structure/window/phoronreinforced, +/turf/simulated/floor/plating, +/area/submap/OtieShelter) +"hD" = ( +/obj/effect/decal/cleanable/filth, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"iv" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/surgery, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"iC" = ( +/obj/effect/decal/cleanable/blood, +/mob/living/simple_mob/vore/otie/friendly{ + health = 0 + }, +/turf/template_noop, +/area/template_noop) +"iY" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/item/trash/bowl, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"jc" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"jo" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"jy" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"jI" = ( +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/blood/tracks{ + color = "red"; + desc = "Your instincts say you shouldn't be following these."; + dir = 4; + icon = 'icons/effects/blood.dmi'; + icon_state = "tracks" + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"kF" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/dogbed, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"kX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"lv" = ( +/obj/structure/door_assembly, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/OtieShelter) +"lP" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "4" + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"lQ" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"lY" = ( +/obj/machinery/light, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "4" + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"mu" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/mob/living/simple_mob/vore/otie/friendly/chubby, +/obj/item/trash/bowl, +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"mC" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"mJ" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/submap/OtieShelter) +"nK" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "4" + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"nR" = ( +/obj/structure/table/marble, +/obj/item/weapon/newspaper, +/obj/item/weapon/paper/card/heart, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"ob" = ( +/obj/structure/grille/rustic, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced, +/turf/simulated/floor/plating, +/area/submap/OtieShelter) +"od" = ( +/obj/machinery/door/window, +/obj/item/weapon/bone, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"op" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "4" + }, +/turf/simulated/floor/plating, +/area/submap/OtieShelter) +"pa" = ( +/obj/structure/loot_pile/surface/bones, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/filth, +/obj/effect/decal/cleanable/filth, +/obj/random/handgun/sec, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"pd" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"rb" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/submap/OtieShelter) +"sJ" = ( +/obj/structure/grille/rustic, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced, +/turf/simulated/floor/plating, +/area/submap/OtieShelter) +"tt" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/mob/living/simple_mob/vore/otie/cotie, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"tz" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"tP" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/item/trash/bowl, +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"uD" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"uS" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"vA" = ( +/obj/item/weapon/bone, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"vB" = ( +/obj/machinery/door/window{ + dir = 8 + }, +/obj/item/weapon/bone, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"vV" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"wO" = ( +/obj/structure/dogbed, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"xf" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/reagent_dispensers, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"xj" = ( +/obj/structure/table/marble, +/obj/item/modular_computer/laptop/preset/custom_loadout/cheap, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"xI" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/mob/living/simple_mob/vore/otie/friendly, +/obj/structure/dogbed, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"yD" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/adv, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Aa" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/mob/living/simple_mob/vore/otie/cotie/phoron, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"At" = ( +/obj/structure/table/marble, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"AO" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"BM" = ( +/obj/item/weapon/melee/baton/cattleprod, +/obj/effect/decal/cleanable/blood/tracks{ + color = "red"; + desc = "Your instincts say you shouldn't be following these."; + dir = 4; + icon = 'icons/effects/blood.dmi'; + icon_state = "tracks" + }, +/obj/effect/decal/cleanable/filth, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Cw" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"CM" = ( +/obj/structure/closet/wardrobe, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"EE" = ( +/obj/machinery/door/airlock/engineering, +/turf/simulated/floor/plating, +/area/submap/OtieShelter) +"EI" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Hk" = ( +/obj/machinery/door/window, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"HV" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Ih" = ( +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Ij" = ( +/mob/living/simple_mob/vore/otie/cotie{ + max_co2 = 0; + max_tox = 0 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"IF" = ( +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"JY" = ( +/turf/simulated/floor/plating, +/area/submap/OtieShelter) +"KJ" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Lr" = ( +/obj/structure/door_assembly, +/turf/simulated/floor/plating, +/area/submap/OtieShelter) +"LF" = ( +/obj/structure/ghost_pod/manual/lost_drone/dogborg, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Mc" = ( +/obj/structure/fireaxecabinet{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Mg" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Mn" = ( +/mob/living/simple_mob/vore/otie/red/chubby, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Mz" = ( +/turf/simulated/wall/r_wall, +/area/submap/OtieShelter) +"MK" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"Nd" = ( +/obj/structure/table/marble, +/obj/structure/table/marble, +/obj/item/device/radio/phone, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"Nh" = ( +/obj/item/weapon/bedsheet/browndouble, +/obj/structure/bed/double/padded, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"Np" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/item/trash/bowl, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"NJ" = ( +/obj/machinery/door/window{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Of" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"OJ" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/obj/effect/decal/cleanable/blood/tracks/paw{ + icon_state = "paw1" + }, +/obj/item/ammo_casing/spent, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Pn" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/item/trash/bowl, +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Px" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Qr" = ( +/turf/template_noop, +/area/template_noop) +"Ro" = ( +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"RW" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "PAPC"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/OtieShelter) +"TP" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/OtieShelter) +"UF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"UH" = ( +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/item/trash/bowl, +/obj/item/weapon/reagent_containers/food/snacks/meat/human, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"VE" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/effect/decal/cleanable/blood/tracks/paw{ + icon_state = "paw1" + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"VL" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/OtieShelter) +"VY" = ( +/mob/living/simple_mob/vore/otie/cotie/chubby, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"Wl" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/windoor_assembly, +/obj/structure/windoor_assembly{ + dir = 2 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/OtieShelter) +"WY" = ( +/obj/machinery/oxygen_pump/mobile/anesthetic, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"XB" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) +"XG" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/mob/living/simple_mob/vore/otie/red/friendly, +/turf/simulated/floor/tiled, +/area/submap/OtieShelter) + +(1,1,1) = {" +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +"} +(2,1,1) = {" +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +"} +(3,1,1) = {" +Qr +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Qr +Qr +Qr +"} +(4,1,1) = {" +Qr +Mz +wO +Of +kF +Of +kF +Of +xI +Of +kF +Of +Mz +Nh +MK +gN +Mz +Qr +Qr +Qr +"} +(5,1,1) = {" +Qr +Mz +IF +VY +tt +IF +Aa +Ih +lQ +IF +lQ +IF +Mz +vV +Ro +Ro +Mz +Qr +Qr +Qr +"} +(6,1,1) = {" +Qr +Mz +hh +Hk +tP +Hk +Np +od +Np +Hk +mu +Hk +Mz +CM +Ro +Ro +Mz +gr +Qr +Qr +"} +(7,1,1) = {" +Qr +Mz +ar +Px +Px +Px +Px +Px +Px +Px +Px +Px +Mz +Mz +fw +Mz +mJ +rb +Lr +Qr +"} +(8,1,1) = {" +Qr +Mz +jo +IF +IF +IF +IF +IF +IF +IF +IF +IF +fw +mC +nK +ag +IF +aj +op +iC +"} +(9,1,1) = {" +Qr +Mz +Mc +IF +IF +AO +Cw +yD +AO +IF +IF +uD +Mz +Mz +lv +Mz +mJ +rb +JY +Qr +"} +(10,1,1) = {" +Qr +Mz +HV +WY +jc +AO +iv +AO +AO +vA +hD +IF +sJ +MK +tz +Ro +Mz +gr +Qr +Qr +"} +(11,1,1) = {" +Qr +Mz +jo +IF +IF +IF +IF +IF +hD +pa +OJ +IF +ob +jy +Nd +nR +Mz +Qr +Qr +Qr +"} +(12,1,1) = {" +Qr +Mz +LF +UF +UF +UF +UF +UF +UF +BM +kX +EI +hk +Ro +xj +cq +Mz +Qr +Qr +Qr +"} +(13,1,1) = {" +Qr +Mz +UH +NJ +Pn +vB +Pn +NJ +Mg +jI +xf +lY +Mz +VL +At +Ro +Mz +Qr +Qr +Qr +"} +(14,1,1) = {" +Qr +Mz +IF +Ij +XG +IF +lQ +Mn +iY +lP +XB +pd +Wl +VE +Ro +Ro +Mz +Qr +Qr +Qr +"} +(15,1,1) = {" +Qr +Mz +wO +uS +kF +uS +kF +uS +kF +uS +KJ +IF +Mz +Ro +Ro +Ro +Mz +Qr +Qr +Qr +"} +(16,1,1) = {" +Qr +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +EE +Mz +Mz +Mz +Mz +Mz +Qr +Qr +Qr +"} +(17,1,1) = {" +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Mz +RW +cU +Mz +Qr +Qr +Qr +Qr +Qr +Qr +"} +(18,1,1) = {" +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Mz +TP +eI +Mz +Qr +Qr +Qr +Qr +Qr +Qr +"} +(19,1,1) = {" +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Mz +Mz +Mz +Mz +Qr +Qr +Qr +Qr +Qr +Qr +"} +(20,1,1) = {" +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +"} diff --git a/maps/submaps/surface_submaps/wilderness/wolfden.dmm b/maps/submaps/surface_submaps/wilderness/wolfden.dmm index 960493c588..012d1bbdad 100644 --- a/maps/submaps/surface_submaps/wilderness/wolfden.dmm +++ b/maps/submaps/surface_submaps/wilderness/wolfden.dmm @@ -19,7 +19,7 @@ }, /area/submap/WolfDen) "d" = ( -/mob/living/simple_mob/animal/wolf/direwolf{ +/mob/living/simple_mob/vore/wolf/direwolf{ faction = "wilderness" }, /turf/simulated/floor/outdoors/dirt{ @@ -59,7 +59,7 @@ /turf/simulated/mineral/ignore_mapgen, /area/submap/WolfDen) "p" = ( -/mob/living/simple_mob/animal/wolf/direwolf/dog{ +/mob/living/simple_mob/vore/wolf/direwolf/dog{ faction = "wilderness"; maxHealth = 350; melee_damage_lower = 15; @@ -109,7 +109,7 @@ }, /area/submap/WolfDen) "y" = ( -/mob/living/simple_mob/animal/wolf/direwolf{ +/mob/living/simple_mob/vore/wolf/direwolf{ faction = "wilderness" }, /obj/random/maintenance/security, diff --git a/maps/tether/submaps/underdark_pois/rykka_easter_egg.dmm b/maps/tether/submaps/underdark_pois/rykka_easter_egg.dmm index 65b4b5135c..dfe8845755 100644 --- a/maps/tether/submaps/underdark_pois/rykka_easter_egg.dmm +++ b/maps/tether/submaps/underdark_pois/rykka_easter_egg.dmm @@ -7,7 +7,7 @@ /area/mine/explored/underdark) "c" = ( /obj/structure/dogbed, -/mob/living/simple_mob/animal/wolf/direwolf/rykka{ +/mob/living/simple_mob/vore/wolf/direwolf/rykka{ attacktext = list("attacked, bites, gnaws"); friendly = list("nuzzles, cuddles, rubs against") }, diff --git a/maps/tether/submaps/underdark_pois/underdark_things.dm b/maps/tether/submaps/underdark_pois/underdark_things.dm index 499d5a924c..210fad46b9 100644 --- a/maps/tether/submaps/underdark_pois/underdark_things.dm +++ b/maps/tether/submaps/underdark_pois/underdark_things.dm @@ -15,7 +15,7 @@ poison_chance = 20 // Adds Phoron Wolf -/mob/living/simple_mob/animal/wolf/phoron +/mob/living/simple_mob/vore/wolf/phoron faction = "underdark" movement_cooldown = -1.5 diff --git a/maps/tether/submaps/underdark_pois/wolf_den.dmm b/maps/tether/submaps/underdark_pois/wolf_den.dmm index 59b5e79aec..efcaf437d2 100644 --- a/maps/tether/submaps/underdark_pois/wolf_den.dmm +++ b/maps/tether/submaps/underdark_pois/wolf_den.dmm @@ -23,7 +23,7 @@ /turf/simulated/mineral/floor/ignore_cavegen/virgo3b, /area/mine/explored/underdark) "g" = ( -/mob/living/simple_mob/animal/wolf/phoron, +/mob/living/simple_mob/vore/wolf/phoron, /turf/simulated/mineral/floor/ignore_cavegen/virgo3b, /area/mine/explored/underdark) "h" = ( @@ -36,7 +36,7 @@ /turf/simulated/mineral/floor/ignore_cavegen/virgo3b, /area/mine/explored/underdark) "j" = ( -/mob/living/simple_mob/otie/feral{ +/mob/living/simple_mob/vore/otie/feral{ faction = "underdark" }, /turf/simulated/mineral/floor/ignore_cavegen/virgo3b, diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm index 77adde36bc..c0a9adc395 100644 --- a/maps/tether/tether-03-surface3.dmm +++ b/maps/tether/tether-03-surface3.dmm @@ -19765,6 +19765,8 @@ /obj/effect/floor_decal/corner/paleblue/border, /obj/effect/floor_decal/borderfloorwhite/corner2, /obj/effect/floor_decal/corner/paleblue/bordercorner2, +/obj/structure/table/glass, +/obj/item/device/healthanalyzer/guide, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) "aFD" = ( @@ -20239,6 +20241,8 @@ /obj/machinery/camera/network/medbay{ dir = 1 }, +/obj/item/device/healthanalyzer/guide, +/obj/structure/table/glass, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) "aGn" = ( diff --git a/maps/yw/submaps/gateway/snowfield.dm b/maps/yw/submaps/gateway/snowfield.dm index 6d6f7b1b2d..6548ca6f0d 100644 --- a/maps/yw/submaps/gateway/snowfield.dm +++ b/maps/yw/submaps/gateway/snowfield.dm @@ -28,7 +28,7 @@ valid_mobs = list(/mob/living/simple_mob/animal/sif/sakimm/polar, /mob/living/simple_mob/animal/sif/diyaab/polar, /mob/living/simple_mob/animal/sif/shantak/polar, /mob/living/simple_mob/animal/space/bear/polar, - /mob/living/simple_mob/animal/wolf) + /mob/living/simple_mob/vore/wolf) valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green, /obj/structure/flora/grass/both, /obj/structure/flora/bush, /obj/structure/flora/ausbushes/grassybush, @@ -176,4 +176,4 @@ /obj/effect/floor_decal/derelict/d16 name = "derelict16" - icon_state = "derelict16" \ No newline at end of file + icon_state = "derelict16" diff --git a/maps/yw/submaps/underdark_pois/goldhall.dmm b/maps/yw/submaps/underdark_pois/goldhall.dmm index ac72691f12..86ff4cec87 100644 --- a/maps/yw/submaps/underdark_pois/goldhall.dmm +++ b/maps/yw/submaps/underdark_pois/goldhall.dmm @@ -23,7 +23,7 @@ /area/mine/explored/underdark) "g" = ( /obj/effect/decal/remains, -/obj/item/weapon/ore/bluespace_crystal, +/obj/item/weapon/bluespace_crystal, /turf/simulated/floor/tiled/kafel_full/yellow/virgo3b, /area/mine/explored/underdark) diff --git a/modular_chomp/code/datums/supplypacks/contraband.dm b/modular_chomp/code/datums/supplypacks/contraband.dm new file mode 100644 index 0000000000..9ebdc4d3eb --- /dev/null +++ b/modular_chomp/code/datums/supplypacks/contraband.dm @@ -0,0 +1,99 @@ +/* +* Here is where any supply packs that may or may not be legal +* and require modification of the supply controller live. +*/ + + +/datum/supply_pack/randomised/contraband + num_contained = 5 + contains = list( + /obj/item/seeds/bloodtomatoseed, + /obj/item/weapon/storage/pill_bottle/zoom, + /obj/item/weapon/storage/pill_bottle/happy, + /obj/item/weapon/reagent_containers/food/drinks/bottle/pwine + ) + + name = "Contraband crate" + cost = 25 + containertype = /obj/structure/closet/crate + containername = "Unlabeled crate" + contraband = 1 + group = "Supplies" + +/datum/supply_pack/security/specialops + name = "Special Ops supplies" + contains = list( + /obj/item/weapon/storage/box/emps, + /obj/item/weapon/grenade/smokebomb = 4, + /obj/item/weapon/grenade/chem_grenade/incendiary + ) + cost = 25 + containertype = /obj/structure/closet/crate/weapon + containername = "Special Ops crate" + contraband = 1 + +/datum/supply_pack/supply/moghes + name = "Moghes imports" + contains = list( + /obj/item/weapon/reagent_containers/food/drinks/bottle/redeemersbrew = 2, + /obj/item/weapon/reagent_containers/food/snacks/unajerky = 4 + ) + cost = 25 + containertype = /obj/structure/closet/crate/unathi + containername = "Moghes imports crate" + contraband = 1 + +/datum/supply_pack/munitions/bolt_rifles_militia + name = "Weapon - Surplus militia rifles" + contains = list( + /obj/item/weapon/gun/projectile/shotgun/pump/rifle = 3, + /obj/item/ammo_magazine/clip/c762 = 6 + ) + cost = 1000 + contraband = 1 + containertype = /obj/structure/closet/crate/hedberg + containername = "Ballistic weapons crate" + +/datum/supply_pack/randomised/misc/telecrate + name = "Confiscated equipment" + num_contained = 1 + contains = list( + list( //the operator, + /obj/item/clothing/suit/storage/vest/heavy/merc, + /obj/item/clothing/glasses/night, + /obj/item/weapon/storage/box/anti_photons + ), + list( //the indian, + /obj/item/weapon/gun/projectile/dartgun, + /obj/item/ammo_magazine/chemdart + ), + + list( //the doc, + /obj/item/weapon/storage/firstaid/combat, + /obj/item/weapon/reagent_containers/hypospray + ), + + list( //the sapper, + /obj/item/weapon/melee/energy/sword/ionic_rapier, + /obj/item/weapon/storage/box/syndie_kit/space, //doesn't matter what species you are, + /obj/item/device/multitool/ai_detector, + /obj/item/weapon/storage/toolbox/syndicate/powertools + ), + list( //the infiltrator, + /obj/item/device/chameleon, + /obj/item/weapon/storage/box/syndie_kit/chameleon, + /obj/item/device/encryptionkey/syndicate, + /obj/item/weapon/card/id/syndicate, + /obj/item/clothing/mask/gas/voice, + /obj/item/weapon/makeover + ), + list( //the professional, + /obj/item/weapon/gun/energy/ionrifle/pistol, + /obj/item/weapon/material/knife/tacknife/combatknife, + /obj/item/clothing/mask/balaclava + ) + ) + cost = 400 //price, + contraband = 1 + containertype = /obj/structure/closet/crate/large + containername = "Suspicious crate" diff --git a/modular_chomp/code/game/objects/structures/crate_lockers/closets/secure/security.dm b/modular_chomp/code/game/objects/structures/crate_lockers/closets/secure/security.dm new file mode 100644 index 0000000000..12c2309172 --- /dev/null +++ b/modular_chomp/code/game/objects/structures/crate_lockers/closets/secure/security.dm @@ -0,0 +1,339 @@ +/obj/structure/closet/secure_closet/captains + name = "site manager's locker" + req_access = list(access_captain) + closet_appearance = /decl/closet_appearance/secure_closet/command + + starts_with = list( + /obj/item/weapon/storage/backpack/dufflebag/captain, + /obj/item/clothing/head/helmet, + /obj/item/clothing/suit/storage/vest, + /obj/item/weapon/cartridge/captain, + /obj/item/weapon/storage/lockbox/medal, + /obj/item/device/radio/headset/heads/captain, + /obj/item/device/radio/headset/heads/captain/alt, + /obj/item/weapon/gun/energy/gun, + /obj/item/weapon/melee/telebaton, + /obj/item/device/flash, + /obj/item/weapon/storage/box/ids) + + +/obj/structure/closet/secure_closet/hop + name = "head of personnel's locker" + req_access = list(access_hop) + closet_appearance = /decl/closet_appearance/secure_closet/command/hop + + starts_with = list( + /obj/item/clothing/suit/storage/vest, + /obj/item/clothing/head/helmet, + /obj/item/weapon/cartridge/hop, + /obj/item/device/radio/headset/heads/hop, + /obj/item/device/radio/headset/heads/hop/alt, + /obj/item/weapon/storage/box/ids = 2, + /obj/item/weapon/gun/energy/gun/compact, + /obj/item/weapon/storage/box/commandkeys, + /obj/item/weapon/storage/box/servicekeys, + /obj/item/device/flash) + +/obj/structure/closet/secure_closet/hop2 + name = "head of personnel's attire" + req_access = list(access_hop) + closet_appearance = /decl/closet_appearance/secure_closet/command/hop + + starts_with = list( + /obj/item/clothing/under/rank/head_of_personnel, + /obj/item/clothing/under/dress/dress_hop, + /obj/item/clothing/under/dress/dress_hr, + /obj/item/clothing/under/lawyer/female, + /obj/item/clothing/under/lawyer/black, + /obj/item/clothing/under/lawyer/black/skirt, + /obj/item/clothing/under/lawyer/red, + /obj/item/clothing/under/lawyer/red/skirt, + /obj/item/clothing/under/lawyer/oldman, + /obj/item/clothing/under/rank/neo_hop, + /obj/item/clothing/under/rank/neo_hop_skirt, + /obj/item/clothing/under/rank/neo_hop_parade_masc, + /obj/item/clothing/under/rank/neo_hop_parade_fem, + /obj/item/clothing/under/rank/neo_hop_turtle, + /obj/item/clothing/under/rank/neo_hop_turtle_skirt, + /obj/item/clothing/under/rank/neo_cmd_gorka, + /obj/item/clothing/suit/storage/toggle/labcoat/neo_hopformal, + /obj/item/clothing/suit/storage/toggle/labcoat/neo_civ_dep, + /obj/item/clothing/shoes/brown, + /obj/item/clothing/shoes/black, + /obj/item/clothing/shoes/laceup, + /obj/item/clothing/shoes/laceup/brown, + /obj/item/clothing/shoes/white, + /obj/item/clothing/under/rank/head_of_personnel_whimsy, + /obj/item/clothing/head/caphat/hop, + /obj/item/clothing/under/suit_jacket/teal, + /obj/item/clothing/under/suit_jacket/teal/skirt, + /obj/item/clothing/glasses/sunglasses, + /obj/item/clothing/suit/storage/hooded/wintercoat/hop, + /obj/item/clothing/head/caphat/hop/beret, + /obj/item/clothing/head/caphat/hop/beret/white) + + +/obj/structure/closet/secure_closet/hos + name = "head of security's locker" + req_access = list(access_hos) + storage_capacity = 2.5 * MOB_MEDIUM + closet_appearance = /decl/closet_appearance/secure_closet/security/hos + + starts_with = list( + /obj/item/clothing/head/helmet/HoS, + /obj/item/clothing/head/helmet/HoS/hat, + /obj/item/clothing/suit/storage/vest/hos, + /obj/item/clothing/under/rank/head_of_security/jensen, + /obj/item/clothing/under/rank/head_of_security/corp, + /obj/item/clothing/suit/storage/vest/hoscoat/jensen, + /obj/item/clothing/suit/storage/vest/hoscoat, + /obj/item/clothing/head/helmet/dermal, + /obj/item/weapon/cartridge/hos, + /obj/item/device/radio/headset/heads/hos, + /obj/item/device/radio/headset/heads/hos/alt, + /obj/item/clothing/glasses/sunglasses/sechud, + /obj/item/taperoll/police, + /obj/item/weapon/shield/riot, + /obj/item/weapon/shield/riot/tele, + /obj/item/weapon/storage/box/holobadge/hos, + /obj/item/clothing/accessory/badge/holo/hos, + /obj/item/weapon/reagent_containers/spray/pepper, + /obj/item/weapon/tool/crowbar/red, + /obj/item/weapon/storage/box/flashbangs, + /obj/item/weapon/storage/belt/security, + /obj/item/device/flash, + /obj/item/weapon/melee/baton/loaded, + /obj/item/weapon/gun/magnetic/railgun/heater/pistol/hos, + /obj/item/weapon/rcd_ammo/large, + /obj/item/weapon/cell/device/weapon, + /obj/item/clothing/accessory/holster/waist, + /obj/item/weapon/melee/telebaton, + /obj/item/clothing/head/beret/sec/corporate/hos, + /obj/item/clothing/suit/storage/hooded/wintercoat/security, + /obj/item/clothing/suit/storage/hooded/wintercoat/security/hos, + /obj/item/clothing/shoes/boots/winter/security, + /obj/item/device/flashlight/maglight, + /obj/item/clothing/mask/gas/half, + /obj/item/clothing/mask/gas/sechailer/swat/hos) + +/obj/structure/closet/secure_closet/hos/Initialize() + if(prob(50)) + starts_with += /obj/item/weapon/storage/backpack/security + else + starts_with += /obj/item/weapon/storage/backpack/satchel/sec + if(prob(50)) + starts_with += /obj/item/weapon/storage/backpack/dufflebag/sec + return ..() + + +/obj/structure/closet/secure_closet/warden + name = "warden's locker" + storage_capacity = 42 + req_access = list(access_armory) + closet_appearance = /decl/closet_appearance/secure_closet/security/warden + + starts_with = list( + /obj/item/clothing/suit/storage/vest/warden, + /obj/item/clothing/under/rank/warden, + /obj/item/clothing/under/rank/warden/corp, + /obj/item/clothing/suit/storage/vest/wardencoat, + /obj/item/clothing/suit/storage/vest/wardencoat/alt, + /obj/item/clothing/suit/storage/vest/wardencoat/alt2, //VOREStation Add, + /obj/item/clothing/head/helmet/dermal, + /obj/item/clothing/head/helmet/warden, + /obj/item/clothing/head/helmet/warden/hat, + /obj/item/clothing/under/rank/neo_warden_red, + /obj/item/clothing/under/rank/neo_warden_red_skirt, + /obj/item/clothing/under/rank/neo_warden_blue, + /obj/item/clothing/suit/storage/vest/wardencoat/neo_armsco_trench, + /obj/item/clothing/suit/storage/vest/wardencoat/neo_bluewarden, + /obj/item/clothing/suit/storage/vest/wardencoat/neo_warden_heavy, + /obj/item/clothing/under/rank/neo_sec_gorka, + /obj/item/weapon/cartridge/security, + /obj/item/device/radio/headset/headset_sec, + /obj/item/device/radio/headset/headset_sec/alt, + /obj/item/clothing/glasses/sunglasses/sechud, + /obj/item/taperoll/police, + /obj/item/clothing/accessory/badge/holo/warden, + /obj/item/weapon/storage/box/flashbangs, + /obj/item/weapon/storage/belt/security, + /obj/item/weapon/reagent_containers/spray/pepper, + /obj/item/weapon/melee/baton/loaded, + /obj/item/weapon/gun/energy/gun, + /obj/item/weapon/cell/device/weapon, + /obj/item/weapon/storage/box/holobadge, + /obj/item/clothing/head/beret/sec/corporate/warden, + /obj/item/clothing/suit/storage/hooded/wintercoat/security, + /obj/item/clothing/shoes/boots/winter/security, + /obj/item/device/flashlight/maglight, + /obj/item/device/megaphone, + /obj/item/clothing/mask/gas/sechailer/swat/warden, + /obj/item/weapon/gun/projectile/revolvershotgun, + /obj/item/ammo_magazine/m12gdrumjack/beanbag, + /obj/item/ammo_magazine/m12gdrumjack/beanbag, + /obj/item/device/ticket_printer, //CHOMPStation addition + /obj/item/device/retail_scanner/security //CHOMPStation addition + ) + +/obj/structure/closet/secure_closet/warden/Initialize() + if(prob(50)) + starts_with += /obj/item/weapon/storage/backpack/security + else + starts_with += /obj/item/weapon/storage/backpack/satchel/sec + if(prob(50)) + starts_with += /obj/item/weapon/storage/backpack/dufflebag/sec + return ..() + +/obj/structure/closet/secure_closet/security + name = "security officer's locker" + req_access = list(access_brig) + closet_appearance = /decl/closet_appearance/secure_closet/security + + starts_with = list( + /obj/item/clothing/suit/storage/vest/officer, + /obj/item/clothing/head/helmet, + /obj/item/clothing/mask/gas/sechailer/swat/officer, + /obj/item/weapon/cartridge/security, + /obj/item/device/radio/headset/headset_sec, + /obj/item/device/radio/headset/headset_sec/alt, + /obj/item/weapon/storage/belt/security, + /obj/item/device/flash, + /obj/item/weapon/reagent_containers/spray/pepper, + /obj/item/weapon/grenade/flashbang, + /obj/item/weapon/melee/baton/loaded, + /obj/item/clothing/glasses/sunglasses/sechud, + /obj/item/taperoll/police, + /obj/item/device/hailer, + /obj/item/device/flashlight/flare, + /obj/item/clothing/accessory/storage/black_vest, + /obj/item/clothing/head/soft/sec/corp, + /obj/item/clothing/under/rank/security/corp, + /obj/item/ammo_magazine/m45/rubber, + /obj/item/weapon/gun/energy/taser, + /obj/item/weapon/cell/device/weapon, + /obj/item/clothing/suit/storage/hooded/wintercoat/security, + /obj/item/clothing/shoes/boots/winter/security, + /obj/item/device/flashlight/maglight, + /obj/item/device/holowarrant, //CHOMPStation addition + /obj/item/device/retail_scanner/security, //CHOMPStation addition + /obj/item/clothing/glasses/hud/security, //CHOMPStation addition + /obj/item/device/ticket_printer //CHOMPStation addition + ) + +/obj/structure/closet/secure_closet/security/Initialize() + if(prob(50)) + starts_with += /obj/item/weapon/storage/backpack/security + else + starts_with += /obj/item/weapon/storage/backpack/satchel/sec + if(prob(50)) + starts_with += /obj/item/weapon/storage/backpack/dufflebag/sec + if(prob(30)) + starts_with += /obj/item/poster/nanotrasen + return ..() + +/obj/structure/closet/secure_closet/security/cargo/Initialize() + starts_with += /obj/item/clothing/accessory/armband/cargo + starts_with += /obj/item/device/encryptionkey/headset_cargo + return ..() + +/obj/structure/closet/secure_closet/security/engine/Initialize() + starts_with += /obj/item/clothing/accessory/armband/engine + starts_with += /obj/item/device/encryptionkey/headset_eng + return ..() + +/obj/structure/closet/secure_closet/security/science/Initialize() + starts_with += /obj/item/clothing/accessory/armband/science + starts_with += /obj/item/device/encryptionkey/headset_sci + return ..() + +/obj/structure/closet/secure_closet/security/med/Initialize() + starts_with += /obj/item/clothing/accessory/armband/medblue + starts_with += /obj/item/device/encryptionkey/headset_med + return ..() + + +/obj/structure/closet/secure_closet/detective + name = "detective's cabinet" + req_access = list(access_forensics_lockers) + closet_appearance = /decl/closet_appearance/cabinet/secure + + open_sound = 'sound/effects/wooden_closet_open.ogg' + close_sound = 'sound/effects/wooden_closet_close.ogg' + + starts_with = list( + /obj/item/clothing/accessory/badge/holo/detective, + /obj/item/clothing/gloves/forensic, //CHOMP Edit replaces black gloves + /obj/item/gunbox, //CHOMP Edit undoes vorestation removal and adds back gunbox + /obj/item/gunbox/stun, + /obj/item/weapon/storage/belt/detective, + /obj/item/weapon/storage/box/evidence, + /obj/item/device/radio/headset/headset_sec, + /obj/item/device/radio/headset/headset_sec/alt, + /obj/item/clothing/suit/storage/vest/detective, + /obj/item/taperoll/police, + /obj/item/clothing/accessory/holster/armpit, + /obj/item/device/flashlight/maglight, + /obj/item/weapon/reagent_containers/food/drinks/flask/detflask, + /obj/item/weapon/storage/briefcase/crimekit, + /obj/item/device/taperecorder, + /obj/item/weapon/storage/bag/detective, + /obj/item/device/tape/random = 3, + /obj/item/device/retail_scanner/security, //CHOMPStation addition + /obj/item/clothing/glasses/hud/security //CHOMPStation addition + ) + +/obj/structure/closet/secure_closet/injection + name = "lethal injections locker" + req_access = list(access_captain) + closet_appearance = /decl/closet_appearance/secure_closet/courtroom + + starts_with = list( + /obj/item/weapon/reagent_containers/syringe/ld50_syringe/choral = 2) + +GLOBAL_LIST_BOILERPLATE(all_brig_closets, /obj/structure/closet/secure_closet/brig) + +/obj/structure/closet/secure_closet/brig + name = "brig locker" + req_access = list(access_brig) + closet_appearance = /decl/closet_appearance/secure_closet/brig + anchored = TRUE + var/id = null + + starts_with = list( + /obj/item/clothing/under/color/prison, + /obj/item/clothing/shoes/orange) + +/obj/structure/closet/secure_closet/posters + name = "morale storage" + req_access = list(access_security) + anchored = TRUE + + starts_with = list( + /obj/item/poster/nanotrasen, + /obj/item/poster/nanotrasen, + /obj/item/poster/nanotrasen, + /obj/item/poster/nanotrasen, + /obj/item/poster/nanotrasen) + +/obj/structure/closet/secure_closet/courtroom + name = "courtroom locker" + req_access = list(access_lawyer) + closet_appearance = /decl/closet_appearance/secure_closet/courtroom + + starts_with = list( + /obj/item/clothing/shoes/brown, + /obj/item/weapon/paper/Court = 3, + /obj/item/weapon/pen, + /obj/item/clothing/suit/judgerobe, + /obj/item/clothing/head/powdered_wig, + /obj/item/weapon/storage/briefcase) + + +/obj/structure/closet/secure_closet/wall + name = "wall locker" + req_access = list(access_security) + closet_appearance = /decl/closet_appearance/wall + density = TRUE + + //too small to put a man in + large = 0 diff --git a/modular_chomp/code/modules/clothing/masks/hailer.dm b/modular_chomp/code/modules/clothing/masks/hailer.dm new file mode 100644 index 0000000000..3f7cc57fd3 --- /dev/null +++ b/modular_chomp/code/modules/clothing/masks/hailer.dm @@ -0,0 +1,169 @@ +/obj/item/clothing/mask/gas/sechailer + name = "hailer face mask" + desc = "A compact, durable gas mask that can be connected to an air supply. This one possesses a security hailer." + description_info = "This mask has a hailer attached, you can activate it on the button or use the Halt! verb, for switching phrases you can alt+click it or change it using the change phrase verb." + icon_state = "halfgas" + armor = list(melee = 10, bullet = 10, laser = 10, energy = 0, bomb = 0, bio = 55, rad = 0) + action_button_name = "HALT!" + body_parts_covered = FACE + var/obj/item/device/hailer/hailer + var/cooldown = 0 + var/phrase = 1 + var/aggressiveness = 1 + var/safety = 1 + var/list/phrase_list = list( + "halt" = "HALT! HALT! HALT! HALT!", + "bobby" = "Stop in the name of the Law.", + "compliance" = "Compliance is in your best interest.", + "justice" = "Prepare for justice!", + "running" = "Running will only increase your sentence.", + "dontmove" = "Don't move, Creep!", + "floor" = "Down on the floor, Creep!", + "robocop" = "Dead or alive you're coming with me.", + "god" = "God made today for the crooks we could not catch yesterday.", + "freeze" = "Freeze, Scum Bag!", + "imperial" = "Stop right there, criminal scum!", + "bash" = "Stop or I'll bash you.", + "harry" = "Go ahead, make my day.", + "asshole" = "Stop breaking the law, asshole.", + "stfu" = "You have the right to shut the fuck up", + "shutup" = "Shut up crime!", + "super" = "Face the wrath of the golden bolt.", + "dredd" = "I am, the LAW!" + ) + +/obj/item/clothing/mask/gas/sechailer/swat/hos + name = "\improper HOS SWAT mask" + desc = "A close-fitting tactical mask with an especially aggressive Compli-o-nator 3000. It has a tan stripe." + icon_state = "hosmask" + + +/obj/item/clothing/mask/gas/sechailer/swat/warden + name = "\improper Warden SWAT mask" + desc = "A close-fitting tactical mask with an especially aggressive Compli-o-nator 3000. It has a blue stripe." + icon_state = "wardenmask" + +/obj/item/clothing/mask/gas/sechailer/swat/officer //Just a little nicer to begin with. Can always up the anger with a screwdriver! + aggressiveness = 1 + phrase = 1 + +/obj/item/clothing/mask/gas/sechailer/swat + name = "\improper SWAT mask" + desc = "A close-fitting tactical mask with an especially aggressive Compli-o-nator 3000." + icon_state = "officermask" + body_parts_covered = HEAD|FACE|EYES + flags_inv = HIDEFACE|BLOCKHAIR + aggressiveness = 3 + phrase = 12 + + +/obj/item/clothing/mask/gas/sechailer/ui_action_click() + halt() + +/obj/item/clothing/mask/gas/sechailer/AltClick(mob/user) + selectphrase() + +/obj/item/clothing/mask/gas/sechailer/verb/selectphrase() + set name = "Select gas mask phrase" + set category = "Object" + set desc = "Alter the message shouted by your complionator gas mask." + + var/key = phrase_list[phrase] + var/message = phrase_list[key] + + if (!safety) + to_chat(usr, "You set the restrictor to: FUCK YOUR CUNT YOU SHIT EATING COCKSUCKER MAN EAT A DONG FUCKING ASS RAMMING SHIT FUCK EAT PENISES IN YOUR FUCK FACE AND SHIT OUT ABORTIONS OF FUCK AND DO SHIT IN YOUR ASS YOU COCK FUCK SHIT MONKEY FUCK ASS WANKER FROM THE DEPTHS OF SHIT.") + return + switch(aggressiveness) + if(1) + phrase = (phrase < 6) ? (phrase + 1) : 1 + key = phrase_list[phrase] + message = phrase_list[key] + to_chat(usr,"You set the restrictor to: [message]") + if(2) + phrase = (phrase < 11 && phrase >= 7) ? (phrase + 1) : 7 + key = phrase_list[phrase] + message = phrase_list[key] + to_chat(usr,"You set the restrictor to: [message]") + if(3) + phrase = (phrase < 18 && phrase >= 12 ) ? (phrase + 1) : 12 + key = phrase_list[phrase] + message = phrase_list[key] + to_chat(usr,"You set the restrictor to: [message]") + if(4) + phrase = (phrase < 18 && phrase >= 1 ) ? (phrase + 1) : 1 + key = phrase_list[phrase] + message = phrase_list[key] + to_chat(usr,"You set the restrictor to: [message]") + else + to_chat(usr, "It's broken.") + +/obj/item/clothing/mask/gas/sechailer/emag_act(mob/user) + if(safety) + safety = 0 + to_chat(user, "You silently fry [src]'s vocal circuit with the cryptographic sequencer.") + else + return + +/obj/item/clothing/mask/gas/sechailer/attackby(obj/item/I, mob/user) + if(I.is_screwdriver()) + switch(aggressiveness) + if(1) + to_chat(user, "You set the aggressiveness restrictor to the second position.") + aggressiveness = 2 + phrase = 7 + if(2) + to_chat(user, "You set the aggressiveness restrictor to the third position.") + aggressiveness = 3 + phrase = 13 + if(3) + to_chat(user, "You set the aggressiveness restrictor to the fourth position.") + aggressiveness = 4 + phrase = 1 + if(4) + to_chat(user, "You set the aggressiveness restrictor to the first position.") + aggressiveness = 1 + phrase = 1 + if(5) + to_chat(user, "You adjust the restrictor but nothing happens, probably because its broken.") + if(I.is_wirecutter()) + if(aggressiveness != 5) + to_chat(user, "You broke it!") + aggressiveness = 5 + if(I.is_crowbar()) + if(!hailer) + to_chat(user, "This mask has an integrated hailer, you can't remove it!") + else + var/obj/N = new /obj/item/clothing/mask/gas/half(src.loc) + playsound(src, 'sound/items/Screwdriver.ogg', 50, 1) + N.fingerprints = src.fingerprints + N.fingerprintshidden = src.fingerprintshidden + N.fingerprintslast = src.fingerprintslast + N.suit_fibers = src.suit_fibers + if(!isturf(N.loc)) + user.put_in_hands(hailer) + user.put_in_hands(N) + else + hailer.loc = N.loc + qdel(src) + return + ..() + +/obj/item/clothing/mask/gas/sechailer/verb/halt() + set name = "HALT!" + set category = "Objects" + set desc = "Activate your face mask hailer." + var/key = phrase_list[phrase] + var/message = phrase_list[key] + + if(cooldown < world.time - 35) // A cooldown, to stop people being jerks + if(!safety) + message = "FUCK YOUR CUNT YOU SHIT EATING COCKSUCKER MAN EAT A DONG FUCKING ASS RAMMING SHIT FUCK EAT PENISES IN YOUR FUCK FACE AND SHIT OUT ABORTIONS OF FUCK AND DO SHIT IN YOUR ASS YOU COCK FUCK SHIT MONKEY FUCK ASS WANKER FROM THE DEPTHS OF SHIT." + usr.visible_message("[usr]'s Compli-o-Nator: [message]") + playsound(src, 'sound/voice/binsult.ogg', 50, 0, 4) //Future sound channel = something like SFX + cooldown = world.time + return + + usr.visible_message("[usr]'s Compli-o-Nator: [message]") + playsound(src, "sound/voice/complionator/[key].ogg", 50, 0, 4) //future sound channel = something like SFX + cooldown = world.time \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/animal/spider.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/animal/spider.dm index 0d24d4e28a..2fa6c9dcac 100644 --- a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/animal/spider.dm +++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/animal/spider.dm @@ -1,45 +1,52 @@ //Unfiying spider health, into two catagories. Disrupters and tanks. /mob/living/simple_mob/animal/giant_spider/carrier //Disrupter, old 100 - maxHealth = 70 - health = 70 + maxHealth = 60 + health = 60 /mob/living/simple_mob/animal/giant_spider/electric //disrupter, old 210 - maxHealth = 70 - health = 70 + maxHealth = 60 + health = 60 projectiletype = /obj/item/projectile/energy/mob/electric_spider /mob/living/simple_mob/animal/giant_spider/frost //tank, old 175 - maxHealth = 130 - health = 130 + maxHealth = 120 + health = 120 + +/mob/living/simple_mob/animal/giant_spider //tank, old 200 + maxHealth = 120 + health = 120 /mob/living/simple_mob/animal/giant_spider/ion //disrupter, old 90 - maxHealth = 70 - health = 70 + maxHealth = 60 + health = 60 /mob/living/simple_mob/animal/giant_spider/hunter //disrupter, old 120 - maxHealth = 70 - health = 70 + maxHealth = 60 + health = 60 /mob/living/simple_mob/animal/giant_spider/lurker //disrupter, old 100 - maxHealth = 70 - health = 70 + maxHealth = 60 + health = 60 /mob/living/simple_mob/animal/giant_spider/pepper //tank, old 210 - maxHealth = 130 - health = 130 + maxHealth = 120 + health = 120 /mob/living/simple_mob/animal/giant_spider/phorogenic //tank, old 225 - maxHealth = 130 - health = 130 + maxHealth = 120 + health = 120 /mob/living/simple_mob/animal/giant_spider/thermic //tank, old 175 - maxHealth = 130 - health = 130 + maxHealth = 120 + health = 120 /mob/living/simple_mob/animal/giant_spider/tunneler_spider //disrupter, old 120 - maxHealth = 70 - health = 70 + maxHealth = 60 + health = 60 /mob/living/simple_mob/animal/giant_spider/webslinger //disrupter, old 90 - maxHealth = 70 - health = 70 \ No newline at end of file + maxHealth = 60 + health = 60 + +/obj/effect/spider/eggcluster + spider_type = /obj/effect/spider/spiderling/varied \ No newline at end of file diff --git a/modular_chomp/maps/overmap/space_pois/deepstorage_85x67.dmm b/modular_chomp/maps/overmap/space_pois/deepstorage_85x67.dmm index fd74743434..2cc8a36a78 100644 --- a/modular_chomp/maps/overmap/space_pois/deepstorage_85x67.dmm +++ b/modular_chomp/maps/overmap/space_pois/deepstorage_85x67.dmm @@ -35,7 +35,7 @@ "aO" = (/obj/structure/closet/radiation,/obj/machinery/light{dir = 8},/obj/item/stack/material/phoron{amount = 10},/obj/item/stack/material/phoron{amount = 10},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/deepstorage) "aP" = (/obj/machinery/light{dir = 4},/obj/structure/closet/crate/secure/large,/obj/item/weapon/reagent_containers/food/drinks/cans/starkist,/obj/item/weapon/reagent_containers/food/drinks/cans/space_mountain_wind,/obj/item/weapon/reagent_containers/food/drinks/cans/root_beer,/obj/item/weapon/reagent_containers/food/drinks/cans/gingerale,/obj/item/weapon/reagent_containers/food/drinks/cans/cola,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/deepstorage) "aQ" = (/obj/structure/closet/wardrobe/pink,/obj/item/ammo_magazine/ammo_box/b12g,/turf/simulated/floor/wood,/area/submap/deepstorage) -"aR" = (/mob/living/simple_mob/otie/security/phoron/red/chubby{faction = "sydicate"; health = 350; name = "rabid chubby red guard otie"},/obj/item/weapon/bedsheet/clown,/turf/simulated/floor/wood/broken,/area/submap/deepstorage) +"aR" = (/mob/living/simple_mob/vore/otie/security/phoron/red/chubby{faction = "sydicate"; health = 350; name = "rabid chubby red guard otie"},/obj/item/weapon/bedsheet/clown,/turf/simulated/floor/wood/broken,/area/submap/deepstorage) "aT" = (/obj/machinery/shower{dir = 4},/turf/simulated/floor/tiled/freezer,/area/submap/deepstorage) "aU" = (/obj/machinery/shower{dir = 8},/obj/effect/decal/cleanable/blood/tracks{color = "red"; desc = "Your instincts say you shouldn't be following these."; icon = 'icons/effects/blood.dmi'; icon_state = "tracks"},/turf/simulated/floor/tiled/freezer,/area/submap/deepstorage) "aV" = (/obj/machinery/light/small{dir = 8},/obj/structure/table/standard,/obj/item/ammo_magazine/ammo_box/b12g{pixel_y = -4},/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_y = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/deepstorage) diff --git a/modular_chomp/maps/submaps/shelters/ScienceShip-25x33.dmm b/modular_chomp/maps/submaps/shelters/ScienceShip-25x33.dmm index 6e1679ab22..6f1cbe51ad 100644 --- a/modular_chomp/maps/submaps/shelters/ScienceShip-25x33.dmm +++ b/modular_chomp/maps/submaps/shelters/ScienceShip-25x33.dmm @@ -79,7 +79,7 @@ "um" = (/obj/structure/closet/cabinet{pixel_y = 20},/obj/item/toy/plushie/kitten,/obj/item/toy/plushie/grey_cat,/obj/item/toy/plushie/orange_cat,/obj/item/toy/plushie/borgplushie/scrubpuppy,/obj/item/toy/plushie/black_fox,/obj/item/toy/plushie,/obj/item/toy/plushie/corgi,/obj/item/toy/plushie/crimson_fox,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = -32},/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/carpet/turcarpet,/area/survivalpod/superpose/ScienceShip) "uu" = (/obj/machinery/door/airlock/multi_tile/metal/mait,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/ScienceShip) "uX" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/structure/closet/walllocker/emerglocker{pixel_x = -25; pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) -"vl" = (/obj/structure/closet/cabinet{pixel_y = 20},/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/gold,/obj/item/weapon/ore/osmium,/obj/item/weapon/ore/silver,/obj/item/weapon/ore/uranium,/obj/item/weapon/ore/bluespace_crystal,/obj/item/clothing/head/sombrero,/obj/item/clothing/head/sombrero,/obj/item/clothing/suit/poncho,/obj/item/clothing/accessory/poncho/thermal/red,/obj/item/clothing/accessory/poncho/thermal/security,/obj/item/clothing/accessory/poncho/thermal/green,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/toy/bosunwhistle/fluff/strix,/obj/item/weapon/blobcore_chunk,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) +"vl" = (/obj/structure/closet/cabinet{pixel_y = 20},/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/gold,/obj/item/weapon/ore/osmium,/obj/item/weapon/ore/silver,/obj/item/weapon/ore/uranium,/obj/item/weapon/bluespace_crystal,/obj/item/clothing/head/sombrero,/obj/item/clothing/head/sombrero,/obj/item/clothing/suit/poncho,/obj/item/clothing/accessory/poncho/thermal/red,/obj/item/clothing/accessory/poncho/thermal/security,/obj/item/clothing/accessory/poncho/thermal/green,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/toy/bosunwhistle/fluff/strix,/obj/item/weapon/blobcore_chunk,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) "wp" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/ScienceShip) "xk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) "xw" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) diff --git a/vorestation.dme b/vorestation.dme index 90ea5ab8ab..8a67bdd53e 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -480,7 +480,6 @@ #include "code\datums\roundstats\departmentgoal.dm" #include "code\datums\roundstats\roundstats.dm" #include "code\datums\supplypacks\atmospherics.dm" -#include "code\datums\supplypacks\contraband.dm" #include "code\datums\supplypacks\contraband_vr.dm" #include "code\datums\supplypacks\costumes.dm" #include "code\datums\supplypacks\costumes_vr.dm" @@ -1319,6 +1318,7 @@ #include "code\game\objects\items\devices\radio\radio_yw.dm" #include "code\game\objects\items\devices\radio\radiopack.dm" #include "code\game\objects\items\devices\scanners\gas.dm" +#include "code\game\objects\items\devices\scanners\guide.dm" #include "code\game\objects\items\devices\scanners\halogen.dm" #include "code\game\objects\items\devices\scanners\health.dm" #include "code\game\objects\items\devices\scanners\mass_spectrometer.dm" @@ -1669,7 +1669,6 @@ #include "code\game\objects\structures\crates_lockers\closets\secure\personal.dm" #include "code\game\objects\structures\crates_lockers\closets\secure\scientist.dm" #include "code\game\objects\structures\crates_lockers\closets\secure\secure_closets.dm" -#include "code\game\objects\structures\crates_lockers\closets\secure\security.dm" #include "code\game\objects\structures\crates_lockers\closets\secure\security_vr.dm" #include "code\game\objects\structures\flora\flora.dm" #include "code\game\objects\structures\flora\flora_vr.dm" @@ -2138,7 +2137,6 @@ #include "code\modules\clothing\masks\breath_vr.dm" #include "code\modules\clothing\masks\gasmask.dm" #include "code\modules\clothing\masks\gasmask_vr.dm" -#include "code\modules\clothing\masks\hailer.dm" #include "code\modules\clothing\masks\miscellaneous.dm" #include "code\modules\clothing\masks\miscellaneous_vr.dm" #include "code\modules\clothing\masks\shiny_vr.dm" @@ -2894,6 +2892,7 @@ #include "code\modules\mob\say_ch.dm" #include "code\modules\mob\say_vr.dm" #include "code\modules\mob\skillset.dm" +#include "code\modules\mob\theme_lists.dm" #include "code\modules\mob\transform_procs.dm" #include "code\modules\mob\typing_indicator.dm" #include "code\modules\mob\update_icons.dm" @@ -4556,6 +4555,7 @@ #include "modular_chomp\code\datums\components\gargoyle.dm" #include "modular_chomp\code\datums\interfaces\appearance.dm" #include "modular_chomp\code\datums\outfits\jobs\noncrew.dm" +#include "modular_chomp\code\datums\supplypacks\contraband.dm" #include "modular_chomp\code\datums\supplypacks\medical.dm" #include "modular_chomp\code\datums\supplypacks\science.dm" #include "modular_chomp\code\datums\supplypacks\security.dm" @@ -4583,6 +4583,7 @@ #include "modular_chomp\code\game\objects\structures\loot_pile.dm" #include "modular_chomp\code\game\objects\structures\watercloset_ch.dm" #include "modular_chomp\code\game\objects\structures\crate_lockers\largecrate.dm" +#include "modular_chomp\code\game\objects\structures\crate_lockers\closets\secure\security.dm" #include "modular_chomp\code\game\turfs\turf.dm" #include "modular_chomp\code\game\turfs\simulated\outdoors\desert_planet.dm" #include "modular_chomp\code\matrices\color_matrix.dm" @@ -4599,6 +4600,7 @@ #include "modular_chomp\code\modules\client\preference_setup\loadout\loadout_xeno.dm" #include "modular_chomp\code\modules\clothing\clothing.dm" #include "modular_chomp\code\modules\clothing\clothing_icons.dm" +#include "modular_chomp\code\modules\clothing\masks\hailer.dm" #include "modular_chomp\code\modules\clothing\spacesuits\rig\.behemoth.dm" #include "modular_chomp\code\modules\clothing\spacesuits\rig\clockwork_ch.dm" #include "modular_chomp\code\modules\clothing\spacesuits\rig\precursor.dm"