diff --git a/GainStation13/code/clothing/backpacks.dm b/GainStation13/code/clothing/backpacks.dm new file mode 100644 index 0000000000..f3e5762774 --- /dev/null +++ b/GainStation13/code/clothing/backpacks.dm @@ -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" diff --git a/GainStation13/code/clothing/head.dm b/GainStation13/code/clothing/head.dm index f76cff6bc5..9cffc86076 100644 --- a/GainStation13/code/clothing/head.dm +++ b/GainStation13/code/clothing/head.dm @@ -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 + diff --git a/GainStation13/code/clothing/shoes.dm b/GainStation13/code/clothing/shoes.dm new file mode 100644 index 0000000000..c4845b5fdd --- /dev/null +++ b/GainStation13/code/clothing/shoes.dm @@ -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" diff --git a/GainStation13/code/clothing/suits.dm b/GainStation13/code/clothing/suits.dm index e01010ff68..5f3ba034cd 100644 --- a/GainStation13/code/clothing/suits.dm +++ b/GainStation13/code/clothing/suits.dm @@ -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" diff --git a/GainStation13/code/clothing/under.dm b/GainStation13/code/clothing/under.dm new file mode 100644 index 0000000000..1966c85e90 --- /dev/null +++ b/GainStation13/code/clothing/under.dm @@ -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" diff --git a/GainStation13/code/datums/diseases/advance/presets.dm b/GainStation13/code/datums/diseases/advance/presets.dm new file mode 100644 index 0000000000..bc4c24017a --- /dev/null +++ b/GainStation13/code/datums/diseases/advance/presets.dm @@ -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 diff --git a/GainStation13/code/datums/diseases/advance/symptoms/weight_gain.dm b/GainStation13/code/datums/diseases/advance/symptoms/weight_gain.dm new file mode 100644 index 0000000000..e81f259520 --- /dev/null +++ b/GainStation13/code/datums/diseases/advance/symptoms/weight_gain.dm @@ -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, "[pick("You feel oddly full...", "You feel more plush...", "You feel more huggable...", "You hear an odd gurgle from your stomach")]") + else + to_chat(M, "[pick("You feel your body churn...", "You feel heavier...", "You hear an ominous gurgle from your belly...", "You feel bulkier...")]") + 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) diff --git a/GainStation13/code/datums/lavaland_ruins.dm b/GainStation13/code/datums/lavaland_ruins.dm new file mode 100644 index 0000000000..4f286d490f --- /dev/null +++ b/GainStation13/code/datums/lavaland_ruins.dm @@ -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 diff --git a/GainStation13/code/game/objects/structures/statues.dm b/GainStation13/code/game/objects/structures/statues.dm new file mode 100644 index 0000000000..f9024b039f --- /dev/null +++ b/GainStation13/code/game/objects/structures/statues.dm @@ -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" diff --git a/GainStation13/code/game/objects/turfs.dm b/GainStation13/code/game/objects/turfs.dm index 30787e09fa..3abf5ba0a7 100644 --- a/GainStation13/code/game/objects/turfs.dm +++ b/GainStation13/code/game/objects/turfs.dm @@ -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 diff --git a/GainStation13/code/modules/mapping/areas.dm b/GainStation13/code/modules/mapping/areas.dm index 1af303ee57..97efdc7714 100644 --- a/GainStation13/code/modules/mapping/areas.dm +++ b/GainStation13/code/modules/mapping/areas.dm @@ -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" diff --git a/GainStation13/code/structures/chair.dm b/GainStation13/code/structures/chair.dm index ad7f4f1fef..4382e5a81d 100644 --- a/GainStation13/code/structures/chair.dm +++ b/GainStation13/code/structures/chair.dm @@ -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) diff --git a/GainStation13/icons/mob/back.dmi b/GainStation13/icons/mob/back.dmi new file mode 100644 index 0000000000..736952395b Binary files /dev/null and b/GainStation13/icons/mob/back.dmi differ diff --git a/GainStation13/icons/mob/feet.dmi b/GainStation13/icons/mob/feet.dmi new file mode 100644 index 0000000000..ee7c041345 Binary files /dev/null and b/GainStation13/icons/mob/feet.dmi differ diff --git a/GainStation13/icons/mob/feet_digi.dmi b/GainStation13/icons/mob/feet_digi.dmi new file mode 100644 index 0000000000..c202e1083f Binary files /dev/null and b/GainStation13/icons/mob/feet_digi.dmi differ diff --git a/GainStation13/icons/mob/head.dmi b/GainStation13/icons/mob/head.dmi index 813f0f2979..6409424a69 100644 Binary files a/GainStation13/icons/mob/head.dmi and b/GainStation13/icons/mob/head.dmi differ diff --git a/GainStation13/icons/mob/suit.dmi b/GainStation13/icons/mob/suit.dmi new file mode 100644 index 0000000000..399b77b549 Binary files /dev/null and b/GainStation13/icons/mob/suit.dmi differ diff --git a/GainStation13/icons/mob/uniform.dmi b/GainStation13/icons/mob/uniform.dmi new file mode 100644 index 0000000000..afd5f54050 Binary files /dev/null and b/GainStation13/icons/mob/uniform.dmi differ diff --git a/GainStation13/icons/obj/clothing/shoes.dmi b/GainStation13/icons/obj/clothing/shoes.dmi new file mode 100644 index 0000000000..7815d52d6b Binary files /dev/null and b/GainStation13/icons/obj/clothing/shoes.dmi differ diff --git a/GainStation13/icons/obj/clothing/suits.dmi b/GainStation13/icons/obj/clothing/suits.dmi new file mode 100644 index 0000000000..85bc48f4ff Binary files /dev/null and b/GainStation13/icons/obj/clothing/suits.dmi differ diff --git a/GainStation13/icons/obj/clothing/uniforms.dmi b/GainStation13/icons/obj/clothing/uniforms.dmi new file mode 100644 index 0000000000..e62579c866 Binary files /dev/null and b/GainStation13/icons/obj/clothing/uniforms.dmi differ diff --git a/GainStation13/icons/obj/structure/flora.dm b/GainStation13/icons/obj/structure/flora.dm index 62527bdb95..f2248f4d6b 100644 --- a/GainStation13/icons/obj/structure/flora.dm +++ b/GainStation13/icons/obj/structure/flora.dm @@ -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) diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_blueberryarea.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_blueberryarea.dmm new file mode 100644 index 0000000000..5fb0385c6a --- /dev/null +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_blueberryarea.dmm @@ -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 +"} diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_caloritealtar.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_caloritealtar.dmm new file mode 100644 index 0000000000..9da95ae05c --- /dev/null +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_caloritealtar.dmm @@ -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 +"} diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_caloriteshrine.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_caloriteshrine.dmm new file mode 100644 index 0000000000..c68eb24f9c --- /dev/null +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_caloriteshrine.dmm @@ -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 +"} diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_snack_store.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_snack_store.dmm new file mode 100644 index 0000000000..4254e63127 --- /dev/null +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_snack_store.dmm @@ -0,0 +1,1547 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/item/trash/popcorn, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"ab" = ( +/obj/machinery/vending/gato, +/obj/structure/sign/poster/contraband/robust_softdrinks{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"ac" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"ad" = ( +/obj/structure/table, +/obj/item/stack/spacecash/c1, +/obj/item/stack/spacecash/c1, +/obj/item/stack/spacecash/c20{ + pixel_y = 10 + }, +/obj/item/coin/gold, +/obj/machinery/camera{ + c_tag = "Security - Prison Port"; + dir = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"ae" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"af" = ( +/turf/open/floor/concrete, +/area/lavaland/surface/outdoors) +"ag" = ( +/obj/machinery/smartfridge/food, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"ah" = ( +/obj/item/cardboard_cutout{ + icon_state = "cutout_viva"; + pixel_x = 6 + }, +/obj/item/cardboard_cutout{ + icon_state = "cutout_wizard"; + pixel_x = -10 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"aj" = ( +/obj/structure/chair/stool/brass, +/turf/open/floor/concrete, +/area/ruin/powered/snackstore) +"ak" = ( +/obj/item/cardboard_cutout{ + icon_state = "cutout_lusty" + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"al" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/filingcabinet, +/obj/structure/fluff/paper, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"an" = ( +/obj/machinery/computer/slot_machine, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"ap" = ( +/obj/machinery/vending/kink, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"aq" = ( +/obj/machinery/vending/snack/random, +/obj/structure/sign/poster/contraband/shamblers_juice{ + pixel_y = -32 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"as" = ( +/obj/structure/sign/poster/contraband/energy_swords{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"au" = ( +/obj/structure/closet, +/obj/item/gun/ballistic/shotgun, +/obj/item/ammo_casing/shotgun/beanbag, +/obj/item/ammo_casing/shotgun/beanbag, +/obj/item/ammo_casing/shotgun/beanbag, +/obj/item/ammo_casing/shotgun, +/obj/item/ammo_casing/shotgun/buckshot, +/obj/item/ammo_casing/shotgun/buckshot, +/obj/item/storage/firstaid, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"aw" = ( +/obj/machinery/vending/coffee, +/obj/structure/sign/poster/contraband/eat{ + pixel_x = -32 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"ax" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"az" = ( +/turf/open/floor/concrete, +/area/ruin/powered/snackstore) +"aB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"aF" = ( +/obj/machinery/door/airlock/public, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"aJ" = ( +/obj/machinery/vending/games, +/obj/structure/sign/poster/contraband/space_cola{ + pixel_y = -32 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"aK" = ( +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"aL" = ( +/obj/machinery/computer/arcade/orion_trail{ + dir = 4 + }, +/obj/machinery/camera{ + dir = 1 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"aO" = ( +/turf/template_noop, +/area/template_noop) +"aP" = ( +/obj/structure/ore_box, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"aS" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/freezer, +/area/ruin/powered/snackstore) +"aT" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/ruin/powered/snackstore) +"aU" = ( +/obj/machinery/computer/arcade/amputation{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/smoke{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"aV" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"aX" = ( +/obj/structure/sign/poster/contraband/eat{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"aY" = ( +/turf/closed/wall, +/area/ruin/powered/snackstore) +"bb" = ( +/obj/machinery/door/window/southright, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"bc" = ( +/obj/machinery/vending/mealdor, +/obj/structure/sign/poster/contraband/donut_corp{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"be" = ( +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"bg" = ( +/obj/structure/rack/shelf, +/obj/structure/rack/shelf, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"bh" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/concrete, +/area/ruin/powered/snackstore) +"bi" = ( +/obj/item/cigbutt{ + pixel_x = -10; + pixel_y = -10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/concrete, +/area/ruin/powered/snackstore) +"bk" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"bl" = ( +/obj/structure/rack/shelf, +/obj/item/reagent_containers/food/snacks/popcorn, +/obj/item/reagent_containers/food/snacks/popcorn{ + pixel_x = -6 + }, +/obj/item/reagent_containers/food/snacks/popcorn{ + pixel_x = 7 + }, +/obj/machinery/light, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"bm" = ( +/obj/structure/rack/shelf, +/obj/structure/sign/poster/contraband/corn_oil{ + pixel_x = 32 + }, +/obj/item/reagent_containers/food/snacks/cannedpeaches, +/obj/item/reagent_containers/food/snacks/cannedpeaches{ + pixel_x = -4 + }, +/obj/item/reagent_containers/food/snacks/cannedpeaches{ + pixel_x = 4 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"bn" = ( +/turf/open/floor/plasteel/freezer, +/area/ruin/powered/snackstore) +"bp" = ( +/obj/item/cardboard_cutout{ + icon_state = "cutout_clown" + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"bq" = ( +/obj/structure/rack, +/obj/item/camera, +/obj/item/camera_film, +/obj/item/camera_film, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"bu" = ( +/obj/structure/sign/poster/contraband/pwr_game{ + pixel_x = 32 + }, +/obj/item/trash/raisins, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"bv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"bx" = ( +/obj/structure/rack/shelf, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"bA" = ( +/obj/structure/sign/poster/official/cohiba_robusto_ad{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"bB" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/newspaper{ + pixel_x = 13; + pixel_y = -7 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/powered/snackstore) +"bF" = ( +/obj/structure/rack/shelf, +/obj/item/vending_refill/kink, +/obj/item/vending_refill/cigarette{ + pixel_y = 4 + }, +/obj/item/vending_refill/cola{ + pixel_y = 4 + }, +/obj/item/vending_refill/boozeomat, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"bG" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"bH" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"bI" = ( +/obj/structure/rack/shelf, +/obj/structure/rack/shelf, +/obj/item/reagent_containers/food/drinks/soda_cans/grey_bull{ + pixel_x = -4 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/grey_bull{ + pixel_x = -8 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/monkey_energy{ + pixel_x = 4 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/monkey_energy{ + pixel_x = 8 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"bM" = ( +/obj/structure/closet/crate/secure/loot, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"bT" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/fullupgrade{ + dir = 1 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"bW" = ( +/obj/machinery/vending/cola/shamblers, +/turf/open/floor/concrete, +/area/ruin/powered/snackstore) +"bX" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"bZ" = ( +/obj/machinery/vending/boozeomat/all_access, +/obj/structure/sign/poster/contraband/red_rum{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"ca" = ( +/obj/structure/rack/shelf, +/obj/item/reagent_containers/food/snacks/cheesiehonkers, +/obj/item/reagent_containers/food/snacks/cheesiehonkers{ + pixel_x = -4 + }, +/obj/item/reagent_containers/food/snacks/cheesiehonkers{ + pixel_x = 4 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"ci" = ( +/obj/item/trash/boritos, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/concrete, +/area/lavaland/surface/outdoors) +"cj" = ( +/obj/structure/rack/shelf, +/obj/item/storage/bag/trash/bluespace, +/obj/item/mop/advanced, +/obj/item/stack/sheet/cardboard, +/obj/item/stack/sheet/cardboard, +/obj/item/stack/sheet/cardboard, +/obj/item/stack/sheet/cardboard, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"cl" = ( +/obj/structure/fluff/paper/stack, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"cp" = ( +/obj/machinery/door/window/survival_pod{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"cs" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"cx" = ( +/obj/effect/mapping_helpers/no_lava, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"cC" = ( +/obj/machinery/vending/cola/starkist, +/turf/open/floor/concrete, +/area/ruin/powered/snackstore) +"cD" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/public, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"cG" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/concrete, +/area/ruin/powered/snackstore) +"cH" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -5 + }, +/obj/item/pen, +/obj/item/folder/red{ + pixel_x = 16; + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"eo" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/powered/snackstore) +"eE" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/item/trash/pistachios, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"eF" = ( +/obj/machinery/door/airlock/public, +/turf/open/floor/plasteel/freezer, +/area/ruin/powered/snackstore) +"fI" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"fP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/off, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"ga" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/concrete, +/area/ruin/powered/snackstore) +"gU" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"ha" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/concrete, +/area/ruin/powered/snackstore) +"ix" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/seeds/cannabis/rainbow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/concrete, +/area/ruin/powered/snackstore) +"iL" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/sillycup/smallcarton, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"iO" = ( +/obj/structure/rack, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/box/matches, +/obj/item/lighter, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"jn" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"mG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/concrete, +/area/lavaland/surface/outdoors) +"mK" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor/shutters, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"np" = ( +/obj/item/radio{ + pixel_x = 8 + }, +/turf/open/floor/concrete, +/area/lavaland/surface/outdoors) +"oC" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"pb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"pg" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen, +/obj/machinery/computer/security/telescreen{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"pQ" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/carneburrito{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/snacks/taco{ + pixel_x = 5 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"qt" = ( +/obj/machinery/camera{ + c_tag = "Courtroom - Aft"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"qD" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"sq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/freezer, +/area/ruin/powered/snackstore) +"tc" = ( +/obj/structure/rack/shelf, +/obj/item/reagent_containers/food/snacks/chips, +/obj/item/reagent_containers/food/snacks/chips{ + pixel_x = -4 + }, +/obj/item/reagent_containers/food/snacks/chips{ + pixel_x = 4 + }, +/obj/machinery/camera, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"uq" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/powered/snackstore) +"uC" = ( +/obj/structure/rack/shelf, +/obj/item/reagent_containers/food/snacks/syndicake, +/obj/item/reagent_containers/food/snacks/syndicake{ + pixel_y = -4 + }, +/obj/item/reagent_containers/food/snacks/syndicake{ + pixel_y = 4 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"uO" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/concrete, +/area/ruin/powered/snackstore) +"vf" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/concrete, +/area/ruin/powered/snackstore) +"xX" = ( +/obj/structure/rack/shelf, +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_x = -4 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_x = -8 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb{ + pixel_x = 4 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb{ + pixel_x = 8 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"yU" = ( +/obj/machinery/computer/security/telescreen/entertainment, +/turf/closed/wall, +/area/ruin/powered/snackstore) +"zP" = ( +/obj/item/cigbutt, +/turf/open/floor/concrete, +/area/ruin/powered/snackstore) +"Al" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"AT" = ( +/obj/structure/safe, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c200, +/obj/item/stack/spacecash/c200, +/obj/item/stack/spacecash/c100, +/obj/item/clothing/mask/chameleon, +/obj/item/clothing/head/chameleon, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"Bp" = ( +/obj/machinery/door/airlock/public, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"BC" = ( +/obj/structure/rack, +/obj/item/toy/cards/deck/syndicate{ + pixel_y = 6 + }, +/obj/item/toy/plush/random{ + pixel_x = 4 + }, +/obj/item/toy/plush/random{ + pixel_x = -4 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"Dz" = ( +/obj/structure/rack/shelf, +/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko{ + pixel_x = 4 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko{ + pixel_x = 8 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/tonic{ + pixel_x = -4 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/tonic{ + pixel_x = -8 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"EY" = ( +/obj/structure/rack/shelf, +/obj/structure/rack/shelf, +/obj/item/reagent_containers/food/drinks/soda_cans/pwr_game{ + pixel_x = -4 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/pwr_game{ + pixel_x = -8 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/shamblers{ + pixel_x = 4 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/shamblers{ + pixel_x = 8 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"Ff" = ( +/obj/structure/rack/shelf, +/obj/item/reagent_containers/food/snacks/cornchips, +/obj/item/reagent_containers/food/snacks/cornchips{ + pixel_x = -4 + }, +/obj/item/reagent_containers/food/snacks/cornchips{ + pixel_x = 4 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"HD" = ( +/obj/item/trash/semki, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"HK" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen, +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"Jq" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"Kz" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"Lx" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen, +/obj/item/stack/spacecash/c1{ + pixel_y = 8; + pixel_x = 3 + }, +/obj/item/coin/silver{ + pixel_x = -8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"Nj" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"Nm" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/powered/snackstore) +"NQ" = ( +/obj/structure/rack/shelf, +/obj/item/reagent_containers/food/snacks/candy, +/obj/item/reagent_containers/food/snacks/candy{ + pixel_x = -4 + }, +/obj/item/reagent_containers/food/snacks/candy{ + pixel_x = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"OH" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/concrete, +/area/lavaland/surface/outdoors) +"Po" = ( +/obj/item/trash/candy, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"Qg" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"QR" = ( +/obj/machinery/door/window/survival_pod{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"Rg" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/effect/mapping_helpers/no_lava, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Rt" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/trash/fatoray_scrap1, +/turf/open/floor/concrete, +/area/ruin/powered/snackstore) +"RA" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/plate, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"Ux" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"VJ" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mob_spawn/human/skeleton/alive{ + name = "Bob" + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/powered/snackstore) +"VL" = ( +/obj/item/cigbutt{ + pixel_x = -1 + }, +/obj/item/cigbutt{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/cigbutt{ + pixel_y = 8; + pixel_x = -5 + }, +/obj/item/cigbutt{ + pixel_x = 9; + pixel_y = -6 + }, +/turf/open/floor/concrete, +/area/ruin/powered/snackstore) +"Wy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/sosjerky, +/turf/open/floor/plasteel, +/area/ruin/powered/snackstore) +"Zb" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) +"Zi" = ( +/obj/structure/rack/shelf, +/obj/item/reagent_containers/food/snacks/no_raisin, +/obj/item/reagent_containers/food/snacks/no_raisin{ + pixel_x = -8 + }, +/obj/item/reagent_containers/food/snacks/no_raisin{ + pixel_x = 9 + }, +/turf/open/floor/mineral/titanium, +/area/ruin/powered/snackstore) +"ZG" = ( +/obj/structure/closet/crate/freezer, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/ruin/powered/snackstore) + +(1,1,1) = {" +aO +aO +cx +cx +aO +aO +aO +cx +cx +aO +aO +aO +cx +cx +cx +cx +cx +cx +aO +aO +cx +cx +cx +cx +cx +cx +aO +aO +"} +(2,1,1) = {" +aO +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +Rg +cx +cx +cx +af +cx +af +mG +cx +cx +cx +cx +af +cx +cx +aO +"} +(3,1,1) = {" +aO +cx +Rg +cx +af +np +cx +cx +cx +cx +cx +cx +cx +cx +aY +aY +aY +aY +aY +aY +aY +aY +aT +aT +aY +cx +cx +cx +"} +(4,1,1) = {" +cx +cx +cx +mG +aY +aY +aY +aY +aY +cx +af +mG +cx +af +aY +Kz +ag +ag +cs +aa +aw +bc +pQ +iL +aT +cx +cx +cx +"} +(5,1,1) = {" +cx +cx +cx +mG +aT +an +aU +aL +aY +aY +aT +aT +aT +aY +yU +QR +cp +cp +cp +bG +ac +ac +RA +bT +aT +af +cx +aO +"} +(6,1,1) = {" +aO +cx +cx +af +aT +HD +Wy +bv +bv +aK +aK +aK +aK +jn +bv +aK +aK +aK +aK +bv +bv +bv +qD +bH +aY +mG +cx +aO +"} +(7,1,1) = {" +cx +cx +cx +mG +aT +ah +aK +aK +aK +aX +bv +fI +Ux +fI +gU +bp +xX +Nj +iO +bg +Dz +aK +aK +aK +aY +af +cx +aO +"} +(8,1,1) = {" +cx +cx +cx +af +aY +aY +ae +ae +aY +aY +aY +pg +Lx +aV +Jq +aK +Po +aK +aK +bv +bv +aK +qD +aq +aY +cx +cx +cx +"} +(9,1,1) = {" +aO +aO +cx +cx +vf +az +ga +az +ga +aY +bZ +aB +be +HK +Jq +ak +Zi +bq +BC +bI +EY +aK +Qg +ab +aY +cx +Rg +cx +"} +(10,1,1) = {" +aO +cx +cx +cx +cx +cx +af +af +ga +aY +ad +be +aB +bb +Jq +bv +aK +aK +aK +bA +qt +aK +eE +aJ +aY +cx +cx +cx +"} +(11,1,1) = {" +aO +aO +cx +cx +cx +cx +af +af +cC +aY +aY +yU +aF +aY +tc +aK +uC +aK +bx +aY +aY +Bp +aY +aY +aY +af +cx +aO +"} +(12,1,1) = {" +aO +aO +aO +aO +cx +cx +cx +af +bW +aY +au +cl +aB +aY +NQ +aK +Ff +bv +bl +aY +aS +bn +eF +uq +aY +cx +cx +aO +"} +(13,1,1) = {" +aO +aO +aO +cx +cx +cx +ha +ga +cG +aY +cH +bX +aB +aY +ca +as +bm +bu +ap +aY +Nm +bn +aY +aY +aY +mG +cx +aO +"} +(14,1,1) = {" +aO +aO +aO +aO +cx +cx +aY +aY +aY +aY +ax +al +aB +aY +aY +aY +aY +aY +aY +aY +eo +sq +eF +bB +aY +mG +cx +aO +"} +(15,1,1) = {" +aO +aO +aO +cx +cx +cx +aY +pb +fP +aY +oC +Al +be +cj +bF +aY +bh +aj +VL +aY +aY +aY +aY +VJ +aY +af +cx +aO +"} +(16,1,1) = {" +aO +cx +cx +cx +cx +mG +aY +AT +be +aF +aB +aB +be +aB +aB +cD +ga +bi +zP +aY +ix +uO +aY +aY +aY +cx +cx +cx +"} +(17,1,1) = {" +aO +aO +cx +cx +cx +mG +aY +Zb +aB +aY +bM +be +aP +bk +ZG +aY +Rt +mG +af +mG +ci +af +af +af +cx +cx +cx +cx +"} +(18,1,1) = {" +aO +aO +aO +cx +cx +cx +aY +aY +aY +aY +aY +mK +mK +aY +aY +aY +bh +af +af +cx +cx +cx +cx +cx +cx +cx +cx +aO +"} +(19,1,1) = {" +aO +aO +aO +aO +cx +mG +cx +cx +cx +af +cx +OH +OH +mG +af +cx +cx +cx +cx +cx +cx +cx +aO +aO +cx +cx +aO +aO +"} +(20,1,1) = {" +aO +aO +aO +aO +aO +aO +aO +cx +cx +cx +cx +aO +aO +aO +cx +aO +cx +cx +cx +cx +cx +aO +aO +aO +aO +aO +aO +aO +"} diff --git a/_maps/RandomRuins/SpaceRuins/quantum_hub.dmm b/_maps/RandomRuins/SpaceRuins/quantum_hub.dmm index 4abddbbcd1..d8c237688b 100644 --- a/_maps/RandomRuins/SpaceRuins/quantum_hub.dmm +++ b/_maps/RandomRuins/SpaceRuins/quantum_hub.dmm @@ -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 diff --git a/_maps/RandomRuins/SpaceRuins/space_biodome_beach.dmm b/_maps/RandomRuins/SpaceRuins/space_biodome_beach.dmm index d5ec758c6b..54bcfda6a3 100644 --- a/_maps/RandomRuins/SpaceRuins/space_biodome_beach.dmm +++ b/_maps/RandomRuins/SpaceRuins/space_biodome_beach.dmm @@ -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) diff --git a/_maps/RandomRuins/SpaceRuins/whiteship_CFC01.dmm b/_maps/RandomRuins/SpaceRuins/whiteship_CFC01.dmm index d3a1cfd6d1..0b59baee37 100644 --- a/_maps/RandomRuins/SpaceRuins/whiteship_CFC01.dmm +++ b/_maps/RandomRuins/SpaceRuins/whiteship_CFC01.dmm @@ -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"; diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 310f7d8356..cc2c75c93a 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -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" = ( diff --git a/_maps/map_files/CogStation/CogStation.dmm b/_maps/map_files/CogStation/CogStation.dmm index fcd4949a27..f35f9b8b34 100644 --- a/_maps/map_files/CogStation/CogStation.dmm +++ b/_maps/map_files/CogStation/CogStation.dmm @@ -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" = ( diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index 8745b67385..e8dfeced10 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -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 diff --git a/_maps/map_files/KiloStation/KiloStation.dmm b/_maps/map_files/KiloStation/KiloStation.dmm index 58634e3fb0..15801f5d84 100644 --- a/_maps/map_files/KiloStation/KiloStation.dmm +++ b/_maps/map_files/KiloStation/KiloStation.dmm @@ -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" = ( diff --git a/_maps/map_files/LambdaStation/lambda.dmm b/_maps/map_files/LambdaStation/lambda.dmm index 53625bac25..61cdc89ba6 100644 --- a/_maps/map_files/LambdaStation/lambda.dmm +++ b/_maps/map_files/LambdaStation/lambda.dmm @@ -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 diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index d70bb9d9b4..db471e6907 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -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 diff --git a/_maps/map_files/OmegaStation/OmegaStation.dmm b/_maps/map_files/OmegaStation/OmegaStation.dmm index a09bb84986..95bf31e1a3 100644 --- a/_maps/map_files/OmegaStation/OmegaStation.dmm +++ b/_maps/map_files/OmegaStation/OmegaStation.dmm @@ -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" = ( diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index 7164641f24..9c08677030 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -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 diff --git a/_maps/map_files/SyndicateStation/SyndicateBoxStation.dmm b/_maps/map_files/SyndicateStation/SyndicateBoxStation.dmm index d95857e688..50d1acada7 100644 --- a/_maps/map_files/SyndicateStation/SyndicateBoxStation.dmm +++ b/_maps/map_files/SyndicateStation/SyndicateBoxStation.dmm @@ -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" = ( diff --git a/_maps/map_files/gs13/Fast_Food.dmm b/_maps/map_files/gs13/Fast_Food.dmm index 2c3df15705..d3fab5bcec 100644 --- a/_maps/map_files/gs13/Fast_Food.dmm +++ b/_maps/map_files/gs13/Fast_Food.dmm @@ -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 diff --git a/_maps/map_files/hyper/Diner.dmm b/_maps/map_files/hyper/Diner.dmm index 260d131627..91756ae041 100644 --- a/_maps/map_files/hyper/Diner.dmm +++ b/_maps/map_files/hyper/Diner.dmm @@ -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) diff --git a/tgstation.dme b/tgstation.dme index ac176ae89c..f7788e295a 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -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"