quantum pads

This commit is contained in:
Metis
2024-09-18 20:14:31 -04:00
parent 0e69dd8105
commit a638b7fda0
41 changed files with 2138 additions and 61 deletions
+7
View File
@@ -0,0 +1,7 @@
/obj/item/storage/backpack/cheeseburgerbackpack
name = "cheeseburger backpack"
desc = "A backpack designed to look like a cheeseburger. You feel like you can save the world with it."
mob_overlay_icon = 'GainStation13/icons/mob/back.dmi'
icon_state = "cheeseburgerbackpack"
icon = 'GainStation13/icons/obj/storage.dmi'
item_state = "cheeseburgerbackpack"
+8 -3
View File
@@ -5,7 +5,6 @@
desc = "Exclusive version of a hardsuit helmet, usually reserved for GATO CC personnel."
icon = 'GainStation13/icons/mob/head.dmi'
icon_state = "hardsuit0-gato"
item_state = "hardsuit0-gato"
mutantrace_variation = NONE
/obj/item/clothing/head/HoS/beret/gato
@@ -13,7 +12,6 @@
desc = "A robust beret for the CC personnel, for looking stylish while not sacrificing protection."
icon = 'GainStation13/icons/mob/head.dmi'
icon_state = "gato_beret"
item_state = "gato_beret"
mutantrace_variation = NONE
/obj/item/clothing/head/HoS/gato
@@ -21,5 +19,12 @@
desc = "The robust standard-issue cap of the CC personnel."
icon = 'GainStation13/icons/mob/head.dmi'
icon_state = "gato_cap"
item_state = "gato_cap"
mutantrace_variation = NONE
/obj/item/clothing/head/beret/sec/bitch
name = "security's bitch beret"
desc = "A softer beret with the word 'BITCH' embroidered on it in pink thread."
mob_overlay_icon = 'GainStation13/icons/mob/head.dmi'
icon_state = "bitchberet"
mutantrace_variation = NONE
+8
View File
@@ -0,0 +1,8 @@
/obj/item/clothing/shoes/jackboots/tall
name = "tall jackboots"
desc = "A pair of knee-high jackboots, complete with heels. All style, all the time."
icon = 'GainStation13/icons/obj/clothing/shoes.dmi'
mob_overlay_icon = 'GainStation13/icons/mob/feet.dmi'
anthro_mob_worn_overlay = 'GainStation13/icons/mob/feet_digi.dmi'
icon_state = "jackboots-tall"
item_state = "jackboots-tall"
+17
View File
@@ -64,3 +64,20 @@
item_state = "gato_hardsuit"
helmettype = /obj/item/clothing/head/helmet/space/hardsuit/ert/alert/gato
mutantrace_variation = NONE
/obj/item/clothing/suit/armor/vest/stripper
name = "stripper armor"
desc = "Talk about lightweight."
icon = 'GainStation13/icons/obj/clothing/suits.dmi'
mob_overlay_icon = 'GainStation13/icons/mob/suit.dmi'
icon_state = "armorstripper"
item_state = "armorstripper"
armor = list("melee" = 15, "bullet" = 10, "laser" = 10, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0)
dog_fashion = null
/obj/item/clothing/suit/armor/vest/stripper/bikini
name = "bikini armor"
desc = "How is this even supposed to work? It barely covers anything!"
icon = 'GainStation13/icons/obj/clothing/suits.dmi'
mob_overlay_icon = 'GainStation13/icons/mob/suit.dmi'
icon_state = "armorstripperalt"
item_state = "armorstripperalt"
+23
View File
@@ -0,0 +1,23 @@
/obj/item/clothing/under/rank/security/skirt/slut
name = "slutty security jumpskirt"
desc = "A \"\"\"tactical\"\"\" security jumpsuit with the legs replaced by a skirt. No matter how you adjust it, it always feels a little too small."
icon = 'GainStation13/icons/obj/clothing/uniforms.dmi'
mob_overlay_icon = 'GainStation13/icons/mob/uniform.dmi'
icon_state = "secslutskirt"
item_state = "secslutskirt"
/obj/item/clothing/under/rank/security/stripper
name = "security stripper outfit"
desc = "This can't be dress code compliant, can it?"
icon = 'GainStation13/icons/obj/clothing/uniforms.dmi'
mob_overlay_icon = 'GainStation13/icons/mob/uniform.dmi'
icon_state = "secstripper"
item_state = "secstripper"
/obj/item/clothing/under/rank/security/pink
name = "pink security jumpsuit"
desc = "A tactical security jumpsuit for officers that screw up their laundry."
icon = 'GainStation13/icons/obj/clothing/uniforms.dmi'
mob_overlay_icon = 'GainStation13/icons/mob/uniform.dmi'
icon_state = "rsecuritypink"
item_state = "r_suit"
@@ -0,0 +1,28 @@
// Weight gain - GS13
/datum/disease/advance/weight_gain
copy_type = /datum/disease/advance
/datum/disease/advance/weight_gain/New(make_typecache = TRUE)
name = "Weight Gain"
symptoms = list(new/datum/symptom/weight_gain)
..()
/obj/item/reagent_containers/glass/bottle/weight_gain
name = "Weight gain virus bottle"
desc = "A small bottle. Contains weight gain virus in synthblood medium."
spawned_disease = /datum/disease/advance/weight_gain
// Berry virus - GS13
/datum/disease/advance/berry_virus
copy_type = /datum/disease/advance
/datum/disease/advance/berry_virus/New(make_typecache = TRUE)
name = "Blueberry Virus"
symptoms = list(new/datum/symptom/berry)
..()
/obj/item/reagent_containers/glass/bottle/berry
name = "Blueberry virus bottle"
desc = "A small bottle. Contains blueberry virus in synthblood medium."
spawned_disease = /datum/disease/advance/berry_virus
@@ -0,0 +1,36 @@
/datum/symptom/weight_gain // GS13
name = "Weight Gain"
desc = "The virus mutates and merges itself with the host's adipocytes, allowing them to perform a form of mitosis and replicate on their own."
stealth = -3
resistance = -2
stage_speed = 3
transmittable = -2
level = 8 //better hope someone went mining kiddo
severity = 5
base_message_chance = 100
symptom_delay_min = 15
symptom_delay_max = 45
threshold_desc = list(
"Stage Speed 7" = "Increases the rate of cell replication.",
"Stage Speed 12" = "Increases the rate of cell replication further"
)
/datum/symptom/weight_gain/Activate(datum/disease/advance/A) // GS13
if(!..())
return
var/mob/living/carbon/M = A.affected_mob
if(!(M?.client?.prefs?.weight_gain_viruses))
return FALSE
switch(A.stage)
if(1, 2, 3, 4)
if(prob(base_message_chance))
to_chat(M, "<span class='warning'>[pick("You feel oddly full...", "You feel more plush...", "You feel more huggable...", "You hear an odd gurgle from your stomach")]</span>")
else
to_chat(M, "<span class='warning'><i>[pick("You feel your body churn...", "You feel heavier...", "You hear an ominous gurgle from your belly...", "You feel bulkier...")]</i></span>")
if(A.properties["stage_rate"] >= 12) //get chunkier quicker
M.adjust_fatness(70, FATTENING_TYPE_VIRUS)
else if(A.properties["stage_rate"] >= 7)
M.adjust_fatness(40, FATTENING_TYPE_VIRUS)
else
M.adjust_fatness(15, FATTENING_TYPE_VIRUS)
@@ -0,0 +1,33 @@
/datum/map_template/ruin/lavaland/snack_store //GS13
name = "Snack Store"
id = "snackstore"
description = "All your dreams about spending a night in a snack store finally came true! Though judging by your situation, you might spend a bit longer than just one night here..."
suffix = "lavaland_surface_snack_store.dmm"
allow_duplicates = FALSE
cost = 0
/datum/map_template/ruin/lavaland/calorite_altar //GS13
name = "Calorite Altar"
id = "caloritealtar"
description = "A mysterious fountain stands dormant amidst a small calorite shrine... What could it possibly offer?"
suffix = "lavaland_surface_caloritealtar.dmm"
allow_duplicates = TRUE
cost = 0
/datum/map_template/ruin/lavaland/calorite_shrine //GS13
name = "Calorite Shrine"
id = "caloriteshrine"
description = "Somewhere on this planet, a gluttony deity is worshipped for food and life."
suffix = "lavaland_surface_caloriteshrine.dmm"
allow_duplicates = TRUE
cost = 0
/datum/map_template/ruin/lavaland/blueberry_shrine //GS13
name = "Blueberry Shrine"
id = "blueberryshrine"
description = "A strange temple, littered with oddly round sculptures and peculiar blue stains."
suffix = "lavaland_surface_blueberryarea.dmm"
allow_duplicates = TRUE
cost = 0
@@ -0,0 +1,8 @@
/obj/structure/statue/blueberry
max_integrity = 500
/obj/structure/statue/blueberry
name = "blueberry statue"
icon = 'GainStation13/icons/obj/statue.dmi'
desc = "A statue resembling a humanoid bloated into a round spherical shape."
icon_state = "blueberry"
+29
View File
@@ -29,3 +29,32 @@
clawfootstep = FOOTSTEP_WOOD_CLAW
heavyfootstep = FOOTSTEP_GENERIC_HEAVY
tiled_dirt = FALSE
/turf/open/floor/concrete/
name = "concrete"
icon = 'GainStation13/icons/turf/floors.dmi'
icon_state = "concrete"
baseturfs = /turf/open/floor/plating/asteroid
/turf/open/floor/concrete/smooth
icon = 'GainStation13/icons/turf/floors.dmi'
icon_state = "concrete2"
/turf/open/floor/cobble/side
icon = 'GainStation13/icons/turf/floors.dmi'
icon_state = "cobble_side"
/turf/open/floor/cobble/corner
icon = 'GainStation13/icons/turf/floors.dmi'
icon_state = "cobble_corner"
/turf/open/floor/cobble
name = "cobblestone path"
desc = "A simple but beautiful path made of various sized stones."
icon = 'GainStation13/icons/turf/floors.dmi'
icon_state = "cobble"
baseturfs = /turf/open/floor/plating/asteroid
footstep = FOOTSTEP_FLOOR
barefootstep = FOOTSTEP_HARD_BAREFOOT
clawfootstep = FOOTSTEP_HARD_CLAW
heavyfootstep = FOOTSTEP_GENERIC_HEAVY
@@ -150,3 +150,6 @@
name = "CARTS"
desc = "You are entering a motorized cart area."
icon_state = "carts"
/area/ruin/powered/gluttony
icon_state = "dk_yellow"
+3
View File
@@ -55,3 +55,6 @@
desc = "Some nice metal shelves."
icon = 'hyperstation/icons/obj/objects.dmi'
icon_state = "shelf"
/obj/structure/chair/comfy/blue
color = rgb(50, 64, 255)
Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 863 B

After

Width:  |  Height:  |  Size: 225 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 438 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 386 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 149 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

@@ -243,3 +243,15 @@
/obj/structure/flora/redgrass/redg/Initialize()
icon_state = "tallgrass[rand(1, 4)]bb"
. = ..()
/obj/structure/flora/tree/desertdead
icon = 'GainStation13/icons/obj/flora/desertdead.dmi'
desc = "A dead tree in the middle of the desert."
icon_state = "desertdead_1"
var/list/icon_states = list ("desertdead_1", "desertdead_2", "desertdead_3")
/obj/structure/flora/tree/desertdead/Initialize()
. = ..()
if(islist(icon_states && icon_states.len))
icon_state = pick(icon_states)
@@ -0,0 +1,99 @@
"aa" = (/obj/structure/stone_tile/block/cracked,/obj/structure/stone_tile{dir = 1},/obj/effect/light_emitter{set_cap = 3; set_luminosity = 6},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"ak" = (/obj/structure/stone_tile/block{dir = 8; icon_state = "pristine_block1"},/turf/open/floor/plating/asteroid/basalt,/area/ruin/unpowered)
"ap" = (/turf/open/floor/plasteel/stairs{dir = 4},/area/ruin/powered)
"aW" = (/obj/effect/light_emitter{set_cap = 3; set_luminosity = 6},/turf/open/floor/carpet/blue,/area/ruin/powered)
"cI" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/decal/cleanable/blood/splatter{color = "#151C62"},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"cQ" = (/obj/structure/stone_tile{dir = 1},/obj/effect/light_emitter{set_cap = 3; set_luminosity = 6},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"cR" = (/obj/effect/decal/cleanable/blood{color = "#151C62"},/obj/item/trash/blueberry_gum{pixel_y = -8; pixel_x = -20},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"dI" = (/obj/effect/decal/cleanable/blood/drip{color = "#151C62"},/turf/open/floor/carpet/blue,/area/ruin/powered)
"dJ" = (/obj/structure/stone_tile/block/cracked,/obj/structure/stone_tile{dir = 4},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"fn" = (/obj/structure/stone_tile/block{dir = 4; icon_state = "pristine_block1"},/obj/structure/stone_tile/cracked{dir = 1; icon_state = "cracked_tile1"},/obj/item/pickaxe/silver,/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"gg" = (/obj/structure/stone_tile/block{dir = 1; icon_state = "pristine_block1"},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"gj" = (/obj/structure/stone_tile/burnt,/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"gl" = (/obj/structure/stone_tile/block{dir = 4; icon_state = "pristine_block1"},/obj/structure/stone_tile{dir = 8},/obj/effect/light_emitter{set_cap = 3; set_luminosity = 6},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"hk" = (/obj/structure/stone_tile/block{dir = 8; icon_state = "pristine_block1"},/obj/structure/stone_tile/cracked{dir = 4; icon_state = "cracked_tile1"},/obj/structure/stone_tile,/obj/effect/light_emitter{set_cap = 3; set_luminosity = 6},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"iH" = (/obj/structure/stone_tile/burnt{dir = 8; icon_state = "burnt_tile1"},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"iY" = (/obj/structure/table/abductor,/obj/item/reagent_containers/food/snacks/muffin/berry{pixel_y = 3},/turf/open/floor/carpet/blue,/area/ruin/powered)
"jy" = (/turf/open/water,/area/ruin/powered)
"kK" = (/obj/structure/mineral_door/woodrustic,/obj/structure/fans/tiny/invisible,/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"lh" = (/obj/structure/stone_tile/block{dir = 8; icon_state = "pristine_block1"},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"lZ" = (/obj/structure/stone_tile/block{dir = 8; icon_state = "pristine_block1"},/obj/structure/stone_tile/cracked{dir = 4; icon_state = "cracked_tile1"},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"md" = (/obj/structure/stone_tile/surrounding/cracked,/turf/open/floor/plating/asteroid/basalt,/area/ruin/unpowered)
"mo" = (/obj/structure/stone_tile/block{dir = 4; icon_state = "pristine_block1"},/turf/open/floor/plating/asteroid/basalt,/area/ruin/unpowered)
"mD" = (/obj/structure/stone_tile/block{dir = 8; icon_state = "pristine_block1"},/obj/structure/stone_tile/cracked{dir = 4; icon_state = "cracked_tile1"},/turf/open/floor/plating/asteroid/basalt,/area/ruin/unpowered)
"nh" = (/obj/structure/table/abductor,/obj/item/reagent_containers/glass/bottle/berry{pixel_y = 4},/turf/open/floor/carpet/blue,/area/ruin/powered)
"nD" = (/obj/structure/stone_tile/block/cracked{dir = 8},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"oi" = (/obj/structure/stone_tile/surrounding_tile{dir = 4},/obj/effect/light_emitter{set_cap = 3; set_luminosity = 6},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"oQ" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/railing,/obj/effect/light_emitter{set_cap = 3; set_luminosity = 6},/obj/structure/railing{dir = 8},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"ph" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/decal/cleanable/blood/tracks{dir = 6; color = "#151C62"},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"pi" = (/obj/structure/stone_tile/cracked{dir = 1; icon_state = "cracked_tile1"},/obj/structure/stone_tile/block{dir = 8; icon_state = "pristine_block1"},/obj/effect/light_emitter{set_cap = 3; set_luminosity = 6},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"pl" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"rI" = (/obj/structure/stone_tile/block{dir = 4; icon_state = "pristine_block1"},/obj/effect/decal/cleanable/blood/drip{color = "#151C62"},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"rY" = (/turf/open/lava/smooth/lava_land_surface,/area/ruin/unpowered)
"sB" = (/obj/effect/decal/cleanable/blood/splats{color = "#151C62"},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"tr" = (/obj/structure/railing{dir = 1},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"tX" = (/obj/structure/stone_tile/block/cracked{dir = 8},/turf/open/floor/plating/asteroid/basalt,/area/ruin/unpowered)
"ua" = (/obj/structure/stone_tile/block{dir = 4; icon_state = "pristine_block1"},/obj/structure/stone_tile/cracked,/obj/structure/statue/blueberry,/obj/structure/stone_tile/block/cracked,/turf/open/floor/plating/asteroid/basalt,/area/ruin/unpowered)
"vb" = (/obj/structure/stone_tile/cracked,/obj/structure/stone_tile/block{dir = 1; icon_state = "pristine_block1"},/obj/effect/light_emitter{set_cap = 3; set_luminosity = 6},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"vd" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"wM" = (/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"xy" = (/turf/template_noop,/area/template_noop)
"xL" = (/obj/structure/statue/blueberry,/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"yS" = (/obj/effect/decal/cleanable/blood/tracks{dir = 4; color = "#151C62"},/turf/open/floor/plasteel/stairs{dir = 8},/area/ruin/powered)
"zt" = (/obj/item/clothing/under/rank/security/pink,/obj/effect/decal/cleanable/blood{color = "#151C62"},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"zG" = (/obj/structure/stone_tile/block{dir = 4; icon_state = "pristine_block1"},/obj/structure/stone_tile/cracked,/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"Ag" = (/obj/structure/stone_tile/block{dir = 8; icon_state = "pristine_block1"},/obj/structure/statue/blueberry,/turf/open/floor/plating/asteroid/basalt,/area/ruin/unpowered)
"At" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/light_emitter{set_cap = 3; set_luminosity = 6},/obj/structure/railing{dir = 4},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"AB" = (/obj/structure/stone_tile/surrounding_tile/cracked,/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"Bb" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/railing{dir = 4},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"BN" = (/obj/structure/stone_tile/surrounding_tile/burnt,/turf/open/floor/plating/asteroid/basalt,/area/ruin/unpowered)
"CG" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/decal/cleanable/blood/drip{color = "#151C62"},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"CM" = (/turf/closed/indestructible/riveted/boss,/area/ruin/unpowered)
"ES" = (/obj/structure/statue/blueberry,/turf/open/floor/carpet/blue,/area/ruin/powered)
"Fx" = (/obj/structure/stone_tile/block/cracked{dir = 1},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"FG" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/railing{dir = 8},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"FO" = (/obj/effect/decal/cleanable/blood{color = "#151C62"},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"Hh" = (/obj/structure/stone_tile/surrounding/cracked{dir = 4},/turf/open/floor/plating/asteroid/basalt,/area/ruin/unpowered)
"In" = (/turf/closed/indestructible/riveted/boss,/area/ruin/powered)
"Ld" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/railing{dir = 4},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"Mo" = (/obj/structure/stone_tile/block/cracked{dir = 4},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"MZ" = (/obj/structure/stone_tile/block{dir = 4; icon_state = "pristine_block1"},/obj/structure/stone_tile/burnt{dir = 1; icon_state = "burnt_tile1"},/turf/open/floor/plating/asteroid/basalt,/area/ruin/unpowered)
"Pb" = (/turf/open/floor/carpet/blue,/area/ruin/powered)
"Pe" = (/obj/effect/decal/cleanable/blood/drip{color = "#151C62"},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"PM" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/railing{dir = 8},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"QC" = (/obj/structure/stone_tile/block/cracked,/obj/structure/stone_tile{dir = 1},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"RF" = (/turf/open/floor/plating/asteroid/basalt,/area/ruin/unpowered)
"RH" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/railing,/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"RI" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/railing,/obj/effect/light_emitter{set_cap = 3; set_luminosity = 6},/obj/structure/railing{dir = 4},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"Se" = (/obj/structure/stone_tile/surrounding_tile{dir = 8},/turf/open/floor/plating/asteroid/basalt,/area/ruin/unpowered)
"Xy" = (/obj/structure/stone_tile/surrounding_tile{dir = 8},/turf/open/floor/mineral/basaltstone_floor,/area/ruin/powered)
"YV" = (/obj/structure/stone_tile/block{dir = 4; icon_state = "pristine_block1"},/obj/structure/stone_tile/cracked{dir = 1; icon_state = "cracked_tile1"},/obj/structure/statue/blueberry,/turf/open/floor/plating/asteroid/basalt,/area/ruin/unpowered)
"Zz" = (/obj/structure/stone_tile/block{dir = 8; icon_state = "pristine_block1"},/obj/structure/stone_tile/burnt{dir = 8; icon_state = "burnt_tile1"},/obj/structure/statue/blueberry,/obj/structure/stone_tile/block/cracked,/turf/open/floor/plating/asteroid/basalt,/area/ruin/unpowered)
(1,1,1) = {"
xyxyxyxyRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFxyxyxyxyxy
xyxyRFRFRFRFRFRFrYrYrYrYrYrYrYrYRFRFRFRFRFRFxyxyxy
xyRFRFRFCMCMrYrYrYrYInrYrYInrYrYrYrYCMCMRFRFRFxyxy
xyRFRFCMrYrYrYrYInrYInrYrYInrYInrYrYrYrYCMRFRFxyxy
xyRFRFCMrYrYrYInInInInInInInInInInrYrYrYCMRFRFxyxy
xyRFRFrYrYrYInInaaFGPbaWaWPbAtdJInInrYrYrYRFRFxyxy
xyRFRFrYrYrYInQCABFGESnhiYESLdiHdJInrYrYrYRFRFxyxy
xyRFrYrYrYInInMowMFGPbPbdIPbLdwMlhInInrYrYrYRFxyxy
xyRFrYrYrYInglgjwMPMvdCGvdvdBbwMXyhkInrYrYrYRFxyxy
xyRFrYrYrYInrIFOPeoQRHcIplRHRIwMwMlhInrYrYrYRFxyxy
xyRFrYrYInInrIztcRySySphplapapwMwMlhInInrYrYRFxyxy
xyRFrYrYInjyfnsBPewMtrtrtrtrwMwMwMnDjyInrYrYRFxyxy
xyRFrYrYInjyzGxLwMPewMwMwMwMwMwMxLlZjyInrYrYRFxyxy
xyRFrYrYInjyvbggFxggcQwMwMoiFxggggpijyInrYrYRFxyxy
xyRFrYrYInjyjyjyjyjyInwMwMInjyjyjyjyjyInrYrYRFxyxy
xyRFRFrYInInInInInInInkKkKInInInInInInInrYRFRFxyxy
xyRFRFrYrYInrYInrYCMuaBNSeZzCMrYInrYInrYrYRFRFxyxy
xyRFRFrYrYrYrYInrYCMmoRFRFakCMrYInrYrYrYrYRFRFxyxy
xyRFRFCMCMrYrYrYrYCMMZRFRFmDCMrYrYrYrYCMCMRFRFxyxy
xyxyRFRFRFCMrYrYrYrYmoRFRFtXrYrYrYrYCMRFRFRFxyxyxy
xyxyRFRFRFCMrYrYrYrYmoRFRFmDrYrYrYrYCMRFRFRFxyxyxy
xyxyRFRFRFRFRFRFRFrYmoRFRFakrYRFRFRFRFRFRFRFxyxyxy
xyxyxyRFRFRFRFRFRFCMYVRFRFAgCMRFRFRFRFRFRFxyxyxyxy
xyxyxyxyxyxyxyxyRFRFmoRFRFakRFRFxyxyxyxyxyxyxyxyxy
xyxyxyxyxyxyxyxyxyCMHhRFRFmdCMxyxyxyxyxyxyxyxyxyxy
"}
@@ -0,0 +1,61 @@
"a" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
"c" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"d" = (/obj/structure/cursedfatfountain,/turf/open/floor/mineral/calorite/dance,/area/ruin/powered/gluttony)
"i" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"j" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 4; color = "#ffa500"},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"k" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"l" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/railing{color = FFA500; dir = 8},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"o" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/railing{color = FFA500},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"r" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"s" = (/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"v" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/ruin/powered/gluttony)
"w" = (/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"y" = (/turf/closed/mineral/volcanic/lava_land_surface,/area/lavaland/surface/outdoors)
"z" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"B" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"D" = (/obj/machinery/light/small{dir = 1; pixel_x = 16},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"F" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"G" = (/obj/structure/statue/calorite/fatty,/obj/machinery/light{dir = 4; color = "#ffa500"},/turf/open/floor/mineral/calorite/dance,/area/ruin/powered/gluttony)
"H" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/mineral_door/calorite,/obj/structure/fans/tiny/invisible,/turf/open/floor/mineral/calorite/hide,/area/ruin/powered/gluttony)
"I" = (/turf/open/floor/mineral/calorite/dance,/area/ruin/powered/gluttony)
"J" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"K" = (/turf/closed/wall/mineral/calorite,/area/ruin/powered/gluttony)
"M" = (/obj/structure/statue/calorite/fatty,/obj/machinery/light{dir = 8; color = "#ffa500"},/turf/open/floor/mineral/calorite/dance,/area/ruin/powered/gluttony)
"N" = (/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"O" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/mineral/calorite/hide,/area/ruin/powered/gluttony)
"P" = (/turf/open/lava/smooth/lava_land_surface,/area/ruin/powered/gluttony)
"R" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/railing{color = FFA500; dir = 4},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"T" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"U" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/railing{color = FFA500; dir = 1},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"V" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/mineral_door/calorite,/turf/open/floor/mineral/calorite/hide,/area/ruin/powered/gluttony)
"W" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"X" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light{dir = 8; color = "#ffa500"},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"Y" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
(1,1,1) = {"
yyyyyyyyyyyyy
yyyyyyyyyyyyy
yyyyyyyyyyyyy
yyyPPPPPPPyyy
yyyPKKKKKPyyy
yyyPKrYJKPyyy
yyyPKXdjKPyyy
yyyPKTciKPyyy
yyyPKKVKKPyyy
yyyPPKOKPPyyy
yyyyKKOKKyyyy
yyyKKIOIKKyyy
yyyKoJvWoKyyy
yyyKMlvRGKyyy
yyyKUNvsUKyyy
yyyKKNvsKKyyy
ayyyKkvzKyyyy
ayyyKFOBKyyyy
ayayKIOIKyyyy
aaayKKHKKyyya
aaaaDwwDwyyya
aaaaKwwwKyyaa
ayyaaaaayyyaa
ayyyaaaaaaaaa
aaaaaaaaaaaay
"}
@@ -0,0 +1,91 @@
"aF" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"aG" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"bt" = (/turf/open/floor/mineral/calorite,/area/ruin/unpowered/caloriteshrine)
"cs" = (/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"da" = (/obj/structure/table/wood/fancy,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/statue/fatso{pixel_y = 11},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"de" = (/turf/open/indestructible/cobble/side,/area/lavaland/surface/outdoors)
"eF" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 2},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"hd" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"ho" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"kf" = (/obj/structure/table/bronze,/obj/item/trash/sosjerky,/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"kz" = (/obj/structure/table/bronze,/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"kB" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 2},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"kF" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"ly" = (/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"mR" = (/turf/template_noop,/area/template_noop)
"mS" = (/obj/structure/table/bronze,/obj/item/trash/cheesie,/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"ok" = (/obj/item/trash/cheesie,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"pw" = (/obj/structure/mineral_door/calorite,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"pI" = (/obj/effect/decal/cleanable/ash/large,/turf/open/floor/plating/asteroid/basalt,/area/template_noop)
"pV" = (/turf/open/floor/plating/asteroid/basalt,/area/template_noop)
"su" = (/obj/structure/chair/wood{dir = 4},/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"sA" = (/obj/structure/chair/wood{dir = 8},/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"sI" = (/obj/structure/table/bronze,/obj/item/candle/infinite,/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"sY" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"tV" = (/obj/structure/chair/wood{dir = 1},/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"us" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"wt" = (/obj/item/trash/blueberry_gum,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"xI" = (/turf/open/indestructible/cobble/side{dir = 8},/area/lavaland/surface/outdoors)
"xY" = (/turf/open/indestructible/cobble,/area/lavaland/surface/outdoors)
"yr" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"yR" = (/obj/structure/chair/wood,/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"Ad" = (/obj/structure/table/bronze,/obj/item/lighter/gold,/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"Aq" = (/turf/closed/wall/mineral/calorite,/area/ruin/unpowered/caloriteshrine)
"FP" = (/obj/item/trash/blueberry_gum,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"FU" = (/turf/open/floor/plating/asteroid/basalt,/area/lavaland/surface/outdoors)
"Go" = (/turf/open/indestructible/cobble/corner{dir = 4},/area/lavaland/surface/outdoors)
"IX" = (/obj/item/flashlight/lantern{anchored = 1; icon_state = null; icon = null},/turf/open/floor/plating/asteroid/basalt,/area/lavaland/surface/outdoors)
"Jx" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"JC" = (/obj/item/trash/blueberry_gum,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"LF" = (/turf/open/indestructible/cobble/corner{dir = 8},/area/lavaland/surface/outdoors)
"MO" = (/turf/open/indestructible/cobble/side{dir = 4},/area/lavaland/surface/outdoors)
"Nr" = (/obj/item/trash/pistachios,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"NI" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"Oc" = (/obj/item/trash/boritos,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"Pa" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"PY" = (/obj/structure/table/bronze,/obj/item/trash/plate,/obj/item/trash/can,/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"QM" = (/obj/effect/turf_decal/tile/yellow,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"Sw" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"SU" = (/obj/item/trash/cheesie,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"Tn" = (/obj/effect/decal/cleanable/ash,/turf/open/floor/plating/asteroid/basalt,/area/template_noop)
"Ts" = (/turf/closed/wall/mineral/calorite,/area/lavaland/surface/outdoors)
"TL" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 2},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"TW" = (/obj/structure/statue/calorite/fatty{anchored = 1},/obj/item/flashlight/lantern{anchored = 1; icon_state = null; icon = null},/turf/open/floor/mineral/calorite/strong,/area/ruin/unpowered/caloriteshrine)
"Ul" = (/obj/item/trash/waffles,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"VL" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"Wt" = (/obj/effect/decal/cleanable/ash/large,/turf/open/floor/plating/asteroid/basalt,/area/lavaland/surface/outdoors)
"Wz" = (/obj/structure/table/bronze,/obj/item/trash/plate,/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"Ye" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"ZL" = (/obj/structure/table/wood/fancy,/obj/item/candle/infinite,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
(1,1,1) = {"
mRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRpVTnmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRmRmRmRmRmRpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVmRmRmRmRmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRmRmRmRpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVmRmRmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRmRmRpVpVpVpVpVpVAqAqAqAqAqAqAqAqAqAqAqpVpVpVpVpVpVmRmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRpVpVpVpVpVAqAqAqAqbtbtbtbtbtbtbtbtbtAqAqAqAqpVpVpVmRmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRpVpVpVpVAqAqbtbtbtJxSwSwZLdaZLSwSwkBbtbtbtAqAqpVpVpVmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRpVpVpVpVAqbtYeSwSwkFTWcscscscscsTWaFSwSwkBbtAqTnpVpVmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRpVpVpVAqAqbthdcscsQMPaPaPaPaPaPaPahocscseFbtAqAqpVpVpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRpVpVAqAqbtYecscsAqyrlyyRyRlyyRyRlyhdAqcsaFkBbtAqAqpVTnmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRpVTnAqbtwtcscscscsyrlykzWzkzAdkzlyhdSUcscsaFTLbtAqpVpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVAqAqbthdTWcscscsyrsukzsIkzsIPYsAhdcsOccsTWeFbtAqAqpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVAqbtYekFcscsSUUlyrsuWzkzkfWzkzsAhdcscscscsaFVLbtAqpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVAqbthdcsAqcscscsyrsukzWzkzmSkzsAhdcscscsAqcsNIbtAqpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVAqbthdcsAqcscscsJCsukzsIkzsIkzsAokcscscsAqcsNIbtAqpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVAqbtushocscscscsyrlykzkzkzWzkzlyhdcscscscsQMaGbtAqpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVAqAqbthdTWcscsAqyrlytVtVtVtVtVlyhdAqcscsTWyrbtAqAqpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVpVAqbtushocscscsaFSwSwSwSwSwSwSwkFcscscsQMNrbtAqpVpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVTnAqAqbtFPPaPaPahoTWcscscscscsTWQMPaPaPasYbtAqAqpVpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVpVpVAqAqbtbtbtbtusPaPahocsQMPaPasYbtbtbtbtAqAqpIpVpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRmRpVpVpVAqAqAqAqAqbtbtbthdcsyrbtbtbtAqAqAqAqAqpVpVTnmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRmRmRpVpVpVpVpVFUAqAqAqAqpwAqpwAqAqAqAqFUpVpVpVpVpVmRmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRmRmRmRpVpVpVpVFUFUFUFUTsxIxYMOTsFUFUFUWtpVpVpVpVpVmRmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRmRmRmRmRmRmRpVFUFUFUFUIXxIxYMOIXFUFUFUFUpVpVpVmRmRmRmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRFUFUFUTsLFdeGoTsFUFUFUFUpVpVmRmRmRmRmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRFUFUFUFUFUFUFUFUmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmR
"}
File diff suppressed because it is too large Load Diff
+4 -4
View File
@@ -4,10 +4,10 @@
"d" = (/obj/machinery/door/airlock{id_tag = "quantum_door_three"; dir = 1},/obj/structure/fans/tiny,/turf/open/floor/plasteel,/area/ruin/space/has_grav/powered/quantum_hub)
"e" = (/obj/machinery/door/airlock{id_tag = "quantum_door_two"; dir = 1},/obj/structure/fans/tiny,/turf/open/floor/plasteel,/area/ruin/space/has_grav/powered/quantum_hub)
"f" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/circuit,/area/ruin/space/has_grav/powered/quantum_hub)
"g" = (/obj/item/twohanded/required/kirbyplants/photosynthetic,/turf/open/floor/plasteel,/area/ruin/space/has_grav/powered/quantum_hub)
"g" = (/obj/item/kirbyplants/photosynthetic,/turf/open/floor/plasteel,/area/ruin/space/has_grav/powered/quantum_hub)
"h" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/circuit,/area/ruin/space/has_grav/powered/quantum_hub)
"i" = (/turf/closed/wall/mineral/plastitanium,/area/ruin/space/has_grav/powered/quantum_hub)
"j" = (/obj/machinery/light{dir = 4},/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/button/door{id = "quantum_door_one"; name = "Room 1 Lock"; normaldoorcontrol = 1; specialfunctions = 4; pixel_y = 4; pixel_x = 21; dir = 0},/turf/open/floor/plasteel,/area/ruin/space/has_grav/powered/quantum_hub)
"j" = (/obj/machinery/light{dir = 4},/obj/item/kirbyplants/random,/obj/machinery/button/door{id = "quantum_door_one"; name = "Room 1 Lock"; normaldoorcontrol = 1; specialfunctions = 4; pixel_y = 4; pixel_x = 21; dir = 0},/turf/open/floor/plasteel,/area/ruin/space/has_grav/powered/quantum_hub)
"l" = (/obj/structure/rack,/obj/item/multitool,/obj/item/screwdriver,/obj/item/wrench,/obj/machinery/light,/obj/item/storage/box/quantum_pad_parts,/turf/open/floor/plasteel,/area/ruin/space/has_grav/powered/quantum_hub)
"m" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/vending/gato,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/powered/quantum_hub)
"n" = (/obj/structure/window/reinforced,/turf/open/floor/circuit,/area/ruin/space/has_grav/powered/quantum_hub)
@@ -29,7 +29,7 @@
"J" = (/obj/structure/chair,/turf/open/floor/plasteel,/area/ruin/space/has_grav/powered/quantum_hub)
"L" = (/obj/machinery/door/airlock{id_tag = "quantum_door_one"; dir = 4},/obj/structure/fans/tiny,/turf/open/floor/plasteel,/area/ruin/space/has_grav/powered/quantum_hub)
"M" = (/obj/machinery/light{dir = 8},/obj/structure/table/reinforced,/obj/item/gps{gpstag = "Quantum Hub"},/turf/open/floor/plasteel,/area/ruin/space/has_grav/powered/quantum_hub)
"N" = (/obj/machinery/light,/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/button/door{id = "quantum_door_three"; name = "Room 3 Lock"; normaldoorcontrol = 1; specialfunctions = 4; pixel_y = -21; pixel_x = 4; dir = 0},/turf/open/floor/plasteel,/area/ruin/space/has_grav/powered/quantum_hub)
"N" = (/obj/machinery/light,/obj/item/kirbyplants/random,/obj/machinery/button/door{id = "quantum_door_three"; name = "Room 3 Lock"; normaldoorcontrol = 1; specialfunctions = 4; pixel_y = -21; pixel_x = 4; dir = 0},/turf/open/floor/plasteel,/area/ruin/space/has_grav/powered/quantum_hub)
"O" = (/obj/structure/table/reinforced,/turf/open/floor/plasteel,/area/ruin/space/has_grav/powered/quantum_hub)
"P" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/ruin/space/has_grav/powered/quantum_hub)
"Q" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/circuit,/area/ruin/space/has_grav/powered/quantum_hub)
@@ -39,7 +39,7 @@
"V" = (/turf/open/floor/plasteel/cafeteria,/area/ruin/space/has_grav/powered/quantum_hub)
"W" = (/obj/machinery/door/airlock{dir = 4},/obj/structure/fans/tiny,/turf/open/floor/plasteel,/area/ruin/space/has_grav/powered/quantum_hub)
"Y" = (/obj/structure/closet,/turf/open/floor/plasteel,/area/ruin/space/has_grav/powered/quantum_hub)
"Z" = (/obj/machinery/light,/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/button/door{id = "quantum_door_two"; name = "Room 2 Lock"; normaldoorcontrol = 1; specialfunctions = 4; pixel_y = -21; pixel_x = 4; dir = 0},/turf/open/floor/plasteel,/area/ruin/space/has_grav/powered/quantum_hub)
"Z" = (/obj/machinery/light,/obj/item/kirbyplants/random,/obj/machinery/button/door{id = "quantum_door_two"; name = "Room 2 Lock"; normaldoorcontrol = 1; specialfunctions = 4; pixel_y = -21; pixel_x = 4; dir = 0},/turf/open/floor/plasteel,/area/ruin/space/has_grav/powered/quantum_hub)
(1,1,1) = {"
aaaaaaaaaaaaaaaaaaa
@@ -90,7 +90,7 @@
"cR" = (/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/orange,/turf/open/floor/pod/dark,/area/ruin/powered/beach)
"cW" = (/obj/machinery/light{dir = 4},/turf/open/floor/wood,/area/ruin/powered/beach)
"dw" = (/obj/machinery/door/airlock/sandstone{name = "Beach Access"},/turf/open/floor/pod/dark,/area/ruin/powered/beach)
"eD" = (/obj/structure/chair/comfy/plywood,/obj/item/toy/plush/rose,/turf/open/floor/plating/beach/sand,/area/ruin/powered/beach)
"eD" = (/obj/structure/chair/comfy/plywood,/obj/item/toy/plush/gs13/rose,/turf/open/floor/plating/beach/sand,/area/ruin/powered/beach)
"fr" = (/obj/machinery/door/airlock/wood/glass,/turf/open/floor/wood,/area/ruin/powered/beach)
"fE" = (/obj/effect/turf_decal/stripes/asteroid/line{dir = 1},/obj/effect/turf_decal/sand,/obj/machinery/vending/gato,/turf/open/floor/plasteel,/area/ruin/powered/beach)
"gS" = (/obj/effect/turf_decal/sand,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/ruin/powered/beach)
@@ -144,7 +144,7 @@
/obj/effect/turf_decal/tile/bar{
dir = 1
},
/obj/item/twohanded/required/kirbyplants/random,
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/stripes/corner,
/obj/machinery/power/apc{
name = "Food Hall APC";
@@ -744,7 +744,7 @@
ambientsounds = list('sound/ambience/ambinice.ogg','sound/ambience/ambigen1.ogg','sound/ambience/ambigen3.ogg','sound/ambience/ambigen4.ogg','sound/ambience/ambigen5.ogg','sound/ambience/ambigen6.ogg','sound/ambience/ambigen7.ogg','sound/ambience/ambigen8.ogg','sound/ambience/ambigen9.ogg','sound/ambience/ambigen10.ogg','sound/ambience/ambigen11.ogg','sound/ambience/ambigen12.ogg','sound/ambience/ambigen14.ogg','sound/ambience/ambigen15.ogg')
})
"bc" = (
/obj/item/twohanded/required/kirbyplants/random{
/obj/item/kirbyplants/random{
pixel_y = 12
},
/turf/open/floor/mineral/basaltstone_floor,
@@ -1011,7 +1011,7 @@
/obj/effect/turf_decal/tile/bar{
dir = 1
},
/obj/item/twohanded/required/kirbyplants/random,
/obj/item/kirbyplants/random,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1,
/turf/open/floor/plasteel,
/area/shuttle/abandoned/cargo{
@@ -2314,7 +2314,7 @@
/obj/item/trash/raisins,
/obj/item/trash/waffles,
/obj/structure/closet/crate/trashcart,
/obj/item/toy/plush/lgo,
/obj/item/toy/plush/gs13/lgo,
/turf/open/floor/plating,
/area/shuttle/abandoned/engine{
name = "Engineering";
@@ -23431,6 +23431,11 @@
/obj/effect/turf_decal/tile/purple{
dir = 8
},
/obj/machinery/quantumpad{
map_pad_id = "station";
map_pad_link_id = "xenoarch";
mapped_quantum_pads = list("station","xenoarch")
},
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"bfZ" = (
+5 -3
View File
@@ -5346,9 +5346,6 @@
/obj/structure/disposalpipe/trunk{
dir = 8
},
/obj/structure/sign/poster/official/duelshotgun{
pixel_y = -32
},
/turf/open/floor/plasteel,
/area/security/brig)
"anj" = (
@@ -55351,6 +55348,11 @@
c_tag = "Aft Hallway - MedSci Port";
dir = 4
},
/obj/machinery/quantumpad{
map_pad_id = "station";
map_pad_link_id = "xenoarch";
mapped_quantum_pads = list("station","xenoarch")
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"coC" = (
+12 -1
View File
@@ -79198,6 +79198,17 @@
},
/turf/open/floor/plasteel,
/area/engineering/atmospherics_engine)
"gXL" = (
/obj/effect/turf_decal/tile/purple{
dir = 8
},
/obj/machinery/quantumpad{
map_pad_id = "station";
map_pad_link_id = "xenoarch";
mapped_quantum_pads = list("station","xenoarch")
},
/turf/open/floor/plasteel/white,
/area/science/research)
"gXP" = (
/obj/machinery/photocopier,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -164575,7 +164586,7 @@ cQJ
cSq
cUg
cQQ
cUe
gXL
cZi
daM
dcB
@@ -10521,6 +10521,11 @@
/obj/structure/sign/departments/science{
pixel_x = 32
},
/obj/machinery/quantumpad{
map_pad_id = "station";
map_pad_link_id = "xenoarch";
mapped_quantum_pads = list("station","xenoarch")
},
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"arE" = (
+9 -1
View File
@@ -70437,6 +70437,14 @@
"hkc" = (
/turf/open/floor/carpet/blackred,
/area/commons/dorms)
"hkf" = (
/obj/machinery/quantumpad{
map_pad_id = "station";
map_pad_link_id = "xenoarch";
mapped_quantum_pads = list("station","xenoarch")
},
/turf/open/floor/plasteel/white,
/area/hallway/primary/fore)
"hky" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -129210,7 +129218,7 @@ aPd
aFV
aGK
aCL
aHV
hkf
aJF
ngt
aWc
+12 -1
View File
@@ -74711,6 +74711,17 @@
/obj/machinery/atmospherics/pipe/simple/dark/visible,
/turf/open/floor/plasteel/dark,
/area/engineering/atmos)
"rVO" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/obj/machinery/quantumpad{
map_pad_id = "station";
map_pad_link_id = "xenoarch";
mapped_quantum_pads = list("station","xenoarch")
},
/turf/open/floor/plasteel/white,
/area/science/research)
"rWl" = (
/obj/item/radio/intercom{
name = "Station Intercom (General)";
@@ -116229,7 +116240,7 @@ bWC
bSS
bZn
caB
ccj
rVO
cdO
ceU
cgi
@@ -26690,6 +26690,11 @@
/obj/effect/turf_decal/tile/purple{
dir = 1
},
/obj/machinery/quantumpad{
map_pad_id = "station";
map_pad_link_id = "xenoarch";
mapped_quantum_pads = list("station","xenoarch")
},
/turf/open/floor/plasteel/white,
/area/science/research)
"aXC" = (
+14 -1
View File
@@ -52306,6 +52306,19 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
"dVu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/tile/green,
/obj/effect/turf_decal/tile/green{
dir = 4
},
/obj/machinery/quantumpad{
map_pad_id = "station";
map_pad_link_id = "xenoarch";
mapped_quantum_pads = list("station","xenoarch")
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"dVI" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -99726,7 +99739,7 @@ bBo
bks
blD
bko
bko
dVu
bko
bqf
bko
@@ -22971,6 +22971,11 @@
/obj/effect/turf_decal/tile/purple{
dir = 8
},
/obj/machinery/quantumpad{
map_pad_id = "station";
map_pad_link_id = "xenoarch";
mapped_quantum_pads = list("station","xenoarch")
},
/turf/open/floor/plasteel/dark,
/area/hallway/primary/starboard)
"bfZ" = (
@@ -27230,8 +27235,6 @@
layer = 2.9
},
/obj/structure/table/reinforced,
/obj/item/destTagger,
/obj/item/destTagger,
/obj/effect/turf_decal/tile/brown{
dir = 1
},
@@ -42163,7 +42166,6 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
/mob/living/simple_animal/parrot/Poly,
/turf/open/floor/plasteel/dark,
/area/command/heads_quarters/ce)
"cbr" = (
+33 -35
View File
@@ -38,7 +38,7 @@
"aL" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"aM" = (/turf/open/space,/area/space)
"aN" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"aO" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/item/twohanded/required/kirbyplants,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"aO" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/item/kirbyplants,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"aP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/checker,/area/ruin/space/has_grav/fastfood_employee)
"aQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals_central4"},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee)
"aR" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals8"},/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals6"},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee)
@@ -51,7 +51,7 @@
"aY" = (/obj/structure/sink/kitchen{dir = 4; pixel_x = -11},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"aZ" = (/obj/structure/reagent_dispensers/cooking_oil,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_employee)
"ba" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 1},/obj/machinery/airalarm/syndicate{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/obj/structure/closet/crate/freezer,/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_employee)
"bb" = (/obj/structure/table/plaswood,/obj/item/reagent_containers/food/drinks/drinkingglass/filled/cola{pixel_y = -10; pixel_x = -3},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"bb" = (/obj/item/reagent_containers/food/drinks/drinkingglass/filled/cola{pixel_y = -10; pixel_x = -3},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"bc" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"bd" = (/turf/open/floor/plasteel/cafeteria,/area/ruin/space/has_grav/fastfood_employee)
"be" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/structure/sign/poster/official/cleanliness{pixel_y = 32},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"; dir = 1},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_employee)
@@ -90,7 +90,7 @@
"bL" = (/obj/structure/window/fulltile,/obj/structure/flora/ausbushes/ywflowers,/obj/machinery/light/floor,/turf/open/floor/grass,/area/ruin/space/has_grav/fastfood_main)
"bM" = (/obj/structure/window/fulltile,/obj/structure/flora/ausbushes/grassybush,/turf/open/floor/grass,/area/ruin/space/has_grav/fastfood_main)
"bN" = (/obj/structure/chair/sofa{dir = 4},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"bR" = (/obj/structure/table/plaswood,/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb{pixel_y = 7},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"bR" = (/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb{pixel_y = 7},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"bW" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"cf" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"cq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
@@ -100,7 +100,7 @@
"cD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"cE" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"cU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/cafeteria,/area/ruin/space/has_grav/fastfood_employee)
"da" = (/obj/structure/closet/crate/trashcart,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/stripes/line,/obj/item/trash/bird_seed,/obj/item/trash/cheesie,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless,/area/space/nearstation)
"da" = (/obj/structure/closet/crate/trashcart,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/stripes/line,/obj/item/trash/cheesie,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless,/area/space/nearstation)
"dl" = (/obj/machinery/door/airlock/public{dir = 4},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"dD" = (/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee)
"dE" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee)
@@ -123,11 +123,11 @@
"fc" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/white/line,/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals_central4"},/turf/open/floor/circuit/telecomms,/area/ruin/space/has_grav/fastfood_employee)
"fi" = (/obj/structure/chair/sofa/left{dir = 4},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"fv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"fx" = (/obj/item/twohanded/required/kirbyplants,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"; dir = 1},/obj/structure/sign/warning/nosmoking/circle{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_main)
"fx" = (/obj/item/kirbyplants,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"; dir = 1},/obj/structure/sign/warning/nosmoking/circle{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_main)
"fA" = (/obj/structure/lattice/catwalk,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating/airless,/area/ruin/space/has_grav/fastfood_employee)
"fB" = (/obj/structure/closet/firecloset/full,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"; dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"fD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/space/has_grav/fastfood_employee)
"fF" = (/obj/structure/table/plaswood,/obj/item/reagent_containers/food/drinks/drinkingglass/filled/cola{pixel_x = 10},/obj/item/reagent_containers/food/drinks/drinkingglass/filled/nuka_cola{pixel_x = -10},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"fF" = (/obj/item/reagent_containers/food/drinks/drinkingglass/filled/cola{pixel_x = 10},/obj/item/reagent_containers/food/drinks/drinkingglass/filled/nuka_cola{pixel_x = -10},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"fN" = (/obj/structure/closet/emcloset/anchored,/obj/machinery/light/small{dir = 4},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"; dir = 4},/obj/item/clothing/suit/space/eva,/obj/item/clothing/head/helmet/space/eva,/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"fR" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"fX" = (/obj/structure/lattice,/turf/open/space/basic,/area/space)
@@ -154,7 +154,7 @@
"iK" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"iL" = (/obj/structure/rack/shelf,/obj/item/vending_refill/mealdor,/obj/item/vending_refill/boozeomat,/obj/item/vending_refill/coffee,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/item/vending_refill/hydroseeds,/obj/item/vending_refill/hydronutrients,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee)
"iN" = (/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_grid_diagonal"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_grid_diagonal"},/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals_central7"},/obj/effect/turf_decal/stripes/white/line{dir = 10; icon_state = "steel_decals6"},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_employee)
"iZ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/item/twohanded/required/kirbyplants,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"iZ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/item/kirbyplants,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"jh" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"jv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 8},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_main)
"jJ" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
@@ -212,7 +212,6 @@
"pk" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/old/preopen{id = "fastfood_bar"},/obj/item/reagent_containers/food/drinks/drinkingglass/filled/cola,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_employee)
"pu" = (/obj/machinery/iv_drip/feeding_tube,/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"pw" = (/obj/structure/trash_pile,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless,/area/space/nearstation)
"px" = (/obj/structure/table/plaswood,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"pG" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"pU" = (/obj/machinery/computer/security/telescreen/entertainment,/turf/closed/wall,/area/ruin/space/has_grav/fastfood_employee)
"pW" = (/obj/structure/table,/obj/item/storage/box/beakers{pixel_x = 5; pixel_y = 6},/obj/item/reagent_containers/glass/beaker{pixel_x = -5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_employee)
@@ -224,7 +223,7 @@
"qr" = (/obj/machinery/deepfryer,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_employee)
"qz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 10; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals4"},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee)
"qE" = (/obj/structure/window/fulltile,/obj/structure/flora/junglebush,/turf/open/floor/grass,/area/ruin/space/has_grav/fastfood_main)
"qF" = (/obj/item/toy/plush/rose{pixel_y = 2},/turf/open/floor/plating/asteroid/airless,/area/space/nearstation)
"qF" = (/obj/item/toy/plush/gs13/rose{pixel_y = 2},/turf/open/floor/plating/asteroid/airless,/area/space/nearstation)
"qH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee)
"qL" = (/obj/structure/urinal{pixel_y = 32},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_main)
"qM" = (/obj/machinery/door/airlock/public{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_employee)
@@ -256,11 +255,11 @@
"tZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/wood,/area/ruin/space/has_grav/fastfood_employee)
"ug" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"uj" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/manifold/supply,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"uw" = (/obj/structure/table/plaswood,/obj/item/trash/plate{pixel_y = 8},/obj/item/trash/plate{pixel_y = 10; pixel_x = 2},/obj/item/trash/plate{pixel_y = 12; pixel_x = 3},/obj/item/trash/plate{pixel_y = 14},/obj/item/trash/plate{pixel_y = 16},/obj/item/reagent_containers/food/snacks/burger/superbite{pixel_x = 7; pixel_y = -3},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"uw" = (/obj/item/trash/plate{pixel_y = 8},/obj/item/trash/plate{pixel_y = 10; pixel_x = 2},/obj/item/trash/plate{pixel_y = 12; pixel_x = 3},/obj/item/trash/plate{pixel_y = 14},/obj/item/trash/plate{pixel_y = 16},/obj/item/reagent_containers/food/snacks/burger/superbite{pixel_x = 7; pixel_y = -3},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"uA" = (/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_grid_diagonal"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_grid_diagonal"},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_employee)
"uC" = (/obj/machinery/teleport/hub,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/stripes{dir = 5},/obj/effect/turf_decal/stripes/white/line{dir = 10},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"uM" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/stripes/white/line{dir = 9; icon_state = "steel_decals6"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals8"},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"uS" = (/obj/structure/table/plaswood,/obj/machinery/light{dir = 1},/obj/item/reagent_containers/food/drinks/soda_cans/cola{pixel_y = -5; pixel_x = -7},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"uS" = (/obj/machinery/light{dir = 1},/obj/item/reagent_containers/food/drinks/soda_cans/cola{pixel_y = -5; pixel_x = -7},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"uV" = (/obj/machinery/computer/arcade,/obj/machinery/airalarm/syndicate{pixel_y = 32},/turf/open/floor/carpet/orange,/area/ruin/space/has_grav/fastfood_main)
"uZ" = (/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"vb" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/arrows/white{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
@@ -277,19 +276,19 @@
"wk" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"wt" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"wG" = (/obj/structure/window/fulltile,/obj/structure/flora/ausbushes/brflowers,/turf/open/floor/grass,/area/ruin/space/has_grav/fastfood_main)
"wJ" = (/obj/structure/table/plaswood,/obj/structure/sign/poster/contraband/sun_kist{pixel_x = 32},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"wJ" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"wK" = (/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee)
"wN" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"wR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"wX" = (/obj/structure/window/fulltile,/obj/structure/flora/junglebush/c,/obj/structure/sign/poster/contraband/corn_oil{pixel_y = -32},/obj/machinery/light/floor,/turf/open/floor/grass,/area/ruin/space/has_grav/fastfood_main)
"xa" = (/obj/structure/table/plaswood,/obj/item/reagent_containers/food/snacks/cracker,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"xa" = (/obj/item/reagent_containers/food/snacks/cracker,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"xg" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"xi" = (/obj/item/toy/plush/tertia{pixel_x = -16},/turf/open/floor/plating/asteroid/airless,/area/space/nearstation)
"xi" = (/obj/item/toy/plush/gs13/tertia{pixel_x = -16},/turf/open/floor/plating/asteroid/airless,/area/space/nearstation)
"xv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals_central6"},/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals3"},/turf/open/floor/plasteel/cafeteria,/area/ruin/space/has_grav/fastfood_employee)
"xw" = (/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"xA" = (/obj/structure/chair/sofa/left{dir = 8},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"xB" = (/obj/machinery/smartfridge/food,/obj/item/reagent_containers/food/snacks/burger/cheese,/obj/item/reagent_containers/food/snacks/burger/chicken,/obj/item/reagent_containers/food/snacks/burger/bigbite,/obj/item/reagent_containers/food/snacks/burger/bearger,/obj/item/reagent_containers/food/snacks/burger/baconburger,/obj/item/reagent_containers/food/snacks/burger,/obj/item/reagent_containers/food/snacks/burger/plain,/obj/item/reagent_containers/food/snacks/burger/rib,/obj/item/reagent_containers/food/snacks/grown/chili,/obj/item/reagent_containers/food/snacks/grown/chili,/obj/item/reagent_containers/food/snacks/grown/chili,/obj/item/reagent_containers/food/snacks/grown/chili,/obj/item/reagent_containers/food/snacks/grown/chili,/obj/item/reagent_containers/food/snacks/grown/ash_flora/cactus_fruit,/obj/item/reagent_containers/food/snacks/eggmuffin,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_employee)
"xC" = (/obj/item/twohanded/required/kirbyplants,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"xC" = (/obj/item/kirbyplants,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"xD" = (/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals9"},/turf/open/floor/circuit/telecomms,/area/ruin/space/has_grav/fastfood_employee)
"xT" = (/obj/structure/closet/crate/trashcart,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/item/trash/can,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless,/area/space/nearstation)
"xV" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall,/area/ruin/space/has_grav/fastfood_employee)
@@ -319,7 +318,7 @@
"AR" = (/obj/machinery/disposal/bin{pixel_x = -8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/checker,/area/ruin/space/has_grav/fastfood_employee)
"AV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/turf/closed/wall,/area/ruin/space/has_grav/fastfood_employee)
"Ba" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/soysauce{pixel_x = -20},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_employee)
"Bc" = (/obj/structure/table/plaswood,/obj/item/reagent_containers/food/snacks/cakeslice/carrot{pixel_y = 10},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"Bc" = (/obj/item/reagent_containers/food/snacks/cakeslice/carrot{pixel_y = 10},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"Be" = (/obj/machinery/airalarm/syndicate{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/white/line{dir = 10; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee)
"Bi" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"Bp" = (/obj/item/shard,/turf/open/floor/plating/airless,/area/space/nearstation)
@@ -328,7 +327,6 @@
"BQ" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet{dir = 4},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"BT" = (/obj/machinery/door/airlock/public{dir = 4},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"BZ" = (/obj/structure/trash_pile,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating/airless,/area/space/nearstation)
"Cg" = (/mob/living/simple_animal/hostile/skeleton/bone_warrior,/turf/open/floor/plating/asteroid/airless,/area/space/nearstation)
"Ck" = (/obj/structure/disposalpipe/junction/yjunction{dir = 4},/obj/machinery/button/door{pixel_x = -28; id = "fastfood_kitchen"},/turf/open/floor/plasteel/cafeteria,/area/ruin/space/has_grav/fastfood_employee)
"Cr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 9; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee)
"Cy" = (/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_panel"; name = "steel pannel"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee)
@@ -368,7 +366,7 @@
"Gk" = (/obj/structure/safe,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c200,/obj/item/stack/spacecash/c200,/obj/item/stack/spacecash/c500,/obj/item/stack/spacecash/c500,/obj/item/stack/spacecash/c100,/obj/item/stack/spacecash/c100,/obj/item/stack/spacecash/c1,/obj/item/stack/spacecash/c1,/obj/item/kitchen/knife/rainbowknife,/turf/open/floor/wood,/area/ruin/space/has_grav/fastfood_employee)
"Gl" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"Gx" = (/obj/machinery/recycler,/obj/machinery/conveyor{dir = 8; id = "fastfood_trash"},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"GP" = (/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/stripes/line{dir = 6},/obj/item/trash/bird_seed,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless,/area/space/nearstation)
"GP" = (/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/stripes/line{dir = 6},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless,/area/space/nearstation)
"GW" = (/obj/machinery/door/airlock/public{dir = 4; name = "EMPLOYEE AREA"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_employee)
"Hr" = (/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"Ht" = (/obj/structure/closet/crate/large,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee)
@@ -383,16 +381,16 @@
"IL" = (/obj/structure/sign/warning/vacuum,/turf/closed/wall,/area/ruin/space/has_grav/fastfood_main)
"Ji" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"Jl" = (/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating/airless,/area/space/nearstation)
"JA" = (/obj/structure/table/plaswood,/obj/item/reagent_containers/food/drinks/mug/coco{pixel_x = -6; pixel_y = 6},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"JA" = (/obj/item/reagent_containers/food/drinks/mug/coco{pixel_x = -6; pixel_y = 6},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"JD" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/checker,/area/ruin/space/has_grav/fastfood_employee)
"JG" = (/obj/machinery/food_cart,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee)
"JH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 10; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee)
"JJ" = (/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"JM" = (/obj/machinery/door/poddoor/shutters/old/preopen{id = "fastfood_kitchen"},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_employee)
"JQ" = (/obj/item/twohanded/required/kirbyplants,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"JQ" = (/obj/item/kirbyplants,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"Kd" = (/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"Kh" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"Kk" = (/obj/item/toy/plush/primus{pixel_x = 16},/turf/open/floor/plating/asteroid/airless,/area/space/nearstation)
"Kk" = (/obj/item/toy/plush/gs13/primus{pixel_x = 16},/turf/open/floor/plating/asteroid/airless,/area/space/nearstation)
"Kp" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"Kq" = (/obj/machinery/atmospherics/pipe/manifold/supply,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee)
"Ks" = (/obj/effect/turf_decal/stripes/box,/obj/item/stack/marker_beacon{anchored = 1; icon_state = "markerburgundy-on"; light_color = "#FA644B"; light_power = 3; light_range = 2; name = "landing marker"; picked_color = "Burgundy"},/turf/open/floor/plating/airless,/area/space/nearstation)
@@ -410,7 +408,7 @@
"LE" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"LW" = (/obj/structure/table,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/reagent_containers/food/snacks/eggmuffin,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_employee)
"Ma" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"Me" = (/obj/item/twohanded/fireaxe/boneaxe,/turf/open/floor/plating/asteroid/airless,/area/space/nearstation)
"Me" = (/obj/item/fireaxe/boneaxe,/turf/open/floor/plating/asteroid/airless,/area/space/nearstation)
"Mi" = (/obj/structure/closet/crate/trashcart,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/stripes/line,/obj/item/trash/tray,/obj/item/trash/sosjerky,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless,/area/space/nearstation)
"Ml" = (/mob/living/simple_animal/hostile/retaliate/goat{name = "Petah"},/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 8; icon_state = "steel_decals9"},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_employee)
"Mr" = (/obj/structure/fans/tiny,/obj/machinery/door/poddoor/shutters,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_employee)
@@ -431,7 +429,7 @@
"NW" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/effect/turf_decal/stripes/white/line{dir = 4},/obj/effect/turf_decal/stripes/white/line{dir = 1},/turf/open/floor/circuit/telecomms,/area/ruin/space/has_grav/fastfood_employee)
"Oa" = (/obj/item/trash/blueberry_gum,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless,/area/space/nearstation)
"Oh" = (/obj/structure/sign/nanotrasen,/turf/closed/wall,/area/ruin/space/has_grav/fastfood_employee)
"OE" = (/obj/structure/table/plaswood,/obj/item/reagent_containers/food/snacks/burger/rib{pixel_y = 3; pixel_x = 1},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"OE" = (/obj/item/reagent_containers/food/snacks/burger/rib{pixel_y = 3; pixel_x = 1},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"OF" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/obj/machinery/modular_computer/console/preset/civilian{pixel_y = 10},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"OV" = (/obj/structure/chair/comfy/black{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"OY" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_main)
@@ -467,15 +465,15 @@
"RL" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"RV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_grid_diagonal"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_grid_diagonal"},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_employee)
"RZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_main)
"Sc" = (/obj/item/ammo_box/magazine/m45/kitchengun,/obj/item/gun/ballistic/automatic/pistol/m1911/kitchengun,/obj/structure/closet/wardrobe,/obj/item/clothing/neck/tie/black,/obj/item/clothing/under/suit_jacket/red,/obj/item/clothing/under/suit_jacket/navy,/obj/item/clothing/under/suit_jacket/burgundy,/obj/item/clothing/under/suit_jacket/charcoal,/obj/item/modular_computer/laptop/preset/civillian,/turf/open/floor/wood,/area/ruin/space/has_grav/fastfood_employee)
"Sc" = (/obj/item/ammo_box/magazine/m45/kitchengun,/obj/item/gun/ballistic/automatic/pistol/m1911/kitchengun,/obj/structure/closet/wardrobe,/obj/item/clothing/neck/tie/black,/obj/item/clothing/under/suit/red,/obj/item/clothing/under/suit/navy,/obj/item/clothing/under/suit/burgundy,/obj/item/clothing/under/suit/charcoal,/turf/open/floor/wood,/area/ruin/space/has_grav/fastfood_employee)
"Sm" = (/obj/machinery/door/window/brigdoor/southright{name = "Pete Containment Unit"},/obj/machinery/door/firedoor/border_only/closed{dir = 2; name = "Pete Containment Unit seal"},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_employee)
"Sq" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_employee)
"Sz" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"SE" = (/obj/structure/cursedfatfountain,/turf/open/floor/mineral/calorite/dance,/area/space/nearstation)
"SK" = (/obj/structure/table/plaswood,/obj/item/trash/tray,/obj/item/reagent_containers/food/snacks/burger/bigbite,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"SK" = (/obj/item/trash/tray,/obj/item/reagent_containers/food/snacks/burger/bigbite,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"SM" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"Te" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/sink/kitchen{dir = 4; pixel_x = -11; pixel_y = 5},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee)
"Tm" = (/obj/structure/double_bed,/obj/item/restraints/handcuffs/cable/zipties{pixel_y = 6},/obj/item/clothing/mask/pig/gag,/obj/item/clothing/mask/cowmask/gag,/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"Tm" = (/obj/structure/bed/double,/obj/item/restraints/handcuffs/cable/zipties{pixel_y = 6},/obj/item/clothing/mask/pig/gag,/obj/item/clothing/mask/cowmask/gag,/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"Tv" = (/obj/machinery/chem_dispenser/drinks/fullupgrade{dir = 8},/obj/item/reagent_containers/glass/beaker/lipoifier{pixel_x = -12; pixel_y = 5},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"TA" = (/obj/machinery/conveyor{dir = 2; id = "fastfood_trash"},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"TC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 8},/obj/item/trash/sosjerky,/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_main)
@@ -498,7 +496,7 @@
"Vd" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"Vm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{name = "Customer APC"; pixel_y = 28},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_main)
"Vo" = (/obj/machinery/gibber,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_employee)
"Vt" = (/obj/structure/table/plaswood,/obj/item/trash/plate{pixel_x = -5; pixel_y = 4},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"Vt" = (/obj/item/trash/plate{pixel_x = -5; pixel_y = 4},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"Vx" = (/obj/structure/sign/poster/official/cleanliness{pixel_x = 32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_main)
"Vy" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/mayonnaise,/obj/item/reagent_containers/food/condiment/sugar{pixel_x = -10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_employee)
"Vz" = (/obj/structure/sign/barsign,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/ruin/space/has_grav/fastfood_employee)
@@ -506,7 +504,7 @@
"VP" = (/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"VR" = (/obj/structure/closet/crate/trashcart,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/stripes/line,/obj/item/trash/sosjerky,/turf/open/floor/plating/airless,/area/space/nearstation)
"Wa" = (/obj/machinery/atmospherics/pipe/manifold/supply,/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals4"},/turf/open/floor/plasteel/dark/side{dir = 1},/area/ruin/space/has_grav/fastfood_employee)
"Wd" = (/obj/structure/table/plaswood,/obj/item/trash/plate{pixel_x = -5; pixel_y = 4},/obj/item/reagent_containers/food/drinks/drinkingglass/filled/cola{pixel_y = -10; pixel_x = -3},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"Wd" = (/obj/item/trash/plate{pixel_x = -5; pixel_y = 4},/obj/item/reagent_containers/food/drinks/drinkingglass/filled/cola{pixel_y = -10; pixel_x = -3},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main)
"Wg" = (/obj/machinery/conveyor_switch{id = "fastfood_trash"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"Wp" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main)
"Wr" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/warning/vacuum{pixel_y = -32},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
@@ -524,7 +522,7 @@
"Xy" = (/obj/machinery/door/airlock/public{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 8},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"XF" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -3; pixel_y = -4},/obj/item/pen,/obj/item/holosign_creator/restaurant{pixel_y = 10; pixel_x = 7},/obj/item/holosign_creator/closed{pixel_y = 20; pixel_x = 7},/turf/open/floor/carpet/black,/area/ruin/space/has_grav/fastfood_employee)
"XN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/ruin/space/has_grav/fastfood_employee)
"XP" = (/obj/structure/table/plaswood,/obj/item/flashlight/lamp,/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"XP" = (/obj/item/flashlight/lamp,/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
"XQ" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/old/preopen{id = "fastfood_kitchen"},/obj/item/reagent_containers/food/snacks/cubannachos,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_employee)
"Yk" = (/obj/machinery/light{dir = 1},/obj/machinery/airalarm/syndicate{pixel_y = 32},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"; dir = 1},/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals_central6"},/obj/structure/rack/shelf,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/crowbar/red,/obj/item/crowbar/red,/obj/item/crowbar/red,/obj/item/clothing/mask/gas,/obj/item/tank/internals/emergency_oxygen/engi,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_employee)
"Ys" = (/obj/machinery/door/airlock/public,/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee)
@@ -582,13 +580,13 @@ DhDhDhDhDhfYDhDhDhDhDhaWQmaWaWaWaWfYDhDhDhDhDhDhDhDhDhDhiqARaPbCJDJDJDGgaybdbdbd
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhQPQPQPQPQPebVziqpkbHWSDVbIJMiqauXQbJaupUlbDEiqyzXtagaUiqXniqiqiqiqiqiqiqDhDhDhfYfYfYfYDhDhfYfYDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhQPhIuVPlNGdUnmnxnxnxyunHENbcOFENjJnxnxxgmzlHiqbWlsKdfRiqXnLDVbiqtbMyNWiqDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhQPaBNaNaaEopfvHrapapRLDFDFuMDFDFKpapapRqWplmiqVdCGTFBiiqDwsYKddlxDgAgIiqDhDhDhDhDhDhDhfYfYDhDhDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhQPbFbpbptjeqwRcEzKHHfipxDXPNfibbDXHHzKtJRtwJiqrsysbKKdiqXnvqVbiqIafcEuiqDhDhDhDhDhDhfYfYfYfYDhDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhQPQPQPQPabNdkqcEVtnNbNpxvIbLbNOEvIHLJAtJRtOVLkQPQPiqYsiqXniqiqiqiqiqiqiqDhDhDhDhDhDhyKfYfYfYDhDhfYDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhaiDhDhOYuSUqwkcEaLbMMDBcxAHHMDpxxAPNaLtJqdiBPUVmRZMaacWrGlaVaVpGtLjhFiiqDhDhDhDhDhDhQmaWaWQmDhDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhQPbFbpbptjeqwRcEzKHHfieEDXPNfibbDXHHzKtJRtwJiqrsysbKKdiqXnvqVbiqIafcEuiqDhDhDhDhDhDhfYfYfYfYDhDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhQPQPQPQPabNdkqcEVtnNbNeEvIbLbNOEvIHLJAtJRtOVLkQPQPiqYsiqXniqiqiqiqiqiqiqDhDhDhDhDhDhyKfYfYfYDhDhfYDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhaiDhDhOYuSUqwkcEaLbMMDBcxAHHMDeExAPNaLtJqdiBPUVmRZMaacWrGlaVaVpGtLjhFiiqDhDhDhDhDhDhQmaWaWQmDhDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhaiDhDhOYbRVPwkxwaFaFaFaFaFkBaFaFaFaFaFajwRYXQPQPQPQPQPQPeSiqiqzhWgEeTAiqDhDhDhDhDhfYZfaXfYfYDhDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhaiDhDhOYxaVPEbJJbxbxbxbxbxujbxbxbxbxugcqtdSzaTfxqLqLUgQPKdfNiqBQnoGxTKiqDhDhDhDhDhfYfYfYfYDhDhDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhaiDhDhQPrJKhiKcENGqEfiSKDXwGfiWdDXsyrxSMJiEEFaQMTCjvPeQPkrOhiqiqiqiqiqiqDhDhDhDhDhfYfYfYfYDhDhDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhaiDhDhQPaOcDwRiZabwXbNpxvILlbNpxvIAfPFfFwNeiQPQPQPRxVxQPkmfAarDhDhDhDhaiDhDhDhDhDhfYfYfYDhDhDhDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhaiDhDhQPaOcDwRiZabwXbNeEvILlbNeEvIAfPFfFwNeiQPQPQPRxVxQPkmfAarDhDhDhDhaiDhDhDhDhDhfYfYfYDhDhDhDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhbuaiaiarvGLkQPQPlgPWQPQPQPOYOYOYQPOYOYOYQPOYOYOYQPQPrTBTUxmBQParararDhDhDhDhaiDhDhDhDhDhDhfYDhDhDhDhDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDharkmakaIYLvbPVPqQPaiDhDhDhaiDhDhDhaiDhDhDhaiQPQPQPUxjVQPDhDhaiDhDhDhDhaiDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDharkmakiHEduZLjtHQPaiDhDhDhaiDhDhDhaiDhDhDhaiQPFtBTUxmBQPDhDhaiDhDhDhDhaiDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDh
@@ -607,10 +605,10 @@ DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhfYfYaWyKadQmDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhfYfYfYfYaWaWDhDhfYDhDhDhDhDhDhDhfYfYDhDhDhDhDhDhDhDhfYfYfYfYfYfYyKanaWaWMeaWaWaWaWaWyKfYfYfYfYfYDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhfYfYfYfYaWadfYDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhfYfYfYfYfYfYaWaWaWaWaXaWaWanaWaWfYfYfYfYfYfYDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhfYfYfYfYaXfYDhDhDhDhDhDhDhDhDhDhDhDhfYfYfYfYfYfYHUSEHUfYaWaWaWaWaWaWaWaWaWaWaWfYfYfYfYDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhfYfYfYfYfYfYDhDhDhDhDhDhDhDhDhDhDhDhDhfYfYfYfYUJaWaWaWaWaWaWyKCgaWaWaWaWyKfYfYfYfYfYDhDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhfYfYfYfYfYfYDhDhDhDhDhDhDhDhDhDhDhDhDhfYfYfYfYUJaWaWaWaWaWaWyKaWaWaWaWaWyKfYfYfYfYfYDhDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhfYfYfYDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhfYfYaXaWaWaWaWanaXaWaWaWaWaWaXfYfYfYfYfYfYfYDhDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhfYfYfYfYfYfYfYaWaWaWaWaWaWaWaWanaWaWaWfYfYfYfYfYfYfYDhDhDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhfYfYfYfYfYfYfYfYyKaWaWanCgaWaWaWaWaWfYhMhMfYfYfYfYfYDhDhDhDhDhDhDhDhDhDhDhDh
DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhfYfYfYfYfYfYfYfYyKaWaWanaWaWaWaWaWaWfYhMhMfYfYfYfYfYDhDhDhDhDhDhDhDhDhDhDhDh
DhDhDhDhfYfYDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhfYfYfYfYfYfYfYfYfYfYaXyKaWaWaWfYfYfYfYfYzmfYfYDhDhDhDhDhDhDhDhDhDhDhDhDhDhDh
DhDhDhfYfYfYfYDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhfYfYfYfYfYfYfYfYfYfYfYfYfYfYfYDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDh
DhDhDhfYfYDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhfYfYfYfYfYfYfYfYfYDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDh
+4 -4
View File
@@ -8,7 +8,7 @@
"ah" = (/obj/machinery/door/airlock{name = "Toilet 2"},/turf/open/floor/plasteel/dark,/area/diner)
"ai" = (/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
"aj" = (/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel/dark,/area/diner)
"ak" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/diner)
"ak" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/diner)
"al" = (/obj/machinery/door/airlock{name = "Unisex Bathroom"},/turf/open/floor/plasteel/dark,/area/diner)
"am" = (/obj/structure/lattice/catwalk,/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/turf/open/space/basic,/area/space/nearstation)
"an" = (/obj/structure/lattice/catwalk,/obj/structure/railing{dir = 1},/turf/open/space/basic,/area/space/nearstation)
@@ -93,7 +93,7 @@
"dF" = (/obj/machinery/vending/kink,/turf/open/floor/plasteel/dark,/area/diner)
"ef" = (/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/diner)
"eq" = (/obj/structure/chair/comfy/beige{dir = 1},/turf/open/floor/carpet/black,/area/diner)
"eM" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel{icon_state = "floor_trim"},/area/diner)
"eM" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel{icon_state = "floor_trim"},/area/diner)
"fD" = (/obj/structure/table,/obj/item/ashtray,/obj/item/cigbutt,/turf/open/floor/plasteel{icon_state = "floor_trim"},/area/diner)
"hM" = (/obj/effect/decal/cleanable/cobweb,/turf/open/floor/circuit,/area/diner)
"ie" = (/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/diner)
@@ -143,7 +143,7 @@
"HH" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/carpet/black,/area/diner)
"Ir" = (/obj/structure/chair/comfy/beige,/turf/open/floor/carpet/black,/area/diner)
"Ji" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "External Access"; req_access_txt = "13"},/turf/open/floor/plating,/area/diner)
"JA" = (/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/diner)
"JA" = (/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/diner)
"LB" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/enzyme{layer = 5; pixel_x = -5; pixel_y = 6},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -3},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/open/floor/plasteel/cafeteria,/area/diner)
"MD" = (/obj/structure/chair/sofa/left{dir = 4},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/carpet/black,/area/diner)
"OE" = (/turf/open/floor/plasteel{icon_state = "floor_trim"},/area/diner)
@@ -152,7 +152,7 @@
"QD" = (/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_panel"; name = "steel pannel"},/obj/machinery/button/door{id = "kitchen"; name = "Diner Shutters Control"; pixel_x = 5; pixel_y = -23; req_access_txt = "28"; tag = dshutters},/obj/machinery/processor,/turf/open/floor/plasteel/cafeteria,/area/diner)
"QM" = (/obj/structure/mopbucket,/obj/item/mop,/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel{icon_state = "floor_trim"},/area/diner)
"QP" = (/obj/structure/chair/stool,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plasteel/dark,/area/diner)
"Rt" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/diner)
"Rt" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/diner)
"Rx" = (/obj/structure/table/plasmaglass,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_y = 10},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 5; pixel_y = 4},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/carpet/black,/area/diner)
"Sc" = (/obj/structure/table/plasmaglass,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/carpet/black,/area/diner)
"Tm" = (/obj/machinery/door/window/southright{base_state = "left"; dir = 8; icon_state = "left"; name = "Interior Door"; req_access_txt = "12"},/turf/open/floor/plasteel/dark,/area/diner)
+7
View File
@@ -3904,14 +3904,20 @@
#include "code\modules\zombie\items.dm"
#include "code\modules\zombie\organs.dm"
#include "GainStation13\code\clothing\accessory.dm"
#include "GainStation13\code\clothing\backpacks.dm"
#include "GainStation13\code\clothing\calorite_collar.dm"
#include "GainStation13\code\clothing\fat_mask.dm"
#include "GainStation13\code\clothing\haydee_suit.dm"
#include "GainStation13\code\clothing\head.dm"
#include "GainStation13\code\clothing\shoes.dm"
#include "GainStation13\code\clothing\suits.dm"
#include "GainStation13\code\clothing\under.dm"
#include "GainStation13\code\datums\lavaland_ruins.dm"
#include "GainStation13\code\datums\ruins.dm"
#include "GainStation13\code\datums\components\fattening_door.dm"
#include "GainStation13\code\datums\diseases\advance\presets.dm"
#include "GainStation13\code\datums\diseases\advance\symptoms\berry.dm"
#include "GainStation13\code\datums\diseases\advance\symptoms\weight_gain.dm"
#include "GainStation13\code\datums\mutations\fatfang.dm"
#include "GainStation13\code\datums\mutations\radfat.dm"
#include "GainStation13\code\datums\status_effects\fatstun.dm"
@@ -3930,6 +3936,7 @@
#include "GainStation13\code\game\objects\items\toys.dm"
#include "GainStation13\code\game\objects\items\storage\bags.dm"
#include "GainStation13\code\game\objects\structures\medikit.dm"
#include "GainStation13\code\game\objects\structures\statues.dm"
#include "GainStation13\code\game\turfs\closed.dm"
#include "GainStation13\code\game\turfs\open.dm"
#include "GainStation13\code\machinery\adipoelectric_generator.dm"