diff --git a/code/defines/obj/clothing/costume.dm b/code/defines/obj/clothing/costume.dm index ee567d23516..a95110dc198 100644 --- a/code/defines/obj/clothing/costume.dm +++ b/code/defines/obj/clothing/costume.dm @@ -44,9 +44,12 @@ new /obj/item/clothing/head/that(src.loc) del(src) -/obj/landmark/costume/judge/New() - new /obj/item/clothing/suit/judgerobe(src.loc) - new /obj/item/clothing/head/powdered_wig(src.loc) +/obj/landmark/costume/scratch/New() + new /obj/item/clothing/gloves/white(src.loc) + new /obj/item/clothing/shoes/white(src.loc) + new /obj/item/clothing/under/scratch(src.loc) + if (prob(30)) + new /obj/item/clothing/head/helmet/cueball(src.loc) del(src) /obj/landmark/costume/highlander/New() @@ -70,16 +73,6 @@ new /obj/item/clothing/head/plaguedoctorhat(src.loc) del(src) -/obj/landmark/costume/fakewizard/New() - new /obj/item/clothing/suit/wizrobe/fake(src.loc) - new /obj/item/clothing/head/wizard/fake(src.loc) - del(src) - -/obj/landmark/costume/marisawizard/New() - new /obj/item/clothing/head/wizard/marisa(src.loc) - new/obj/item/clothing/suit/wizrobe/marisa(src.loc) - del(src) - /obj/landmark/costume/nightowl/New() new /obj/item/clothing/under/owl(src.loc) new /obj/item/clothing/mask/owl_mask(src.loc) @@ -129,6 +122,16 @@ new /obj/item/clothing/mask/spiderman(src.loc) del(src) +/obj/landmark/costume/marisawizard/New() + new /obj/item/clothing/head/wizard/marisa(src.loc) + new/obj/item/clothing/suit/wizrobe/marisa(src.loc) + del(src) + +/obj/landmark/costume/fakewizard/New() + new /obj/item/clothing/suit/wizrobe/fake(src.loc) + new /obj/item/clothing/head/wizard/fake(src.loc) + del(src) + /obj/landmark/costume/hats1/New() new /obj/item/clothing/head/collectable/petehat(src.loc) new /obj/item/clothing/head/collectable/metroid(src.loc) diff --git a/code/defines/obj/clothing/head.dm b/code/defines/obj/clothing/head.dm index 478fcb0835f..206b44ec42b 100644 --- a/code/defines/obj/clothing/head.dm +++ b/code/defines/obj/clothing/head.dm @@ -161,7 +161,6 @@ icon_state = "cueball" flags = FPRINT|TABLEPASS|SUITSPACE|HEADCOVERSEYES|HEADCOVERSMOUTH item_state="cueball" - armor = list(melee = 75, bullet = 0, laser = 0, taser = 0, bomb = 0, bio = 0, rad = 0) /obj/item/clothing/head/secsoft name = "Soft Cap" diff --git a/code/defines/obj/clothing/jumpsuit.dm b/code/defines/obj/clothing/jumpsuit.dm index 4e2e6b72ecf..1ed4d094342 100644 --- a/code/defines/obj/clothing/jumpsuit.dm +++ b/code/defines/obj/clothing/jumpsuit.dm @@ -497,19 +497,11 @@ desc = "A classy suit and tie" /obj/item/clothing/under/spiderman - name = "Spiderman Suit" - desc = "A reinforced suit of Spiderman!" + name = "Deadpool Suit" + desc = "A suit of Deadpool!" icon_state = "spiderman" item_state = "spiderman" color = "spiderman" - gas_transfer_coefficient = 0.01 - permeability_coefficient = 0.02 - heat_transfer_coefficient = 0.02 - radiation_protection = 0.25 - protective_temperature = 1000 - flags = FPRINT | TABLEPASS | SUITSPACE - body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|FEET|ARMS|HANDS - armor = list(melee = 40, bullet = 5, laser = 5, taser = 40, bomb = 5, bio = 0, rad = 0) /obj/item/clothing/under/rank/nursesuit desc = "Now THIS is hot." diff --git a/code/defines/obj/clothing/mask.dm b/code/defines/obj/clothing/mask.dm index 1cfa4c8de92..ddb5c69ed86 100644 --- a/code/defines/obj/clothing/mask.dm +++ b/code/defines/obj/clothing/mask.dm @@ -31,8 +31,8 @@ permeability_coefficient = 0.10 /obj/item/clothing/mask/spiderman - desc = "A reinforced mask of Spiderman!" - name = "Spiderman mask" + desc = "A mask of Deadpool!" + name = "Deadpool mask" icon_state = "spiderman" item_state = "spiderman" flags = FPRINT|TABLEPASS|SUITSPACE|HEADSPACE|MASKCOVERSMOUTH @@ -40,7 +40,6 @@ protective_temperature = 420 gas_transfer_coefficient = 0.01 permeability_coefficient = 0.01 - armor = list(melee = 40, bullet = 2, laser = 2, taser = 40, bomb = 0, bio = 50, rad = 0) /obj/item/clothing/mask/muzzle name = "muzzle" diff --git a/code/game/jobs/jobprocs.dm b/code/game/jobs/jobprocs.dm index 2e9163d2444..8c3ad09092e 100644 --- a/code/game/jobs/jobprocs.dm +++ b/code/game/jobs/jobprocs.dm @@ -154,13 +154,15 @@ if("christianity") B.name = pick("The Holy Bible","The Dead Sea Scrolls") if("satanism") - B.name = pick("The Unholy Bible","The Necronomicon") + B.name = "The Unholy Bible" + if("cthulu") + B.name = "The Necronomicon" if("islam") B.name = "Quran" if("scientology") B.name = pick("The Biography of L. Ron Hubbard","Dianetics") if("chaos") - B.name = "Space Station 13: The Musical" + B.name = "The Book of Lorgar" if("imperium") B.name = "Uplifting Primer" if("toolboxia") @@ -195,7 +197,7 @@ while(!accepted) if(!B) break // prevents possible runtime errors - switch(input(src,"Which bible style would you like?") in list("Bible", "Koran", "Scrapbook", "Daederic Scroll", "Creeper", "White Bible", "Holy Light", "Athiest", "Tome", "The King in Yellow", "Ithaqua", "Scientology", "the bible melts")) + switch(input(src,"Which bible style would you like?") in list("Bible", "Koran", "Scrapbook", "Daederic Scroll", "Creeper", "White Bible", "Holy Light", "Athiest", "Tome", "The King in Yellow", "Ithaqua", "Scientology", "the bible melts", "Necronomicon")) if("Koran") B.icon_state = "koran" B.item_state = "koran" @@ -232,6 +234,9 @@ if("the bible melts") B.icon_state = "melted" B.icon_state = "melted" + if("Necronomicon") + B.icon_state = "necronomicon" + B.icon_state = "necronomicon" else // if christian bible, revert to default B.icon_state = "bible" @@ -321,7 +326,7 @@ if ("Shaft Miner") src.equip_if_possible(new /obj/item/weapon/storage/backpack/industrial (src), slot_back) - src.equip_if_possible(new /obj/item/weapon/storage/box(src.back), slot_in_backpack) + src.equip_if_possible(new /obj/item/weapon/storage/box/engineer(src.back), slot_in_backpack) src.equip_if_possible(new /obj/item/device/radio/headset/headset_mine (src), slot_ears) src.equip_if_possible(new /obj/item/clothing/under/rank/miner(src), slot_w_uniform) src.equip_if_possible(new /obj/item/clothing/shoes/black(src), slot_shoes) diff --git a/code/game/objects/closets/wardrobe.dm b/code/game/objects/closets/wardrobe.dm index 9e54777e29a..a58df8725ac 100644 --- a/code/game/objects/closets/wardrobe.dm +++ b/code/game/objects/closets/wardrobe.dm @@ -69,9 +69,6 @@ new /obj/item/clothing/suit/chaplain_hoodie( src ) new /obj/item/clothing/head/chaplain_hood( src ) new /obj/item/clothing/suit/holidaypriest( src ) - new /obj/item/clothing/under/scratch( src ) - new /obj/item/clothing/shoes/white( src ) - new /obj/item/clothing/gloves/white( src ) new /obj/item/weapon/candlepack( src ) new /obj/item/weapon/candlepack( src ) return diff --git a/icons/mob/items_lefthand.dmi b/icons/mob/items_lefthand.dmi index d5257b32f36..6097ceaadec 100644 Binary files a/icons/mob/items_lefthand.dmi and b/icons/mob/items_lefthand.dmi differ diff --git a/icons/mob/items_righthand.dmi b/icons/mob/items_righthand.dmi index a82a8546843..126bb8d97ff 100644 Binary files a/icons/mob/items_righthand.dmi and b/icons/mob/items_righthand.dmi differ diff --git a/icons/obj/storage.dmi b/icons/obj/storage.dmi index a59c3053dfe..90f1454c942 100644 Binary files a/icons/obj/storage.dmi and b/icons/obj/storage.dmi differ diff --git a/maps/tgstation.2.0.8.dmm b/maps/tgstation.2.0.8.dmm index 6c3f65b00d4..2e53b251002 100644 --- a/maps/tgstation.2.0.8.dmm +++ b/maps/tgstation.2.0.8.dmm @@ -61,9 +61,9 @@ "abi" = (/obj/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "Prison Solars APC"; pixel_x = 3; pixel_y = -23},/obj/machinery/atmospherics/pipe/simple{dir = 4; level = 2},/turf/simulated/floor/plating,/area/prison/solar_control) "abj" = (/obj/machinery/atmospherics/pipe/simple{dir = 9; icon_state = "intact-f"},/turf/simulated/floor/plating,/area/prison/solar_control) "abk" = (/obj/table/woodentable,/obj/machinery/librarycomp{pixel_y = 8},/turf/simulated/floor{dir = 9; icon_state = "carpetside"},/area/prison/rec_room) -"abl" = (/obj/table/woodentable,/obj/machinery/camera{c_tag = "Rec Room North"; dir = 2; network = "Prison Station"},/turf/simulated/floor{dir = 1; icon_state = "carpetside"},/area/prison/rec_room) +"abl" = (/obj/table/woodentable,/obj/machinery/camera{c_tag = "Rec Room North"; dir = 2; network = "Prison Station"},/obj/item/toy/crayonbox,/turf/simulated/floor{dir = 1; icon_state = "carpetside"},/area/prison/rec_room) "abm" = (/obj/bookcase{name = "bookcase (Fiction)"},/turf/simulated/floor{dir = 1; icon_state = "carpetside"},/area/prison/rec_room) -"abn" = (/turf/simulated/floor{dir = 5; icon_state = "carpetside"},/area/prison/rec_room) +"abn" = (/obj/machinery/computer/arcade,/turf/simulated/floor{dir = 5; icon_state = "carpetside"},/area/prison/rec_room) "abo" = (/obj/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/manifold{dir = 8},/obj/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/turf/simulated/floor/plating,/area/prison/solar_control) "abp" = (/obj/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/prison/solar_control) "abq" = (/obj/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = "Streight"},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/prison/solar_control) @@ -1607,7 +1607,7 @@ "aEU" = (/obj/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/chapel/office) "aEV" = (/obj/machinery/disposal,/obj/disposalpipe/trunk{dir = 8},/turf/simulated/floor{icon_state = "grimy"},/area/chapel/office) "aEW" = (/obj/stool/chair,/obj/landmark/start{name = "Chaplain"},/turf/simulated/floor{icon_state = "grimy"},/area/chapel/office) -"aEX" = (/obj/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/turf/simulated/floor{icon_state = "grimy"},/area/chapel/office) +"aEX" = (/obj/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/obj/item/toy/crayonbox,/turf/simulated/floor{icon_state = "grimy"},/area/chapel/office) "aEY" = (/turf/simulated/floor{icon_state = "grimy"},/area/chapel/office) "aEZ" = (/obj/closet/coffin,/obj/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple{color = "red"; icon_state = "intact-r-f"; level = 1; name = "pipe"},/turf/simulated/floor{icon_state = "dark"},/area/chapel/office) "aFa" = (/obj/machinery/driver_button{id = "chapelgun"; name = "Chapel Mass Driver"; pixel_x = 25},/obj/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = "Streight"},/turf/simulated/floor{icon_state = "dark"},/area/chapel/main) @@ -3395,7 +3395,7 @@ "bno" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/atmospherics/pipe/simple,/obj/machinery/door/window/westleft{base_state = "left"; dir = 4; icon_state = "left"; name = "Kitchen Delivery"; req_access_txt = "28"},/turf/simulated/floor{icon_state = "delivery"},/area/crew_quarters/kitchen) "bnp" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 8; icon_state = "off"; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = "Streight"},/turf/simulated/floor{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) "bnq" = (/obj/machinery/disposal,/obj/disposalpipe/trunk,/turf/simulated/floor{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) -"bnr" = (/obj/table,/turf/simulated/floor{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) +"bnr" = (/obj/table,/obj/item/weapon/reagent_containers/food/condiment/saltshaker,/obj/item/weapon/reagent_containers/food/condiment/peppermill,/turf/simulated/floor{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) "bns" = (/obj/table,/obj/machinery/blender{pixel_y = 0},/turf/simulated/floor{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) "bnt" = (/obj/secure_closet/fridge,/obj/machinery/light,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) "bnu" = (/obj/item/weapon/reagent_containers/food/snacks/pie,/obj/machinery/door/firedoor/border_only,/obj/table/reinforced,/turf/simulated/floor{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) @@ -5674,7 +5674,7 @@ "cff" = (/obj/landmark/start,/turf/space,/area) "cfg" = (/turf/unsimulated/wall{icon = 'icons/misc/fullscreen.dmi'; icon_state = "title"; name = "Space Station 13"},/area) "cfh" = (/turf/space,/turf/simulated/shuttle/wall{dir = 8; icon_state = "diagonalWall3"},/area/syndicate_mothership) -"cfi" = (/turf/unsimulated/wall{desc = "Why it no open!"; icon = 'rapid_pdoor.dmi'; icon_state = "pdoor1"; name = "Shuttle Bay Blast Door"},/area/syndicate_mothership) +"cfi" = (/turf/unsimulated/wall{desc = "Why it no open!"; icon = 'icons/obj/doors/rapid_pdoor.dmi'; icon_state = "pdoor1"; name = "Shuttle Bay Blast Door"},/area/syndicate_mothership) "cfj" = (/turf/simulated/shuttle/wall{icon_state = "wall3"},/area/syndicate_mothership) "cfk" = (/turf/space,/turf/simulated/shuttle/wall{dir = 8; icon_state = "diagonalWall3"},/area/shuttle/syndicate_elite/mothership) "cfl" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_r (NORTH)"; icon_state = "propulsion_r"; dir = 1},/turf/space,/area/shuttle/syndicate_elite/mothership) @@ -5729,8 +5729,8 @@ "cgi" = (/obj/table,/turf/unsimulated/floor{icon = 'shuttle.dmi'; icon_state = "floor4"},/area/syndicate_station/start) "cgj" = (/turf/unsimulated/wall,/area/centcom) "cgk" = (/obj/landmark{name = "Nuclear-Closet"},/turf/unsimulated/floor{icon = 'shuttle.dmi'; icon_state = "floor4"},/area/syndicate_station/start) -"cgl" = (/turf/unsimulated/wall{desc = "Why it no open!"; icon = 'rapid_pdoor.dmi'; icon_state = "pdoor1"; name = "External Airlock"},/area) -"cgm" = (/turf/unsimulated/wall{desc = "Why it no open!"; icon = 'rapid_pdoor.dmi'; icon_state = "pdoor1"; name = "Shuttle Bay Blast Door"},/area/centcom) +"cgl" = (/turf/unsimulated/wall{desc = "Why it no open!"; icon = 'icons/obj/doors/rapid_pdoor.dmi'; icon_state = "pdoor1"; name = "External Airlock"},/area) +"cgm" = (/turf/unsimulated/wall{desc = "Why it no open!"; icon = 'icons/obj/doors/rapid_pdoor.dmi'; icon_state = "pdoor1"; name = "Shuttle Bay Blast Door"},/area/centcom) "cgn" = (/turf/unsimulated/floor{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/centcom) "cgo" = (/turf/unsimulated/floor{name = "plating"},/area/centcom) "cgp" = (/obj/stool/chair{dir = 4},/turf/unsimulated/floor{icon = 'shuttle.dmi'; icon_state = "floor4"},/area/syndicate_station/start) @@ -5790,7 +5790,7 @@ "chr" = (/turf/unsimulated/floor{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/centcom/suppy) "chs" = (/turf/unsimulated/floor{name = "plating"},/area/centcom/suppy) "cht" = (/turf/unsimulated/floor{tag = "icon-warnplate (EAST)"; icon_state = "warnplate"; dir = 4},/area/centcom/suppy) -"chu" = (/turf/unsimulated/wall{desc = "Why it no open!"; icon = 'rapid_pdoor.dmi'; icon_state = "pdoor1"; name = "Shuttle Bay Blast Door"},/area/centcom/suppy) +"chu" = (/turf/unsimulated/wall{desc = "Why it no open!"; icon = 'icons/obj/doors/rapid_pdoor.dmi'; icon_state = "pdoor1"; name = "Shuttle Bay Blast Door"},/area/centcom/suppy) "chv" = (/obj/machinery/sleeper{icon_state = "sleeper_0-r"; orient = "RIGHT"},/turf/unsimulated/floor{icon = 'shuttle.dmi'; icon_state = "floor3"},/area/syndicate_station/start) "chw" = (/obj/landmark{name = "Syndicate-Spawn"},/turf/unsimulated/floor{icon = 'shuttle.dmi'; icon_state = "floor3"},/area/syndicate_station/start) "chx" = (/turf/unsimulated/floor{icon = 'shuttle.dmi'; icon_state = "floor3"},/area/syndicate_station/start) @@ -5808,7 +5808,7 @@ "chJ" = (/obj/table,/obj/machinery/juicer{pixel_y = 6},/turf/unsimulated/floor{tag = "icon-redyellowfull"; icon_state = "redyellowfull"},/area/centcom/living) "chK" = (/obj/machinery/door/airlock/external,/turf/unsimulated/floor{name = "plating"},/area/centcom/living) "chL" = (/turf/unsimulated/floor{name = "plating"},/area/centcom/living) -"chM" = (/turf/unsimulated/wall{desc = "Why it no open!"; icon = 'rapid_pdoor.dmi'; icon_state = "pdoor1"; name = "Shuttle Bay Blast Door"},/area/centcom/living) +"chM" = (/turf/unsimulated/wall{desc = "Why it no open!"; icon = 'icons/obj/doors/rapid_pdoor.dmi'; icon_state = "pdoor1"; name = "Shuttle Bay Blast Door"},/area/centcom/living) "chN" = (/turf/simulated/shuttle/wall{tag = "icon-swall_s6"; icon_state = "swall_s6"; dir = 2},/area/supply/dock) "chO" = (/turf/simulated/shuttle/wall{tag = "icon-swall12"; icon_state = "swall12"; dir = 2},/area/supply/dock) "chP" = (/turf/simulated/shuttle/wall{tag = "icon-swall_s10"; icon_state = "swall_s10"; dir = 2},/area/supply/dock) @@ -6129,8 +6129,8 @@ "cnS" = (/obj/stool/chair{dir = 1},/turf/unsimulated/floor{icon_state = "delivery"},/area/centcom/control) "cnT" = (/turf/unsimulated/floor{name = "plating"},/area/centcom/evac) "cnU" = (/turf/unsimulated/floor{tag = "icon-warnplate (EAST)"; icon_state = "warnplate"; dir = 4},/area/centcom/evac) -"cnV" = (/turf/unsimulated/wall{desc = "Why it no open!"; icon = 'rapid_pdoor.dmi'; icon_state = "pdoor1"; name = "Shuttle Bay Blast Door"},/area/centcom/evac) -"cnW" = (/turf/unsimulated/wall{desc = "Why it no open!"; icon = 'rapid_pdoor.dmi'; icon_state = "pdoor1"; name = "Shuttle Bay Blast Door"},/area/centcom/ferry) +"cnV" = (/turf/unsimulated/wall{desc = "Why it no open!"; icon = 'icons/obj/doors/rapid_pdoor.dmi'; icon_state = "pdoor1"; name = "Shuttle Bay Blast Door"},/area/centcom/evac) +"cnW" = (/turf/unsimulated/wall{desc = "Why it no open!"; icon = 'icons/obj/doors/rapid_pdoor.dmi'; icon_state = "pdoor1"; name = "Shuttle Bay Blast Door"},/area/centcom/ferry) "cnX" = (/turf/unsimulated/floor{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/centcom/ferry) "cnY" = (/turf/unsimulated/floor{name = "plating"},/area/centcom/ferry) "cnZ" = (/obj/grille,/obj/window/reinforced{dir = 8},/obj/window/reinforced,/obj/window/reinforced{dir = 1},/obj/window/reinforced{dir = 4},/turf/unsimulated/floor{name = "plating"},/area/centcom/ferry) @@ -6142,7 +6142,7 @@ "cof" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{dir = 1},/turf/unsimulated/floor{name = "plating"},/area/shuttle/escape/centcom) "cog" = (/obj/grille,/obj/window/reinforced,/obj/window/reinforced{dir = 4},/obj/window/reinforced{dir = 1},/turf/unsimulated/floor{name = "plating"},/area/shuttle/escape/centcom) "coh" = (/turf/simulated/shuttle/wall{tag = "icon-swall_s10"; icon_state = "swall_s10"; dir = 2},/area/shuttle/escape/centcom) -"coi" = (/turf/unsimulated/wall{desc = "Why it no open!"; icon = 'rapid_pdoor.dmi'; icon_state = "pdoor1"; name = "Shuttle Bay Blast Door"},/turf/simulated/shuttle/wall{dir = 1; icon_state = "diagonalWall3"},/area/centcom/ferry) +"coi" = (/turf/unsimulated/wall{desc = "Why it no open!"; icon = 'icons/obj/doors/rapid_pdoor.dmi'; icon_state = "pdoor1"; name = "Shuttle Bay Blast Door"},/turf/simulated/shuttle/wall{dir = 1; icon_state = "diagonalWall3"},/area/centcom/ferry) "coj" = (/turf/simulated/shuttle/wall{tag = "icon-swall_s6"; icon_state = "swall_s6"; dir = 2},/area/shuttle/transport1/centcom) "cok" = (/turf/simulated/shuttle/wall{tag = "icon-swall12"; icon_state = "swall12"; dir = 2},/area/shuttle/transport1/centcom) "col" = (/turf/simulated/shuttle/wall{tag = "icon-swall_s10"; icon_state = "swall_s10"; dir = 2},/area/shuttle/transport1/centcom)