diff --git a/aurorastation.dme b/aurorastation.dme index d724f51b872..b70ef86bac4 100644 --- a/aurorastation.dme +++ b/aurorastation.dme @@ -1647,6 +1647,7 @@ #include "code\modules\clothing\spacesuits\void\void.dm" #include "code\modules\clothing\suits\armor.dm" #include "code\modules\clothing\suits\bio.dm" +#include "code\modules\clothing\suits\costumes.dm" #include "code\modules\clothing\suits\hazardvests.dm" #include "code\modules\clothing\suits\hoodies.dm" #include "code\modules\clothing\suits\jobs.dm" diff --git a/code/game/objects/items/weapons/candle.dm b/code/game/objects/items/weapons/candle.dm index 9bdb4a56c7e..4240ec0775c 100644 --- a/code/game/objects/items/weapons/candle.dm +++ b/code/game/objects/items/weapons/candle.dm @@ -74,3 +74,18 @@ playsound(src.loc, 'sound/items/cigs_lighters/cig_snuff.ogg', 50, 1) update_icon() set_light(0) + +// Halloween candle pile + +/obj/item/flame/candle/waxcandles + name = "candle pile" + desc = "A pile of half molten white wax candles, that seem to burn on forever." + icon = 'icons/obj/contained_items/halloween_decorations.dmi' + icon_state = "candles" + item_state = "candles" + light_color = "#E09D37" + wax = 40000 + +/obj/item/flame/candle/waxcandles/Initialize() + . = ..() + light() diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm index 8349cdb514e..c70fe589eb0 100644 --- a/code/game/objects/structures/signs.dm +++ b/code/game/objects/structures/signs.dm @@ -1128,4 +1128,22 @@ icon_state = "konyang_l" /obj/structure/sign/flag/konyang/right - icon_state = "konyang_r" \ No newline at end of file + icon_state = "konyang_r" + +//Halloween Banner +/obj/structure/sign/flag/halloween + name = "large halloween flag" + desc = "A bright, purple flag with an orange rim, spelling out \"HAPPY HALLOWEEN\"." + icon = 'icons/obj/contained_items/halloween_decorations.dmi' + icon_state = "halloween" + +/obj/item/flag/halloween/l + name = "large halloween flag" + flag_size = 1 + +/obj/structure/sign/flag/halloween/left + icon_state = "halloween_l" + +/obj/structure/sign/flag/halloween/right + icon_state = "halloween_r" + diff --git a/code/modules/clothing/suits/costumes.dm b/code/modules/clothing/suits/costumes.dm new file mode 100644 index 00000000000..d43968031f9 --- /dev/null +++ b/code/modules/clothing/suits/costumes.dm @@ -0,0 +1,523 @@ +//Main suit parts +/obj/item/clothing/suit/dog_costume + name = "dog onesie" + desc = "An onesie, looking like a german shepard, a bit like Lt. Columbo, actually. Soft and comfy as well." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "dog_costume" + item_state = "dog_costume" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|HEAD|ARMS|LEGS + flags_inv = HIDEJUMPSUIT|HIDESHOES|HIDEGLOVES|HIDEEARS|HIDETAIL|HIDEWRISTS|BLOCKHAIR + +/obj/item/clothing/suit/carp_costume + name = "carp costume" + desc = "A cheap, textile costume, looking like a cartoon version of a dangerous space carp. Tail movement included." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "carp_costume" + item_state = "carp_costume" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|HEAD|ARMS + flags_inv = HIDETAIL|HIDEWRISTS|HIDEEARS|BLOCKHAIR + +/obj/item/clothing/suit/zombie_costume + name = "zombie apparel" + desc = "A zombie costume, together with an extensive fake make-up, making you look like the real deal." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "zombie_costume" + item_state = "zombie_costume" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|HEAD|ARMS|HANDS|LEGS|FEET + flags_inv = HIDEEARS|HIDEGLOVES|HIDEWRISTS|HIDESHOES|HIDEJUMPSUIT|HIDEMASK|HIDETAIL + +/obj/item/clothing/suit/dark_witch_costume + name = "dark witch costume" + desc = "A dark and sinister looking dress, fit for an evil witch." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "dark_witch" + item_state = "dark_witch" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS + flags_inv = HIDEJUMPSUIT|HIDEWRISTS + +/obj/item/clothing/suit/lobster_costume + name = "lobster costume" + desc = "A bright red, rubber costume depicting a lobster." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "lobster" + item_state = "lobster" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO + flags_inv = HIDEJUMPSUIT + +/obj/item/clothing/suit/knight_costume + name = "knight armour" + desc = "A textile and plastic replica of the armour of a medieval knight." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "knight" + item_state = "knight" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS + flags_inv = HIDEJUMPSUIT|HIDEWRISTS|HIDEGLOVES|HIDETAIL + +/obj/item/clothing/suit/marisa_costume + name = "quirky witch dress" + desc = "A black and white dress for anyone wanting to lob some fireballs." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "marisa" + item_state = "marisa" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS + flags_inv = HIDEJUMPSUIT|HIDEWRISTS + +/obj/item/clothing/suit/skeleton_costume + name = "skeleton bodysuit" + desc = "A thin textile bodysuit with a cheap imprint depicting a skeleton on it." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "skeleton" + item_state = "skeleton" + contained_sprite = TRUE + body_parts_covered = HEAD|UPPER_TORSO|LOWER_TORSO|ARMS|HANDS|LEGS|FEET + flags_inv = HIDEJUMPSUIT|HIDEWRISTS|HIDEFACE|HIDEEARS|BLOCKHAIR + +/obj/item/clothing/suit/sumo_costume + name = "sumo costume" + desc = "A rubber costume, making you appear very overweight, just like asian sumo ringers are supposed to look like." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "sumo" + item_state = "sumo" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS|LEGS + flags_inv = HIDEJUMPSUIT|HIDEWRISTS|HIDESHOES + +/obj/item/clothing/suit/hacker_costume + name = "hacker apparel" + desc = "A long leather coat, black gloves, pants and boots to make you look like a early 21st century hacker. Or rather as one thought they look like." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "hackerman" + item_state = "hackerman" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS|LEGS|FEET|FACE + flags_inv = HIDEMASK|HIDEGLOVES|HIDESHOES + +/obj/item/clothing/suit/snowman_costume + name = "snowman costume" + desc = "A bright white plastic suit, making you look like a snowman." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "snowman" + item_state = "snowman" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO + +/obj/item/clothing/suit/witch_hunter_costume + name = "witch hunter cloak" + desc = "A red and black coat and oversuit, together with a plastic crucifix to protect you from evil spells." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "witch_hunter" + item_state = "witch_hunter" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS + flags_inv = HIDEJUMPSUIT + +/obj/item/clothing/suit/pharaoh_costume + name = "egypt leader costume" + desc = "A costume which looks like what an egyptian pharaoh would have worn. Very royal, in a way." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "pharaoh" + item_state = "pharaoh" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS|LEGS + flags_inv = HIDEJUMPSUIT + +/obj/item/clothing/suit/bunny_costume + name = "bunny costume" + desc = "A full body costume which resembles a bunny." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "bunnysuit" + item_state = "bunnysuit" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS|LEGS + flags_inv = HIDEJUMPSUIT|HIDEWRISTS|HIDEGLOVES|HIDESHOES + +/obj/item/clothing/suit/roman_costume + name = "legionaire costume" + desc = "A piece of tunic and plastic armour, making you look like a legionaire. A roman one, not one from the TCFL." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "roman" + item_state = "roman" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO + flags_inv = HIDEJUMPSUIT + +/obj/item/clothing/suit/bee_costume + name = "bee costume" + desc = "A fluffy costume out of fabric, looking like a honeybee. Bzzz, bzz." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "bee" + item_state = "bee" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS|LEGS + flags_inv = HIDEJUMPSUIT + +/obj/item/clothing/suit/flash_costume + name = "flash costume" + desc = "Made from cardboard and painted afterwards this costume makes you look like a man-sized flash. Flash functionality not included." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "flashsuit" + item_state = "flashsuit" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO + +/obj/item/clothing/suit/cheap_ghost_costume + name = "\"ghost\" costume" + desc = "The lowest effort costume imaginable. A big bedsheet with two holes in it. Spooky." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "low_effort_ghost" + item_state = "low_effort_ghost" + contained_sprite = TRUE + body_parts_covered = HEAD|UPPER_TORSO|LOWER_TORSO|ARMS|LEGS + flags_inv = HIDEEARS|HIDEEYES|HIDEFACE|HIDEJUMPSUIT|HIDEGLOVES|HIDEMASK|HIDESHOES|HIDEWRISTS|BLOCKHAIR + +/obj/item/clothing/suit/mummy_costume + name = "mummy costume" + desc = "A suit with a lot of bandages attached to it, covering your entire body." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "mummy" + item_state = "mummy" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS|LEGS + flags_inv = HIDEJUMPSUIT + +/obj/item/clothing/suit/owl_costume + name = "owl suit" + desc = "A full body suit, resembling an owl. Hoot, hoot." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "owl" + item_state = "owl" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS + flags_inv = HIDEJUMPSUIT + +/obj/item/clothing/suit/griffin_suit + name = "griffin suit" + desc = "A full body suit, making you look like a griffin. Without the claws and feathers, though." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "griffin" + item_state = "griffin" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS + flags_inv = HIDEJUMPSUIT + +/obj/item/clothing/suit/scarecrow + name = "scarecrow costume" + desc = "Some rags and hay, all put together to make you look like a scarecrow." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "scarecrow" + item_state = "scarecrow" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS|LEGS + flags_inv = HIDEJUMPSUIT + +/obj/item/clothing/suit/schoolgirl_costume + name = "schoolgirl costume" + desc = "A costume, resembling a rather cliché school uniform for girls." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "schoolgirl" + item_state = "schoolgirl" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|ARMS + flags_inv = HIDEJUMPSUIT + +/obj/item/clothing/suit/jester_costume + name = "jester costume" + desc = "A cheap costume made of fabric, resembling what a medieval jester would have worn, probably." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "jester" + item_state = "jester" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS|LEGS + flags_inv = HIDEJUMPSUIT + +/obj/item/clothing/suit/cult_leader + name = "cult leader costume" + desc = "A long robe and undershirt, making you look like the religious leader of your own personal cult." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "chaplain_hoodie_leader" + item_state = "chaplain_hoodie_leader" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS + flags_inv = HIDEJUMPSUIT + +/obj/item/clothing/suit/wizard_costume + name = "wizard costume" + desc = "Bright blue robes, making you look like a level 30 wizard." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "wizard" + item_state = "wizard" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS + flags_inv = HIDEJUMPSUIT + +/obj/item/clothing/suit/zombiedoc_apron + name = "zombie doctor apron" + desc = "A brown leather apron with some worrying stains on it." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "zombiedoc_apron" + item_state = "zombiedoc_apron" + contained_sprite = TRUE + +/obj/item/clothing/suit/maid_costume + name = "maid costume" + desc = "A detailed replica of the dress of a french maid, from the old times." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "maid" + item_state = "maid" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO + flags_inv = HIDEJUMPSUIT + +/obj/item/clothing/under/ice_fairy_dress + name = "ice fairy dress" + desc = "A cold blue dress with a white rolled up button-up shirt underneath." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "ice_fairy_dress" + item_state = "ice_fairy_dress" + contained_sprite = TRUE + +/obj/item/clothing/suit/storage/target_costume + name = "aiming target" + desc = "Sometimes you really feel like the entire universe is after you. With this costume at least you acknowledge it." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "target_costume" + item_state = "target_costume" + contained_sprite = TRUE + +/obj/item/clothing/suit/storage/target_costume/Initialize() + . = ..() + pockets.storage_slots = 2 + pockets.max_w_class = ITEMSIZE_NORMAL + pockets.max_storage_space = 8 + +/obj/item/clothing/suit/storage/target_costume/attack_hand(mob/user) + . = ..() + var/len = length(pockets.contents) + if(!len) + item_state = "target_costume" + if(len == 1) + item_state = "target_costume_one" + if(len == 2) + item_state = "target_costume_two" + +/obj/item/clothing/suit/storage/target_costume/attackby(obj/item/W, mob/user) + . = ..() + var/len = length(pockets.contents) + if(!len) + item_state = "target_costume" + if(len == 1) + item_state = "target_costume_one" + if(len == 2) + item_state = "target_costume_two" +// Hats +/obj/item/clothing/head/judge_wig + name = "judge wig" + desc = "A cheaply made wig, making you look like a judge or philosopher." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "judge_wig" + item_state = "judge_wig" + contained_sprite = TRUE + flags_inv = BLOCKHAIR + +/obj/item/clothing/head/dark_witch_hat + name = "dark witch hat" + desc = "A sinister looking piece of headware, perfect for a witch." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "dark_witch_hat" + item_state = "dark_witch_hat" + contained_sprite = TRUE + +/obj/item/clothing/head/bunny_hat + name = "bunny ears" + desc = "A piece of plastic, with some bunny ears attached to them." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "bunny_hat" + item_state = "bunny_hat" + contained_sprite = TRUE + +/obj/item/clothing/head/bunny_hat2 + name = "bunny mask" + desc = "A full head mask, depicting a friendly looking bunny." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "bunny_hat2" + item_state = "bunny_hat2" + contained_sprite = TRUE + body_parts_covered = HEAD|FACE|EYES + flags_inv = BLOCKHAIR + +/obj/item/clothing/head/witch_hunter_hat + name = "witch hunter hat" + desc = "A wide brimmed, black and red hat, donning a crucifix on the front to shield you from evil demons and witches." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "witch_hunter_hat" + item_state = "witch_hunter_hat" + contained_sprite = TRUE + +/obj/item/clothing/head/pharaoh_hat + name = "pharaoh headpiece" + desc = "A piece of headgear, marking you as the great egyptian leader you always wanted to be." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "pharaoh_hat" + item_state = "pharaoh_hat" + contained_sprite = TRUE + +/obj/item/clothing/head/marisa_hat + name = "quirky witch hat" + desc = "A black and white hat, to complete your look as the very dangerous witch absolutely are." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "marisa_hat" + item_state = "marisa_hat" + contained_sprite = TRUE + +/obj/item/clothing/head/knight_hat + name = "knight helmet" + desc = "A plastic replica of a knight helmet minus the actual protection." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "knight_hat" + item_state = "knight_hat" + contained_sprite = TRUE + body_parts_covered = HEAD|FACE|EYES + flags_inv = BLOCKHAIR + + +/obj/item/clothing/head/snowman_hat + name = "snowman headpiece" + desc = "The headpiece for the snowman costume. It looks a bit strange to you." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "snowman_hat" + item_state = "snowman_hat" + contained_sprite = TRUE + body_parts_covered = HEAD|FACE + flags_inv = BLOCKHAIR + +/obj/item/clothing/head/flashsuit_hat + name = "flashsuit hat" + desc = "The headpiece for the flash suit. Maybe if someone hits you on your head the flash will actually go off." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "flashsuit_hat" + item_state = "flashsuit_hat" + contained_sprite = TRUE + +/obj/item/clothing/head/jester_hat + name = "jester hat" + desc = "A cheaply hat like one of a medieval jester, so you look like a proper fool." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "jester_hat" + item_state = "jester_hat" + contained_sprite = TRUE + flags_inv = BLOCKHAIR + +/obj/item/clothing/head/bee_hat + name = "bee antennae" + desc = "A pair of antennas, to complete your honeybee look." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "bee_hat" + item_state = "bee_hat" + contained_sprite = TRUE + +/obj/item/clothing/head/roman_hat + name = "legionaire helmet" + desc = "The plastic helmet of a roman legionaire. Dying for Rome is a great honour, you were told." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "roman_hat" + item_state = "roman_hat" + contained_sprite = TRUE + flags_inv = BLOCKHAIR + +/obj/item/clothing/head/roman_centurion_helmet + name = "legionaire centurion helmet" + desc = "The plastic helmet of a roman legionaire officer. Roma Invicta!" + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "roman_centurion_hat" + item_state = "roman_centurion_hat" + contained_sprite = TRUE + flags_inv = BLOCKHAIR + +/obj/item/clothing/head/griffin_hat + name = "griffin costume headpiece" + desc = "The headpiece for the griffin costume. The beak is thankfully not sharpened." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "griffin_hat" + item_state = "griffin_hat" + contained_sprite = TRUE + body_parts_covered = HEAD|FACE|EYES + flags_inv = BLOCKHAIR + +/obj/item/clothing/head/scarecrow_hat + name = "scarecrow hat" + desc = "A rugged, brown hat to complete your scary scarecrow look." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "scarecrow_hat" + item_state = "scarecrow_hat" + contained_sprite = TRUE + +/obj/item/clothing/head/lobster_hat + name = "lobster costume headpiece" + desc = "The rubber headpiece to the lobster costume." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "lobster_hat" + item_state = "lobster_hat" + contained_sprite = TRUE + body_parts_covered = HEAD|EYES|FACE + flags_inv = BLOCKHAIR + +/obj/item/clothing/head/mummy_hat + name = "mummy mask" + desc = "A full head mask for the real mummy look. Real bandages, real spooks." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "mummy_mask" + item_state = "mummy_mask" + contained_sprite = TRUE + body_parts_covered = HEAD|EYES + flags_inv = BLOCKHAIR + +/obj/item/clothing/head/ice_fairy_bow + name = "ice fairy bow" + desc = "A cold blue ribbon tied into a bow, with a clip on the back to attach to hair." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "ice_fairy_hairbow" + item_state = "ice_fairy_hairbow" + contained_sprite = TRUE + +//Masks + +/obj/item/clothing/head/maid_hat + name = "maid dress headpiece" + desc = "The white headpiece, intended to be worn together with the maid dress." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "maid_hat" + item_state = "maid_hat" + contained_sprite = TRUE + +// Accessory ⑨ +/obj/item/clothing/accessory/ice_fairy_wings + name = "ice fairy wings" + desc = "A set of translucent ice crystal wings. Ice cold." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "ice_fairy_wings" + item_state = "ice_fairy_wings" + contained_sprite = TRUE + +/obj/item/clothing/ears/maid_ears + name = "konyang shell antennae" + desc = "A pair of specialized antennae for shells, resembling mechanical ears. For cuteness factors, you assume." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "chobits_ears" + item_state = "chobits_ears" + contained_sprite = TRUE + +// Gloves +/obj/item/clothing/gloves/zombiedoctor_gloves + name = "zombie doctor gloves" + desc = "A pair of rugged leather gloves, perfect for all your \"surgeries\" and experiments." + icon = 'icons/obj/clothing/halloween.dmi' + icon_state = "zombiedoc_gloves" + item_state = "zombiedoc_gloves" + contained_sprite = TRUE diff --git a/html/changelogs/KingOfThePing - welcome_to_the_(g)raveyard.yml b/html/changelogs/KingOfThePing - welcome_to_the_(g)raveyard.yml new file mode 100644 index 00000000000..641f3caf86b --- /dev/null +++ b/html/changelogs/KingOfThePing - welcome_to_the_(g)raveyard.yml @@ -0,0 +1,42 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: KingOfThePing + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Adds halloween costumes and decorations." + - maptweak: "Tweaks the Idris cruise map slightly with halloween additions." diff --git a/icons/obj/clothing/halloween.dmi b/icons/obj/clothing/halloween.dmi new file mode 100644 index 00000000000..ec3e3c43cab Binary files /dev/null and b/icons/obj/clothing/halloween.dmi differ diff --git a/icons/obj/contained_items/halloween_decorations.dmi b/icons/obj/contained_items/halloween_decorations.dmi new file mode 100644 index 00000000000..429f5c1f510 Binary files /dev/null and b/icons/obj/contained_items/halloween_decorations.dmi differ diff --git a/maps/event/idris_cruise/idris_cruise-1.dmm b/maps/event/idris_cruise/idris_cruise-1.dmm index 7efecdf56c6..c4b789b16cb 100644 --- a/maps/event/idris_cruise/idris_cruise-1.dmm +++ b/maps/event/idris_cruise/idris_cruise-1.dmm @@ -184,12 +184,14 @@ }, /area/cruise/aft_p) "afh" = ( -/obj/structure/table/wood, -/obj/item/toy/desk/fan, +/obj/structure/sign/flag/halloween/right{ + pixel_x = -32; + dir = 8 + }, /turf/unsimulated/floor{ icon_state = "dark2" }, -/area/cruise/aft) +/area/cruise/aft_s) "agB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -201,9 +203,6 @@ /area/cruise/virtual_reality) "agC" = ( /obj/structure/railing/mapped, -/obj/effect/landmark/force_spawnpoint{ - job_tag = "Passenger" - }, /turf/unsimulated/floor{ icon_state = "tiles_small" }, @@ -310,6 +309,17 @@ name = "dirt" }, /area/cruise/jungle) +"akE" = ( +/obj/structure/closet/crate/bin, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/sign/flag/halloween/right{ + pixel_x = -32; + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) "als" = ( /obj/structure/window/reinforced/crescent{ dir = 1 @@ -453,12 +463,18 @@ }, /area/cruise/escort) "arM" = ( -/obj/structure/janitorialcart/full{ - dir = 1 +/obj/item/clothing/suit/zombiedoc_apron, +/obj/item/clothing/gloves/zombiedoctor_gloves, +/obj/structure/closet/walllocker{ + pixel_y = -32; + name = "\improper IPC 'Hazel #S-H12.06'" }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 4.1; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/outline/grey, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -491,9 +507,6 @@ name = "aft hall indicator"; pixel_x = 32 }, -/obj/machinery/light{ - dir = 4 - }, /turf/unsimulated/floor{ icon_state = "turquoise" }, @@ -871,14 +884,15 @@ }, /area/cruise/security) "aFo" = ( -/obj/structure/railing/mapped, -/obj/machinery/light{ +/obj/machinery/light/small, +/obj/structure/sign/flag/halloween/left{ + pixel_y = -32; dir = 1 }, /turf/unsimulated/floor{ - icon_state = "wood_light" + icon_state = "alienvault" }, -/area/cruise/aft) +/area/cruise/main_bar/aft) "aFz" = ( /obj/structure/trash_pile, /turf/unsimulated/floor{ @@ -1132,15 +1146,6 @@ icon_state = "floor7" }, /area/cruise/fore) -"aNq" = ( -/obj/effect/landmark/force_spawnpoint{ - job_tag = "Passenger" - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/cruise/central) "aNx" = ( /obj/structure/railing/mapped, /turf/simulated/floor/exoplanet/water/shallow, @@ -1175,12 +1180,10 @@ /area/cruise/escort) "aPP" = ( /obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/machinery/photocopier, -/obj/machinery/light{ - dir = 8 + dir = 4 }, +/obj/structure/table/stone/marble, +/obj/item/flame/candle/waxcandles, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" @@ -1356,6 +1359,12 @@ icon_state = "dark2" }, /area/cruise/custodial_s) +"aWx" = ( +/obj/structure/railing/mapped, +/turf/unsimulated/floor{ + icon_state = "turquoise" + }, +/area/cruise/aft) "aWF" = ( /obj/structure/table/stone/marble, /obj/item/reagent_containers/food/drinks/shaker{ @@ -1366,6 +1375,8 @@ /obj/machinery/door/blast/shutters/open{ id = "bar_southwest" }, +/obj/item/storage/box/fancy/candle_box, +/obj/item/storage/box/fancy/candle_box, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" @@ -1524,6 +1535,9 @@ }, /area/cruise/pool/sauna1) "bcx" = ( +/obj/effect/landmark/force_spawnpoint{ + job_tag = "Off-Duty Crew Member" + }, /turf/unsimulated/floor{ icon_state = "wood_birch" }, @@ -1633,7 +1647,7 @@ dir = 1 }, /obj/structure/table/stone/marble, -/obj/item/clothing/accessory/armband/idris, +/obj/item/clothing/head/pumpkin/lantern, /turf/unsimulated/floor{ icon_state = "wood_cherry" }, @@ -1827,7 +1841,8 @@ }, /area/cruise/hangar) "blU" = ( -/obj/structure/bed/stool/chair/wood, +/obj/structure/bed/stool, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -2149,14 +2164,6 @@ icon_state = "dark" }, /area/cruise/central) -"bxm" = ( -/obj/effect/landmark/force_spawnpoint{ - job_tag = "Passenger" - }, -/turf/unsimulated/floor{ - icon_state = "tiles_small" - }, -/area/cruise/central) "bxs" = ( /obj/effect/floor_decal/corner/green{ dir = 1 @@ -2185,6 +2192,8 @@ /obj/machinery/door/airlock/glass{ name = "Kitchen" }, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/cleanable/cobweb, /turf/unsimulated/floor{ icon_state = "new_white" }, @@ -2337,6 +2346,11 @@ dir = 4 }, /obj/machinery/door/window/westleft, +/obj/item/reagent_containers/food/snacks/chilied_eggs, +/obj/item/reagent_containers/food/snacks/chilied_eggs, +/obj/item/reagent_containers/food/snacks/corn_dog, +/obj/item/reagent_containers/food/snacks/corn_dog, +/obj/item/reagent_containers/food/snacks/corn_dog, /turf/simulated/floor/wood, /area/cruise/dining_hall) "bFr" = ( @@ -2349,16 +2363,14 @@ }, /area/cruise/virtual_reality) "bFV" = ( -/obj/structure/table/steel, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights, -/obj/item/storage/box/lights, -/obj/item/storage/box/lights, +/obj/structure/sign/flag/halloween/left{ + dir = 8; + pixel_x = -32 + }, /turf/unsimulated/floor{ icon_state = "dark2" }, -/area/cruise/custodial_p) +/area/cruise/aft_s) "bGs" = ( /obj/machinery/power/solar/fake, /obj/effect/floor_decal/industrial/warning{ @@ -2450,6 +2462,7 @@ /area/cruise/fore) "bNG" = ( /obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/cobweb2, /turf/unsimulated/floor{ icon_state = "dark" }, @@ -2509,6 +2522,7 @@ /area/cruise/pool/sauna2) "bPI" = ( /obj/structure/table/reinforced/wood, +/obj/item/flame/candle/waxcandles, /turf/unsimulated/floor{ icon_state = "lino_grey" }, @@ -2762,14 +2776,6 @@ icon_state = "dark2" }, /area/cruise/pool) -"ceU" = ( -/obj/effect/landmark/force_spawnpoint{ - job_tag = "Off-Duty Crew Member" - }, -/turf/unsimulated/floor{ - icon_state = "tiles_small" - }, -/area/cruise/central) "ceX" = ( /obj/structure/table/wood, /obj/machinery/recharger{ @@ -2957,6 +2963,18 @@ icon_state = "beach" }, /area/cruise/virtual_reality) +"cmT" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/flag/halloween/left{ + dir = 8; + pixel_x = -32 + }, +/turf/unsimulated/floor{ + icon_state = "tiles_small" + }, +/area/cruise/fore_s) "cna" = ( /obj/structure/bed/stool/chair/wood{ dir = 8 @@ -2969,7 +2987,7 @@ }, /area/cruise/fore_p) "cnk" = ( -/obj/structure/table/wood, +/obj/item/flame/candle/waxcandles, /turf/unsimulated/floor{ icon_state = "turquoise" }, @@ -3046,6 +3064,15 @@ dir = 4 }, /obj/machinery/door/window/westleft, +/obj/item/reagent_containers/food/snacks/ricepudding, +/obj/item/reagent_containers/food/snacks/ricepudding, +/obj/item/reagent_containers/food/snacks/sliceable/cake/apple, +/obj/item/reagent_containers/food/snacks/sliceable/cake/cheese, +/obj/item/reagent_containers/food/snacks/sliceable/cake/chocolate, +/obj/item/reagent_containers/food/snacks/sliceable/cake/lemon, +/obj/item/reagent_containers/food/snacks/sliceable/cake/orange, +/obj/item/reagent_containers/food/snacks/sliceable/creamcheesebread, +/obj/item/reagent_containers/food/snacks/sliceable/creamcheesebread, /turf/simulated/floor/wood, /area/cruise/dining_hall) "cpH" = ( @@ -3079,6 +3106,12 @@ icon_state = "new_white" }, /area/cruise/pool) +"cqk" = ( +/obj/item/clothing/head/pumpkin/lantern, +/turf/unsimulated/floor{ + icon_state = "asteroidplating" + }, +/area/cruise/beach) "cqp" = ( /obj/machinery/light, /turf/unsimulated/floor{ @@ -3216,6 +3249,14 @@ /obj/machinery/light{ dir = 8 }, +/obj/structure/sign/flag/halloween/left{ + dir = 8; + pixel_x = -32 + }, +/obj/item/flame/candle/waxcandles{ + pixel_x = -5; + pixel_y = 11 + }, /turf/unsimulated/floor{ icon_state = "wood_cherry" }, @@ -3252,20 +3293,14 @@ icon_state = "new_white" }, /area/cruise/main_bar) -"cAw" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/effect/landmark/force_spawnpoint{ - job_tag = "Off-Duty Crew Member" - }, -/turf/unsimulated/floor{ - icon_state = "dark2" - }, -/area/cruise/centerline) "cBe" = ( /obj/machinery/light{ dir = 8 }, +/obj/structure/sign/flag/halloween/right{ + pixel_x = -32; + dir = 8 + }, /turf/unsimulated/floor{ icon_state = "wood_cherry" }, @@ -3366,9 +3401,6 @@ /obj/effect/floor_decal/corner/blue{ dir = 5 }, -/obj/effect/landmark/force_spawnpoint{ - job_tag = "Passenger" - }, /turf/unsimulated/floor{ icon_state = "dark" }, @@ -3379,6 +3411,15 @@ icon_state = "plating" }, /area/template_noop) +"cEX" = ( +/obj/structure/sign/flag/halloween/right{ + pixel_x = -32; + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "lino_grey" + }, +/area/cruise/arcade) "cFa" = ( /obj/structure/table/reinforced, /obj/random/contraband, @@ -3415,6 +3456,9 @@ name = "Station Intercom (General)"; pixel_x = -24 }, +/obj/effect/landmark/force_spawnpoint{ + job_tag = "Off-Duty Crew Member" + }, /turf/unsimulated/floor{ icon_state = "tiles_small" }, @@ -3426,6 +3470,11 @@ icon_state = "wood" }, /area/cruise/jungle) +"cGi" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/wood, +/area/cruise/dining_hall) "cGz" = ( /obj/structure/barricade/metal{ dir = 1 @@ -3647,9 +3696,7 @@ /area/cruise/centerline) "cOX" = ( /obj/structure/table/wood, -/obj/machinery/light{ - dir = 8 - }, +/obj/item/flame/candle/waxcandles, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" @@ -3816,9 +3863,6 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/light/small{ - dir = 1 - }, /turf/unsimulated/floor{ icon_state = "carpet10-8" }, @@ -3859,9 +3903,6 @@ /obj/effect/floor_decal/corner/blue{ dir = 5 }, -/obj/effect/landmark/force_spawnpoint{ - job_tag = "Passenger" - }, /turf/unsimulated/floor{ icon_state = "dark" }, @@ -3938,6 +3979,7 @@ /obj/structure/railing/mapped{ dir = 8 }, +/obj/item/clothing/head/pumpkin/lantern, /turf/unsimulated/floor{ icon_state = "wood_birch" }, @@ -4039,6 +4081,7 @@ /obj/machinery/light{ dir = 1 }, +/obj/structure/bed/stool/padded/red, /turf/unsimulated/floor{ icon_state = "wood_cherry" }, @@ -4046,6 +4089,7 @@ "ddC" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/structure/table/stone/marble, +/obj/item/clothing/head/pumpkin/lantern, /turf/unsimulated/floor{ icon_state = "wood_cherry" }, @@ -4236,6 +4280,12 @@ icon_state = "asteroidfloor" }, /area/cruise/beach_cave) +"djM" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/unsimulated/floor{ + icon_state = "floor7" + }, +/area/cruise/aft) "dkj" = ( /obj/structure/railing/mapped{ dir = 1 @@ -4286,12 +4336,12 @@ }, /area/cruise/virtual_reality) "dlF" = ( -/obj/structure/railing/mapped{ - dir = 4 +/obj/structure/sign/flag/halloween/left{ + dir = 8; + pixel_x = -32 }, -/obj/effect/floor_decal/corner/beige/diagonal, /turf/unsimulated/floor{ - icon_state = "dark2" + icon_state = "turquoise" }, /area/cruise/aft) "dlP" = ( @@ -4354,7 +4404,9 @@ /area/cruise/escort) "dqf" = ( /obj/effect/floor_decal/corner/green/diagonal, -/mob/living/simple_animal/cat, +/mob/living/simple_animal/cat{ + name = "Herbert" + }, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -4440,6 +4492,33 @@ icon_state = "asteroidfloor" }, /area/cruise/beach) +"dxf" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/bunny_costume, +/obj/item/clothing/suit/bunny_costume, +/obj/item/clothing/suit/dog_costume, +/obj/item/clothing/suit/dog_costume, +/obj/item/clothing/suit/knight_costume, +/obj/item/clothing/suit/knight_costume, +/obj/item/clothing/suit/owl_costume, +/obj/item/clothing/suit/owl_costume, +/obj/item/clothing/suit/skeleton_costume, +/obj/item/clothing/suit/skeleton_costume, +/obj/item/clothing/suit/wizard_costume, +/obj/item/clothing/suit/wizard_costume, +/obj/item/clothing/head/bunny_hat, +/obj/item/clothing/head/bunny_hat, +/obj/item/clothing/head/bunny_hat2, +/obj/item/clothing/head/bunny_hat2, +/obj/item/clothing/head/knight_hat, +/obj/item/clothing/head/knight_hat, +/obj/item/clothing/head/collectable/wizard, +/obj/item/clothing/head/collectable/wizard, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) "dxi" = ( /obj/structure/closet/crate/freezer/rations, /turf/unsimulated/floor{ @@ -4610,14 +4689,12 @@ icon_state = "dark2" }, /area/cruise/escort) -"dDd" = ( -/obj/machinery/light{ - dir = 8 - }, +"dEj" = ( +/obj/item/flame/candle/waxcandles, /turf/unsimulated/floor{ - icon_state = "turquoise" + icon_state = "lino_grey" }, -/area/cruise/aft) +/area/cruise/pool) "dEl" = ( /obj/structure/flora/grass/jungle, /turf/unsimulated/floor{ @@ -4990,7 +5067,8 @@ "dXN" = ( /obj/machinery/door/airlock/multi_tile/glass{ dir = 1; - name = "Central Emergency Supplies Storage" + name = "Central Emergency Supplies Storage"; + req_access = list(101) }, /turf/unsimulated/floor{ icon_state = "dark2" @@ -5050,14 +5128,6 @@ name = "dirt" }, /area/cruise/jungle) -"ebS" = ( -/obj/effect/landmark/force_spawnpoint{ - job_tag = "Off-Duty Crew Member" - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/cruise/centerline) "ecq" = ( /obj/structure/bed/stool/chair/wood{ dir = 1 @@ -5187,8 +5257,7 @@ /obj/structure/window/reinforced/crescent{ dir = 8 }, -/obj/structure/table/stone/marble, -/obj/item/device/flashlight/lamp/green, +/obj/item/flame/candle/waxcandles, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" @@ -5200,9 +5269,6 @@ name = "Station Intercom (General)"; pixel_x = 24 }, -/obj/effect/landmark/force_spawnpoint{ - job_tag = "Passenger" - }, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" @@ -5285,12 +5351,12 @@ }, /area/cruise/hydroponics) "emS" = ( -/obj/structure/railing/mapped{ - dir = 1 +/obj/structure/sign/flag/halloween/right{ + pixel_x = 32; + dir = 4 }, -/obj/effect/floor_decal/corner/beige/diagonal, /turf/unsimulated/floor{ - icon_state = "dark2" + icon_state = "turquoise" }, /area/cruise/aft) "enl" = ( @@ -5733,13 +5799,27 @@ }, /area/cruise/jungle) "eBi" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/machinery/recharger{ - pixel_y = 4 - }, +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/carp_costume, +/obj/item/clothing/suit/carp_costume, +/obj/item/clothing/suit/flash_costume, +/obj/item/clothing/suit/flash_costume, +/obj/item/clothing/suit/lobster_costume, +/obj/item/clothing/suit/lobster_costume, +/obj/item/clothing/suit/pharaoh_costume, +/obj/item/clothing/suit/pharaoh_costume, +/obj/item/clothing/suit/snowman_costume, +/obj/item/clothing/suit/snowman_costume, +/obj/item/clothing/head/flashsuit_hat, +/obj/item/clothing/head/flashsuit_hat, +/obj/item/clothing/head/lobster_hat, +/obj/item/clothing/head/lobster_hat, +/obj/item/clothing/head/pharaoh_hat, +/obj/item/clothing/head/pharaoh_hat, +/obj/item/clothing/head/snowman_hat, +/obj/item/clothing/head/snowman_hat, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -5814,6 +5894,13 @@ icon_state = "freezerfloor" }, /area/cruise/washroom_fore) +"eEt" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/ramp{ + dir = 8 + }, +/area/cruise/centerline) "eFA" = ( /mob/living/simple_animal/crab{ desc = "A rather large crab, about a couple feet in width. It seems pretty docile. It also possesses a little tag connected to its right claw, reading Gilbert."; @@ -5857,11 +5944,11 @@ /area/cruise/beach) "eGk" = ( /obj/structure/table/stone/marble, -/obj/item/material/ashtray/bronze, /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters/open{ id = "bar_southwest" }, +/obj/item/clothing/head/pumpkin/lantern, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" @@ -5900,6 +5987,16 @@ icon_state = "freezerfloor" }, /area/cruise/washroom_aft) +"eII" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 8 + }, +/obj/item/flame/candle/waxcandles, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/cruise/centerline) "eKe" = ( /obj/structure/sign/flag/idris/right{ pixel_y = 32 @@ -6017,6 +6114,10 @@ /area/cruise/centerline) "ePu" = ( /obj/structure/closet/emcloset, +/obj/structure/sign/flag/halloween/left{ + dir = 4; + pixel_x = 32 + }, /turf/unsimulated/floor{ icon_state = "wood_willow" }, @@ -6226,9 +6327,6 @@ /obj/structure/sign/flag/idris{ pixel_y = 32 }, -/obj/machinery/light{ - dir = 1 - }, /turf/unsimulated/floor{ icon_state = "turquoise" }, @@ -6253,6 +6351,9 @@ name = "Station Intercom (General)"; pixel_x = 24 }, +/obj/effect/landmark/force_spawnpoint{ + job_tag = "Off-Duty Crew Member" + }, /turf/unsimulated/floor{ icon_state = "tiles_small" }, @@ -6794,6 +6895,9 @@ /obj/machinery/light{ dir = 1 }, +/obj/effect/landmark/force_spawnpoint{ + job_tag = "Passenger" + }, /turf/unsimulated/floor{ icon_state = "wood_birch" }, @@ -7008,6 +7112,14 @@ icon_state = "rub_carpet" }, /area/cruise/hydroponics) +"fCn" = ( +/obj/item/flame/candle/waxcandles{ + pixel_y = 24 + }, +/turf/unsimulated/floor{ + icon_state = "turquoise" + }, +/area/cruise/aft) "fCr" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -7111,6 +7223,15 @@ name = "dirt" }, /area/cruise/jungle) +"fGm" = ( +/obj/item/flame/candle/waxcandles, +/obj/item/clothing/head/pumpkin/lantern{ + pixel_y = 12 + }, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) "fGs" = ( /obj/structure/flora/grass/jungle, /obj/machinery/light{ @@ -7140,6 +7261,13 @@ icon_state = "dark2" }, /area/cruise/hangar) +"fHn" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/cobweb2, +/turf/unsimulated/floor{ + icon_state = "lino_grey" + }, +/area/cruise/main_bar) "fHC" = ( /obj/structure/table/steel, /obj/item/flag/idris, @@ -7224,18 +7352,11 @@ /obj/effect/floor_decal/spline/fancy{ dir = 4 }, -/obj/item/paper{ - info = "This stage is for the MEDAL OF VALOR 2 alpha gameplay demo! Please enter your respective team's chair for balance reasons. Do not use the enemy team's base ingame! Remember, sharing is caring!"; - name = "medal of valor intro sheet" - }, -/obj/item/paper{ - info = "This stage is for the MEDAL OF VALOR 2 alpha gameplay demo! Please enter your respective team's chair for balance reasons. Do not use the enemy team's base ingame! Remember, sharing is caring!"; - name = "medal of valor intro sheet" - }, /obj/structure/table/standard, /obj/machinery/light/small{ dir = 4 }, +/obj/item/clothing/head/pumpkin/lantern, /turf/unsimulated/floor{ icon_state = "lino_grey" }, @@ -7312,13 +7433,22 @@ "fNT" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/machinery/light, -/obj/effect/landmark/force_spawnpoint{ - job_tag = "Passenger" - }, /turf/unsimulated/floor{ icon_state = "dark2" }, /area/cruise/central) +"fOF" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/flag/halloween/left{ + dir = 8; + pixel_x = -32 + }, +/turf/unsimulated/floor{ + icon_state = "lino_grey" + }, +/area/cruise/arcade) "fPf" = ( /obj/structure/bed/stool/chair/sofa/right/red, /turf/unsimulated/floor{ @@ -7328,10 +7458,10 @@ /area/cruise/main_bar) "fQb" = ( /obj/structure/table/wood, -/obj/item/clothing/accessory/armband/idris, /obj/machinery/light/small{ dir = 1 }, +/obj/item/clothing/head/pumpkin/lantern, /turf/unsimulated/floor{ icon_state = "wood_cherry" }, @@ -7347,7 +7477,7 @@ /area/cruise/beach) "fQJ" = ( /obj/structure/bed/stool/bar/padded/red, -/obj/structure/sign/flag/idris/right{ +/obj/structure/sign/flag/halloween/right{ pixel_y = 32 }, /turf/unsimulated/floor{ @@ -7525,6 +7655,15 @@ icon_state = "new_white" }, /area/cruise/pool) +"fVD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/item/flame/candle/waxcandles, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/cruise/aft_p) "fWc" = ( /obj/item/device/radio/intercom{ dir = 8; @@ -7537,6 +7676,10 @@ /obj/structure/bed/stool/chair/sofa/red{ dir = 8 }, +/obj/structure/sign/flag/halloween/left{ + dir = 4; + pixel_x = 32 + }, /turf/unsimulated/floor{ icon_state = "wood_cherry" }, @@ -7698,7 +7841,7 @@ /area/cruise/beach) "gbW" = ( /obj/effect/floor_decal/spline/fancy/wood/full, -/obj/structure/flora/pottedplant/random, +/obj/item/flame/candle/waxcandles, /turf/unsimulated/floor{ icon_state = "wood_birch" }, @@ -7756,6 +7899,17 @@ name = "dirt" }, /area/cruise/jungle) +"geh" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/item/clothing/head/pumpkin/lantern{ + pixel_y = 12 + }, +/turf/unsimulated/floor{ + icon_state = "turquoise" + }, +/area/cruise/aft) "geN" = ( /obj/item/device/flashlight, /obj/item/device/flashlight, @@ -7774,11 +7928,7 @@ /obj/item/device/flashlight, /obj/item/device/flashlight, /obj/item/device/flashlight, -/obj/item/device/flashlight, /obj/structure/railing/mapped, -/obj/machinery/light{ - dir = 8 - }, /turf/unsimulated/floor{ icon_state = "wood_birch" }, @@ -7989,7 +8139,6 @@ pixel_y = 14 }, /obj/machinery/door/firedoor, -/obj/item/clothing/accessory/armband/idris, /obj/machinery/door/blast/shutters/open{ id = "bar_east" }, @@ -8317,6 +8466,17 @@ icon_state = "wood_light" }, /area/cruise/library) +"gvZ" = ( +/obj/structure/flora/grass/jungle{ + icon_state = "grassa2" + }, +/obj/item/flame/candle/waxcandles, +/turf/unsimulated/floor{ + footstep_sound = /decl/sound_category/grass_footstep; + icon_state = "asteroid"; + name = "dirt" + }, +/area/cruise/jungle) "gwa" = ( /mob/living/simple_animal/cow, /obj/machinery/light{ @@ -8737,6 +8897,9 @@ /area/cruise/tcomms_sat) "gNa" = ( /obj/machinery/hologram/holopad, +/obj/effect/landmark/force_spawnpoint{ + job_tag = "Off-Duty Crew Member" + }, /turf/unsimulated/floor{ icon_state = "wood_birch" }, @@ -8750,9 +8913,6 @@ /area/cruise/pool) "gNw" = ( /obj/effect/floor_decal/corner/beige/diagonal, -/obj/effect/landmark/force_spawnpoint{ - job_tag = "Passenger" - }, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -8951,6 +9111,16 @@ icon_state = "dark2" }, /area/cruise/aft) +"gXG" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/structure/sign/flag/halloween/left{ + dir = 8; + pixel_x = -32 + }, +/turf/unsimulated/floor{ + icon_state = "new_white" + }, +/area/cruise/pool) "gYk" = ( /obj/structure/flora/grass/jungle/b, /obj/structure/flora/grass/jungle, @@ -9301,6 +9471,10 @@ /obj/machinery/light{ dir = 4 }, +/obj/structure/sign/flag/halloween/right{ + pixel_x = 32; + dir = 4 + }, /turf/unsimulated/floor{ icon_state = "wood_cherry" }, @@ -9414,15 +9588,8 @@ /obj/effect/floor_decal/spline/fancy{ dir = 4 }, -/obj/item/paper{ - info = "This stage is for the MEDAL OF VALOR 2 alpha gameplay demo! Please enter your respective team's chair for balance reasons. Do not use the enemy team's base ingame! Remember, sharing is caring!"; - name = "medal of valor intro sheet" - }, -/obj/item/paper{ - info = "This stage is for the MEDAL OF VALOR 2 alpha gameplay demo! Please enter your respective team's chair for balance reasons. Do not use the enemy team's base ingame! Remember, sharing is caring!"; - name = "medal of valor intro sheet" - }, /obj/structure/table/standard, +/obj/item/clothing/head/pumpkin/lantern, /turf/unsimulated/floor{ icon_state = "lino_grey" }, @@ -9880,7 +10047,6 @@ /obj/structure/railing/mapped{ dir = 8 }, -/obj/machinery/light/small, /turf/unsimulated/floor{ icon_state = "wood_birch" }, @@ -9933,6 +10099,12 @@ name = "gloomy grass" }, /area/cruise/virtual_reality) +"hRb" = ( +/obj/structure/table/wood, +/turf/unsimulated/floor{ + icon_state = "wood_cherry" + }, +/area/cruise/centerline) "hRm" = ( /turf/unsimulated/floor{ icon_state = "cafeteria" @@ -10074,6 +10246,9 @@ /obj/machinery/computer/cryopod{ pixel_y = -33 }, +/obj/effect/landmark/force_spawnpoint{ + job_tag = "Off-Duty Crew Member" + }, /turf/unsimulated/floor{ icon_state = "wood_birch" }, @@ -10175,6 +10350,15 @@ name = "concrete" }, /area/cruise/virtual_reality) +"icr" = ( +/obj/item/flame/candle/waxcandles{ + pixel_x = -3; + pixel_y = 22 + }, +/turf/unsimulated/floor{ + icon_state = "lino_grey" + }, +/area/cruise/pool) "icI" = ( /obj/structure/undies_wardrobe, /obj/structure/railing/mapped{ @@ -10253,6 +10437,17 @@ icon_state = "alienvault" }, /area/cruise/main_bar/aft) +"ieT" = ( +/obj/effect/floor_decal/spline/fancy/wood/full, +/obj/structure/flora/pottedplant/random, +/obj/structure/sign/flag/halloween/left{ + dir = 8; + pixel_x = -32 + }, +/turf/unsimulated/floor{ + icon_state = "wood_birch" + }, +/area/cruise/centerline) "ieV" = ( /obj/structure/flora/tree/jungle/small{ icon_state = "tree2"; @@ -10490,14 +10685,35 @@ /turf/unsimulated/floor/plating, /area/cruise/escort) "imH" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +/obj/structure/railing/mapped{ + dir = 4 }, +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/cheap_ghost_costume, +/obj/item/clothing/suit/cheap_ghost_costume, +/obj/item/clothing/suit/hacker_costume, +/obj/item/clothing/suit/hacker_costume, +/obj/item/clothing/suit/marisa_costume, +/obj/item/clothing/suit/marisa_costume, +/obj/item/clothing/suit/roman_costume, +/obj/item/clothing/suit/roman_costume, +/obj/item/clothing/suit/roman_costume, +/obj/item/clothing/suit/roman_costume, +/obj/item/clothing/suit/sumo_costume, +/obj/item/clothing/suit/sumo_costume, +/obj/item/clothing/suit/griffin_suit, +/obj/item/clothing/suit/griffin_suit, +/obj/item/clothing/head/griffin_hat, +/obj/item/clothing/head/griffin_hat, +/obj/item/clothing/head/marisa_hat, +/obj/item/clothing/head/marisa_hat, +/obj/item/clothing/head/roman_hat, +/obj/item/clothing/head/roman_hat, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor{ icon_state = "dark2" }, -/area/cruise/custodial_p) +/area/cruise/aft) "inK" = ( /obj/effect/decal/fake_object{ desc = "A descriptive sign."; @@ -10608,9 +10824,23 @@ }, /turf/template_noop, /area/template_noop) +"iqB" = ( +/obj/effect/decal/fake_object{ + desc = "A descriptive sign."; + icon = 'icons/effects/ship_idris_cruise.dmi'; + icon_state = "aft"; + name = "costumes and changing room"; + pixel_x = -32 + }, +/turf/unsimulated/floor{ + icon_state = "turquoise" + }, +/area/cruise/aft) "iqI" = ( /obj/structure/table/stone/marble, -/obj/machinery/door/window/westleft, +/obj/machinery/door/window/westleft{ + req_access = list(101) + }, /obj/machinery/door/firedoor, /turf/unsimulated/floor{ icon_state = "wood_cherry" @@ -10783,6 +11013,7 @@ /area/cruise/jungle) "iwS" = ( /obj/machinery/light, +/obj/item/clothing/head/pumpkin/lantern, /turf/unsimulated/floor{ icon_state = "freezerfloor" }, @@ -10854,12 +11085,10 @@ }, /area/cruise/jungle) "iAG" = ( -/obj/machinery/door/airlock/service{ - name = "Public Backup Custodial Closet" - }, -/obj/machinery/door/firedoor, -/turf/unsimulated/floor{ - icon_state = "dark2" +/turf/unsimulated/wall/fakeairlock{ + desc = "An off-limits room. It just says 'private' on the front."; + name = "Private Area"; + icon_state = "door_locked" }, /area/cruise/custodial_p) "iBn" = ( @@ -11018,9 +11247,23 @@ }, /area/cruise/arcade) "iKg" = ( -/obj/structure/railing/mapped, +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 4.1; + opacity = 0 + }, +/obj/structure/bed/stool, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/sign/flag/halloween/right{ + pixel_x = -32; + dir = 8 + }, /turf/unsimulated/floor{ - icon_state = "wood_light" + icon_state = "dark2" }, /area/cruise/aft) "iKx" = ( @@ -11293,7 +11536,7 @@ /obj/effect/floor_decal/spline/fancy{ dir = 4 }, -/obj/item/material/ashtray/bronze, +/obj/item/clothing/head/pumpkin/lantern, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -11500,6 +11743,20 @@ icon_state = "plating" }, /area/cruise/tcomms_sat) +"jcv" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/device/camera, +/obj/item/device/camera, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) "jcA" = ( /obj/effect/floor_decal/corner/mauve/diagonal, /obj/machinery/appliance/cooker/oven, @@ -11596,6 +11853,18 @@ icon_state = "lino_grey" }, /area/cruise/main_bar/aft) +"jfK" = ( +/obj/structure/sign/flag/idris{ + pixel_y = 32 + }, +/obj/item/clothing/head/pumpkin/lantern, +/obj/item/flame/candle/waxcandles{ + pixel_y = 19 + }, +/turf/unsimulated/floor{ + icon_state = "platebot" + }, +/area/cruise/fore_p) "jfO" = ( /obj/structure/flora/pottedplant/random, /obj/machinery/light/small, @@ -12050,6 +12319,7 @@ /area/cruise/beach_bar) "jxj" = ( /obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/cobweb2, /turf/unsimulated/floor{ icon_state = "dark" }, @@ -12125,7 +12395,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/item/toy/desk/fan, +/obj/item/clothing/head/pumpkin/lantern, /turf/unsimulated/floor{ icon_state = "wood_birch" }, @@ -12262,7 +12532,6 @@ /obj/structure/flora/rock/pile{ icon_state = "lavarocks2" }, -/obj/item/banhammer, /turf/unsimulated/beach/sand{ icon_state = "desert" }, @@ -12306,10 +12575,11 @@ }, /area/cruise/pool) "jOx" = ( -/obj/structure/railing/mapped{ - dir = 8 +/obj/machinery/light{ + dir = 1 }, -/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -12359,7 +12629,8 @@ /area/cruise/arcade) "jQV" = ( /obj/machinery/door/airlock/multi_tile/glass{ - name = "Emergency Vacuum Equipment" + name = "Emergency Vacuum Equipment"; + req_access = list(101) }, /turf/unsimulated/floor{ icon_state = "dark2" @@ -12380,13 +12651,13 @@ }, /area/cruise/pool/sauna1) "jRv" = ( -/obj/structure/flora/pottedplant/random, /obj/structure/sign/flag/idris{ pixel_y = 32 }, /obj/machinery/light{ dir = 4 }, +/obj/item/clothing/head/pumpkin/lantern, /turf/unsimulated/floor{ icon_state = "platebot" }, @@ -12424,6 +12695,12 @@ "jSp" = ( /turf/unsimulated/wall/darkshuttlewall, /area/cruise/virtual_reality) +"jTc" = ( +/obj/machinery/recharge_station, +/turf/unsimulated/floor{ + icon_state = "wood_birch" + }, +/area/cruise/aft) "jTh" = ( /obj/effect/floor_decal/spline/fancy{ dir = 1 @@ -12538,19 +12815,11 @@ }, /area/cruise/pool/sauna3) "kaG" = ( -/obj/structure/railing/mapped{ - dir = 4 +/mob/living/simple_animal/cosmozoan{ + name = "Gem" }, -/obj/structure/bed/stool/chair/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "dark2" - }, -/area/cruise/aft) +/turf/template_noop, +/area/template_noop) "kaJ" = ( /obj/effect/floor_decal/corner/mauve{ dir = 10 @@ -12646,7 +12915,8 @@ /area/cruise/main_bar) "kdk" = ( /obj/machinery/door/airlock{ - name = "Emergency Supplies Closet" + name = "Emergency Supplies Closet"; + req_access = list(101) }, /obj/machinery/door/firedoor, /turf/unsimulated/floor{ @@ -12761,12 +13031,17 @@ }, /area/cruise/pool) "kiR" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/table/rack, -/obj/random/soap, -/obj/item/device/lightreplacer/advanced, -/obj/item/device/lightreplacer/advanced, -/obj/item/device/lightreplacer/advanced, +/obj/structure/closet/walllocker{ + pixel_y = -32; + name = "\improper IPC 'Hazel'" + }, +/obj/item/clothing/suit/zombie_costume, +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 4.1; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/outline/grey, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -12790,13 +13065,17 @@ /turf/simulated/floor/wood, /area/cruise/dining_hall) "kkc" = ( -/obj/structure/table/steel, -/obj/item/device/hand_labeler, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/obj/structure/closet/walllocker{ + pixel_y = 32; + name = "\improper Anya Orlova" }, -/obj/item/pen, +/obj/item/clothing/suit/storage/target_costume, +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 4.1; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/outline/grey, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -12912,6 +13191,15 @@ }, /turf/template_noop, /area/template_noop) +"kny" = ( +/obj/effect/floor_decal/spline/fancy/wood/full, +/obj/item/flame/candle/waxcandles{ + pixel_y = 19 + }, +/turf/unsimulated/floor{ + icon_state = "wood_birch" + }, +/area/cruise/main_bar/aft) "knz" = ( /obj/structure/table/rack, /obj/item/gun/energy/rifle/ionrifle{ @@ -13030,9 +13318,17 @@ }, /area/template_noop) "kqC" = ( -/obj/effect/map_effect/window_spawner/reinforced/crescent, -/turf/unsimulated/floor/plating, -/area/cruise/custodial_p) +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/structure/sign/flag/halloween/right{ + pixel_x = -32; + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "wood_birch" + }, +/area/cruise/aft) "krr" = ( /obj/item/storage/box/fancy/cigarettes/dromedaryco{ pixel_x = -4; @@ -13053,6 +13349,13 @@ icon_state = "dark2" }, /area/cruise/security) +"ksx" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/ramp{ + dir = 4 + }, +/area/cruise/centerline) "ksy" = ( /obj/effect/floor_decal/spline/fancy/wood/full, /obj/structure/flora/pottedplant/random, @@ -13253,6 +13556,13 @@ icon_state = "floor7" }, /area/cruise/escort) +"kyR" = ( +/obj/item/clothing/head/pumpkin/lantern, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/cruise/library) "kyX" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -13291,6 +13601,10 @@ /area/cruise/tcomms_sat) "kBc" = ( /obj/structure/flora/grass/jungle, +/obj/item/flame/candle/waxcandles{ + pixel_y = 9; + pixel_x = 5 + }, /turf/simulated/floor/grass/alt{ icon_state = "grass_stalk" }, @@ -13353,6 +13667,16 @@ name = "dirt" }, /area/cruise/jungle) +"kDh" = ( +/obj/machinery/cryopod, +/obj/structure/sign/flag/halloween/left{ + dir = 4; + pixel_x = 32 + }, +/turf/unsimulated/floor{ + icon_state = "wood_birch" + }, +/area/cruise/aft) "kDq" = ( /obj/structure/window/reinforced/crescent, /obj/structure/window/reinforced/crescent{ @@ -13387,8 +13711,15 @@ /turf/unsimulated/floor/plating, /area/cruise/arcade) "kEk" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/turf/unsimulated/floor/plating, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/clothing/head/pumpkin/lantern{ + pixel_y = 12 + }, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, /area/cruise/aft) "kEO" = ( /obj/structure/window/reinforced/crescent, @@ -13624,6 +13955,12 @@ "kPB" = ( /turf/template_noop, /area/cruise/pool) +"kPV" = ( +/obj/item/clothing/head/pumpkin/lantern, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/cruise/fore) "kQc" = ( /obj/structure/railing/mapped, /obj/machinery/light/small, @@ -13905,9 +14242,6 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/effect/landmark/force_spawnpoint{ - job_tag = "Off-Duty Crew Member" - }, /turf/unsimulated/floor{ icon_state = "dark" }, @@ -13917,6 +14251,7 @@ name = "Starboard Primary Hall" }, /obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/cobweb, /turf/unsimulated/floor{ icon_state = "dark" }, @@ -14201,6 +14536,8 @@ /obj/machinery/door/airlock{ name = "VR Suite" }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/cobweb2, /turf/unsimulated/floor{ icon_state = "lino_grey" }, @@ -14457,6 +14794,9 @@ /obj/structure/railing/mapped{ dir = 8 }, +/obj/effect/landmark/force_spawnpoint{ + job_tag = "Passenger" + }, /turf/unsimulated/floor{ icon_state = "wood_birch" }, @@ -15214,6 +15554,7 @@ dir = 4 }, /obj/structure/table/stone/marble, +/obj/item/clothing/head/pumpkin/lantern, /turf/unsimulated/floor{ icon_state = "wood_cherry" }, @@ -15400,9 +15741,13 @@ /turf/simulated/floor/grass/alt, /area/cruise/hydroponics) "mfQ" = ( -/obj/machinery/stargazer, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/unsimulated/floor/plating, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/item/flame/candle/waxcandles, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, /area/cruise/aft) "mfZ" = ( /obj/structure/bed/stool/padded/red, @@ -15434,6 +15779,12 @@ icon_state = "floor7" }, /area/cruise/arcade) +"mha" = ( +/obj/structure/table/wood, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) "mhg" = ( /obj/effect/floor_decal/industrial/loading/yellow{ dir = 4 @@ -15635,6 +15986,14 @@ icon_state = "wood_light" }, /area/cruise/pool/sauna2) +"mnE" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) "mnF" = ( /obj/machinery/door/airlock/multi_tile/glass{ dir = 2; @@ -15784,7 +16143,7 @@ /area/cruise/centerline) "mub" = ( /obj/effect/landmark/force_spawnpoint{ - job_tag = "Passenger" + job_tag = "Off-Duty Crew Member" }, /turf/unsimulated/floor{ icon_state = "wood_light" @@ -15942,6 +16301,10 @@ /obj/machinery/light{ dir = 8 }, +/obj/structure/sign/flag/halloween/left{ + dir = 8; + pixel_x = -32 + }, /turf/unsimulated/floor{ icon_state = "wood_cherry" }, @@ -16122,6 +16485,9 @@ /obj/machinery/light/small{ dir = 8 }, +/obj/item/reagent_containers/food/snacks/crab_legs, +/obj/item/reagent_containers/food/snacks/crab_legs, +/obj/item/reagent_containers/food/snacks/crab_legs, /turf/simulated/floor/wood, /area/cruise/dining_hall) "mHB" = ( @@ -16462,8 +16828,9 @@ pixel_x = 7; pixel_y = 7 }, -/obj/machinery/light/small{ - dir = 8 +/obj/item/flame/candle/waxcandles{ + pixel_y = 9; + pixel_x = -11 }, /turf/unsimulated/floor{ icon_state = "alienvault" @@ -16668,6 +17035,7 @@ /obj/structure/railing/mapped{ dir = 1 }, +/obj/item/clothing/head/pumpkin/lantern, /turf/unsimulated/floor{ icon_state = "bar" }, @@ -16863,6 +17231,18 @@ icon_state = "dark2" }, /area/cruise/hangar) +"nnu" = ( +/obj/structure/table/stone/marble, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "bar_east" + }, +/obj/item/clothing/head/pumpkin/lantern, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/cruise/main_bar/aft) "nnD" = ( /obj/machinery/light/spot, /turf/unsimulated/floor{ @@ -16871,7 +17251,8 @@ /area/cruise/hangar) "nov" = ( /obj/machinery/door/airlock{ - name = "Emergency Supplies Closet" + name = "Emergency Supplies Closet"; + req_access = list(101) }, /obj/machinery/door/firedoor, /turf/unsimulated/floor{ @@ -16921,9 +17302,7 @@ /obj/structure/window/reinforced/crescent{ dir = 4 }, -/obj/machinery/light{ - dir = 4 - }, +/obj/item/flame/candle/waxcandles, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" @@ -17008,20 +17387,22 @@ icon_state = "plating" }, /area/cruise/hangar) -"nvO" = ( -/obj/structure/flora/pottedplant/random, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 +"nvn" = ( +/obj/structure/table/stone/marble, +/obj/item/flame/candle/waxcandles, +/turf/unsimulated/floor{ + icon_state = "wood_cherry" }, -/obj/structure/railing/mapped{ +/area/cruise/dining_hall) +"nvO" = ( +/obj/structure/sign/flag/halloween/right{ + pixel_x = -32; dir = 8 }, -/obj/effect/floor_decal/spline/fancy/wood/full, /turf/unsimulated/floor{ - icon_state = "wood_birch" + icon_state = "tiles_small" }, -/area/cruise/aft) +/area/cruise/aft_p) "nwn" = ( /obj/machinery/light{ dir = 1 @@ -17196,6 +17577,10 @@ "nAr" = ( /obj/structure/closet/firecloset/full, /obj/item/crowbar/rescue_axe/red, +/obj/structure/sign/flag/halloween/right{ + pixel_x = 32; + dir = 4 + }, /turf/unsimulated/floor{ icon_state = "wood_willow" }, @@ -17217,6 +17602,9 @@ name = "aft hall indicator"; pixel_y = 32 }, +/obj/item/clothing/head/pumpkin/lantern{ + pixel_y = 12 + }, /turf/unsimulated/floor{ icon_state = "turquoise" }, @@ -17240,9 +17628,6 @@ name = "aft hall indicator"; pixel_x = -32 }, -/obj/machinery/light{ - dir = 8 - }, /turf/unsimulated/floor{ icon_state = "turquoise" }, @@ -17271,9 +17656,11 @@ }, /area/cruise/central) "nFb" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor/plating, -/area/template_noop) +/obj/item/flame/candle/waxcandles, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) "nFd" = ( /obj/effect/map_effect/window_spawner/reinforced/crescent, /turf/unsimulated/floor/plating, @@ -17342,6 +17729,13 @@ icon_state = "new_white" }, /area/cruise/virtual_reality) +"nHw" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/cobweb, +/turf/unsimulated/floor{ + icon_state = "wood_cherry" + }, +/area/cruise/centerline) "nHT" = ( /obj/effect/floor_decal/corner/blue/diagonal, /obj/effect/floor_decal/spline/fancy, @@ -17549,21 +17943,18 @@ /obj/effect/floor_decal/spline/fancy{ dir = 8 }, -/obj/structure/sign/flag/idris/right{ - pixel_y = 32 - }, /obj/machinery/light/small{ dir = 1 }, +/obj/structure/sign/flag/halloween/right{ + pixel_y = 32 + }, /turf/unsimulated/floor{ icon_state = "wood_cherry" }, /area/cruise/main_bar) "nQJ" = ( /obj/effect/floor_decal/corner/beige/diagonal, -/obj/effect/landmark/force_spawnpoint{ - job_tag = "Passenger" - }, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -17657,6 +18048,16 @@ name = "dirt" }, /area/cruise/jungle) +"nTr" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/item/flame/candle/waxcandles, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) "nTt" = ( /obj/structure/window/reinforced/crescent, /obj/item/hullbeacon/red, @@ -17763,10 +18164,22 @@ /obj/effect/floor_decal/spline/fancy{ dir = 4 }, +/obj/item/flame/candle/waxcandles, /turf/unsimulated/floor{ icon_state = "dark2" }, /area/cruise/aft) +"oae" = ( +/obj/effect/floor_decal/spline/fancy/wood/full, +/obj/structure/sign/flag/halloween/right{ + pixel_x = 32; + dir = 4 + }, +/obj/structure/flora/pottedplant/random, +/turf/unsimulated/floor{ + icon_state = "wood_birch" + }, +/area/cruise/centerline) "oaw" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -17869,10 +18282,23 @@ /obj/structure/closet/crate/bin, /obj/effect/floor_decal/industrial/outline/yellow, /obj/item/hammer, +/obj/structure/sign/flag/halloween/right{ + pixel_x = -32; + dir = 8 + }, /turf/unsimulated/floor{ icon_state = "dark2" }, /area/cruise/centerline) +"ocD" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/flame/candle/waxcandles, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/pool) "ocH" = ( /obj/structure/bed/stool/padded/red, /turf/unsimulated/floor{ @@ -17988,6 +18414,10 @@ /obj/machinery/light{ dir = 8 }, +/obj/structure/sign/flag/halloween/left{ + dir = 8; + pixel_x = -32 + }, /turf/unsimulated/floor{ icon_state = "wood_birch" }, @@ -18003,10 +18433,10 @@ }, /area/cruise/escort) "ojt" = ( -/obj/structure/flora/pottedplant/random, /obj/structure/sign/flag/idris{ pixel_y = 32 }, +/obj/item/clothing/head/pumpkin/lantern, /turf/unsimulated/floor{ icon_state = "platebot" }, @@ -18060,11 +18490,21 @@ /obj/structure/window/reinforced/crescent{ dir = 8 }, +/obj/item/flame/candle/waxcandles, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" }, /area/cruise/library) +"okU" = ( +/obj/structure/window/reinforced/crescent{ + dir = 4 + }, +/obj/item/flame/candle/waxcandles, +/turf/unsimulated/floor{ + icon_state = "wood_light" + }, +/area/cruise/library) "ols" = ( /obj/structure/table/rack, /obj/item/clothing/gloves/boxing/green, @@ -18135,10 +18575,11 @@ }, /area/template_noop) "omS" = ( -/obj/structure/flora/pottedplant/random, /obj/structure/sign/flag/idris{ pixel_y = 32 }, +/obj/item/clothing/head/pumpkin/lantern, +/obj/item/flame/candle/waxcandles, /turf/unsimulated/floor{ icon_state = "platebot" }, @@ -18383,13 +18824,14 @@ }, /area/cruise/jungle) "ovI" = ( -/obj/machinery/light{ - dir = 8 +/obj/item/flame/candle/waxcandles{ + pixel_y = 3; + pixel_x = -9 }, /turf/unsimulated/floor{ icon_state = "dark2" }, -/area/cruise/aft) +/area/cruise/fore_s) "ovQ" = ( /obj/item/towel_flat{ color = "#ff0000" @@ -18507,6 +18949,9 @@ /obj/machinery/light/small{ dir = 1 }, +/obj/structure/sign/flag/halloween/right{ + pixel_y = 32 + }, /turf/unsimulated/floor{ icon_state = "lino_grey" }, @@ -18571,10 +19016,19 @@ }, /area/cruise/pool) "oGu" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light_switch{ - pixel_y = -24 +/obj/structure/closet/walllocker{ + pixel_y = -32; + name = "\improper Aubrey Piper" }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 4.1; + opacity = 0 + }, +/obj/item/clothing/suit/maid_costume, +/obj/item/clothing/head/maid_hat, +/obj/item/clothing/ears/maid_ears, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -18646,6 +19100,15 @@ icon_state = "dark2" }, /area/cruise/pool) +"oKc" = ( +/obj/structure/sign/flag/halloween/left{ + dir = 8; + pixel_x = -32 + }, +/turf/unsimulated/floor{ + icon_state = "tiles_small" + }, +/area/cruise/aft_p) "oKp" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate/bin, @@ -18761,8 +19224,16 @@ icon_state = "platebot" }, /area/template_noop) +"oPP" = ( +/obj/item/flame/candle/waxcandles, +/turf/unsimulated/floor{ + icon_state = "wood_birch" + }, +/area/cruise/aft) "oQb" = ( -/obj/structure/flora/pottedplant/random, +/obj/item/flame/candle/waxcandles{ + pixel_x = -19 + }, /turf/unsimulated/floor{ icon_state = "turquoise" }, @@ -18803,6 +19274,16 @@ icon_state = "wood_birch" }, /area/cruise/centerline) +"oRQ" = ( +/obj/effect/floor_decal/spline/fancy/wood/full, +/obj/item/flame/candle/waxcandles{ + pixel_y = 19; + pixel_x = -10 + }, +/turf/unsimulated/floor{ + icon_state = "wood_birch" + }, +/area/cruise/main_bar/aft) "oSc" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/unsimulated/floor{ @@ -18918,6 +19399,15 @@ icon_state = "new_white" }, /area/cruise/medical) +"oWC" = ( +/obj/structure/sign/flag/halloween/right{ + pixel_x = -32; + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "tiles_small" + }, +/area/cruise/fore_s) "oXd" = ( /obj/effect/map_effect/window_spawner/reinforced/crescent, /turf/unsimulated/floor/plating, @@ -18996,6 +19486,18 @@ /obj/machinery/light, /turf/simulated/floor/wood, /area/cruise/dining_hall) +"oYk" = ( +/obj/effect/decal/fake_object{ + desc = "A descriptive sign."; + icon = 'icons/effects/ship_idris_cruise.dmi'; + icon_state = "aft"; + name = "costumes and changing room"; + pixel_x = 32 + }, +/turf/unsimulated/floor{ + icon_state = "turquoise" + }, +/area/cruise/aft) "oZo" = ( /obj/machinery/light, /turf/unsimulated/floor{ @@ -19015,10 +19517,33 @@ }, /area/cruise/centerline) "pau" = ( -/obj/machinery/light{ - dir = 4 +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/bee_costume, +/obj/item/clothing/suit/bee_costume, +/obj/item/clothing/suit/dark_witch_costume, +/obj/item/clothing/suit/dark_witch_costume, +/obj/item/clothing/suit/jester_costume, +/obj/item/clothing/suit/jester_costume, +/obj/item/clothing/suit/mummy_costume, +/obj/item/clothing/suit/mummy_costume, +/obj/item/clothing/suit/schoolgirl_costume, +/obj/item/clothing/suit/schoolgirl_costume, +/obj/item/clothing/suit/witch_hunter_costume, +/obj/item/clothing/suit/witch_hunter_costume, +/obj/item/clothing/head/bee_hat, +/obj/item/clothing/head/bee_hat, +/obj/item/clothing/head/mummy_hat, +/obj/item/clothing/head/mummy_hat, +/obj/item/clothing/head/scarecrow_hat, +/obj/item/clothing/head/scarecrow_hat, +/obj/item/clothing/head/witch_hunter_hat, +/obj/item/clothing/head/witch_hunter_hat, +/obj/item/clothing/suit/scarecrow, +/obj/item/clothing/suit/scarecrow, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark2" }, -/turf/simulated/floor/tiled/ramp, /area/cruise/aft) "paL" = ( /obj/structure/table/reinforced, @@ -19082,6 +19607,16 @@ icon_state = "rub_carpet" }, /area/cruise/beach) +"pcb" = ( +/obj/effect/decal{ + icon = 'icons/effects/crayondecal.dmi'; + icon_state = "right"; + color = "#A8E61D" + }, +/turf/unsimulated/floor{ + icon_state = "turquoise" + }, +/area/cruise/aft) "pdj" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/industrial/outline/yellow, @@ -19334,6 +19869,16 @@ icon_state = "freezerfloor" }, /area/cruise/washroom_fore) +"pnM" = ( +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 4.1; + opacity = 0 + }, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) "pnU" = ( /obj/item/hullbeacon/red, /obj/structure/window/reinforced/polarized{ @@ -19508,7 +20053,7 @@ /area/cruise/central) "prP" = ( /obj/effect/landmark/force_spawnpoint{ - job_tag = "Passenger" + job_tag = "Off-Duty Crew Member" }, /turf/unsimulated/floor{ icon_state = "dark2" @@ -19665,6 +20210,7 @@ /obj/structure/railing/mapped{ dir = 4 }, +/obj/item/flame/candle/waxcandles, /turf/unsimulated/floor{ icon_state = "wood_birch" }, @@ -19693,7 +20239,6 @@ /area/cruise/escort) "pzR" = ( /obj/structure/flora/grass/jungle/b, -/obj/machinery/light/small, /turf/simulated/floor/grass/alt{ icon_state = "grass_stalk" }, @@ -19873,6 +20418,18 @@ icon_state = "new_white" }, /area/cruise/virtual_reality) +"pHU" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/structure/sign/flag/halloween/left{ + dir = 8; + pixel_x = -32 + }, +/turf/unsimulated/floor{ + icon_state = "wood_birch" + }, +/area/cruise/aft) "pIS" = ( /turf/unsimulated/mineral, /area/cruise/beach_bar) @@ -19902,11 +20459,18 @@ /obj/machinery/light{ dir = 4 }, +/obj/structure/sign/flag/halloween/left{ + dir = 4; + pixel_x = 32 + }, /turf/unsimulated/floor{ icon_state = "wood_cherry" }, /area/cruise/centerline) "pLF" = ( +/obj/effect/landmark/force_spawnpoint{ + job_tag = "Off-Duty Crew Member" + }, /turf/unsimulated/floor{ icon_state = "tiles_small" }, @@ -19918,7 +20482,9 @@ /area/cruise/beach_bar) "pOp" = ( /obj/structure/table/stone/marble, -/obj/machinery/door/window/westright, +/obj/machinery/door/window/westright{ + req_access = list(101) + }, /obj/machinery/door/firedoor, /turf/unsimulated/floor{ icon_state = "wood_cherry" @@ -20387,7 +20953,8 @@ "qhe" = ( /obj/machinery/door/airlock/multi_tile/glass{ dir = 8; - name = "Emergency Tool Storage" + name = "Emergency Tool Storage"; + req_access = list(101) }, /turf/unsimulated/floor{ icon_state = "floor7" @@ -20417,6 +20984,10 @@ "qkr" = ( /obj/structure/table/wood, /obj/item/storage/box/fancy/cookiesnack, +/obj/structure/sign/flag/halloween/right{ + pixel_x = -32; + dir = 8 + }, /turf/unsimulated/floor{ icon_state = "wood_cherry" }, @@ -20536,7 +21107,17 @@ }, /area/cruise/beach) "qpQ" = ( -/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 4.1; + opacity = 0 + }, +/obj/structure/bed/stool, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/outline/grey, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -20575,6 +21156,9 @@ /obj/machinery/atm{ pixel_y = 30 }, +/obj/effect/landmark/force_spawnpoint{ + job_tag = "Off-Duty Crew Member" + }, /turf/unsimulated/floor{ icon_state = "tiles_small" }, @@ -20831,14 +21415,6 @@ dir = 4 }, /area/cruise/central) -"qDN" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "turquoise" - }, -/area/cruise/aft) "qEi" = ( /obj/structure/window/reinforced/crescent{ dir = 4 @@ -21124,18 +21700,24 @@ }, /area/cruise/centerline) "qQn" = ( -/obj/machinery/vending/cola, -/obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/sign/flag/idris{ pixel_y = 32 }, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/vending/cola, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor{ icon_state = "turquoise" }, /area/cruise/aft) +"qQI" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 4 + }, +/obj/item/flame/candle/waxcandles, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/pool) "qQP" = ( /turf/unsimulated/floor{ footstep_sound = /decl/sound_category/grass_footstep; @@ -21175,7 +21757,6 @@ /obj/structure/table/stone/marble, /obj/effect/floor_decal/corner/mauve/diagonal, /obj/machinery/door/firedoor, -/obj/item/clothing/accessory/armband/idris, /turf/unsimulated/floor{ icon_state = "new_white" }, @@ -21216,6 +21797,8 @@ /obj/machinery/light/small{ dir = 4 }, +/obj/item/reagent_containers/food/snacks/bibimbap, +/obj/item/reagent_containers/food/snacks/bibimbap, /turf/simulated/floor/wood, /area/cruise/dining_hall) "qTw" = ( @@ -21412,8 +21995,11 @@ }, /area/cruise/pool) "rei" = ( -/obj/structure/table/wood, -/obj/item/device/camera, +/obj/effect/decal{ + icon = 'icons/effects/crayondecal.dmi'; + icon_state = "down"; + color = "#A8E61D" + }, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -21469,6 +22055,7 @@ name = "Public Backup Custodial Closet" }, /obj/machinery/door/firedoor, +/obj/structure/curtain/black, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -22185,7 +22772,6 @@ }, /area/cruise/virtual_reality) "rLN" = ( -/obj/structure/bed/stool/chair/wood, /obj/effect/decal/fake_object{ desc = "A descriptive sign."; icon = 'icons/effects/ship_idris_cruise.dmi'; @@ -22193,6 +22779,7 @@ name = "aft hall indicator"; pixel_y = 32 }, +/obj/item/flame/candle/waxcandles, /turf/unsimulated/floor{ icon_state = "turquoise" }, @@ -22275,6 +22862,15 @@ icon_state = "desert" }, /area/cruise/beach) +"rPP" = ( +/obj/structure/sign/flag/halloween/left{ + dir = 8; + pixel_x = -32 + }, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/pool) "rQy" = ( /obj/structure/sink{ dir = 8; @@ -22339,12 +22935,6 @@ icon_state = "platebot" }, /area/cruise/jungle) -"rUv" = ( -/obj/effect/landmark/force_spawnpoint{ - job_tag = "Passenger" - }, -/turf/simulated/floor/tiled/ramp, -/area/cruise/centerline) "rWa" = ( /obj/structure/window/reinforced/crescent{ dir = 4 @@ -22463,9 +23053,6 @@ "rYu" = ( /obj/structure/railing/mapped, /obj/structure/window/reinforced, -/obj/effect/landmark/force_spawnpoint{ - job_tag = "Off-Duty Crew Member" - }, /turf/unsimulated/floor{ icon_state = "dark" }, @@ -22623,6 +23210,10 @@ /obj/structure/table/wood, /obj/machinery/recharger, /obj/structure/railing/mapped, +/obj/structure/sign/flag/halloween/right{ + pixel_x = 32; + dir = 4 + }, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" @@ -22786,12 +23377,12 @@ }, /area/cruise/library) "slK" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/item/hullbeacon/red, +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor{ - icon_state = "platebot" + icon_state = "dark2" }, -/area/template_noop) +/area/cruise/aft) "smT" = ( /obj/structure/table/standard, /obj/item/paper_scanner, @@ -22991,6 +23582,13 @@ icon_state = "plating" }, /area/cruise/tcomms_sat) +"swY" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/personal, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) "sxE" = ( /obj/machinery/light/small{ dir = 1 @@ -23051,6 +23649,10 @@ "sCn" = ( /obj/structure/table/wood, /obj/random/lavalamp, +/obj/structure/sign/flag/halloween/right{ + dir = 1; + pixel_y = -32 + }, /turf/unsimulated/floor{ icon_state = "alienvault" }, @@ -23098,7 +23700,7 @@ /obj/structure/railing/mapped{ dir = 4 }, -/obj/structure/bed/stool/padded/red, +/obj/item/clothing/head/pumpkin/lantern, /turf/unsimulated/floor{ icon_state = "wood_birch" }, @@ -23133,6 +23735,16 @@ icon_state = "wood_light" }, /area/cruise/pool/sauna2) +"sFb" = ( +/obj/effect/decal{ + icon = 'icons/effects/crayondecal.dmi'; + icon_state = "left"; + color = "#A8E61D" + }, +/turf/unsimulated/floor{ + icon_state = "turquoise" + }, +/area/cruise/aft) "sFv" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/ramp{ @@ -23142,7 +23754,7 @@ "sFY" = ( /obj/structure/window/reinforced/crescent, /obj/structure/table/wood, -/obj/machinery/recharger, +/obj/item/flame/candle/waxcandles, /turf/unsimulated/floor{ icon_state = "wood_light" }, @@ -23212,11 +23824,35 @@ }, /area/cruise/hydroponics) "sGU" = ( -/obj/effect/floor_decal/industrial/warning, +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 4.1; + opacity = 0 + }, +/obj/structure/bed/stool, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/sign/flag/halloween/left{ + dir = 8; + pixel_x = -32 + }, /turf/unsimulated/floor{ icon_state = "dark2" }, /area/cruise/aft) +"sGX" = ( +/obj/machinery/door/airlock{ + name = "VR Suite" + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/cleanable/cobweb, +/turf/unsimulated/floor{ + icon_state = "lino_grey" + }, +/area/cruise/arcade) "sHN" = ( /obj/structure/sign/flag/scc{ pixel_y = 32 @@ -23407,7 +24043,7 @@ /area/cruise/central) "sQm" = ( /obj/structure/table/wood, -/obj/item/device/flashlight/lamp/lava/red, +/obj/item/clothing/head/pumpkin/lantern, /turf/unsimulated/floor{ icon_state = "wood_cherry" }, @@ -23470,6 +24106,16 @@ icon_state = "wood" }, /area/cruise/jungle) +"sSS" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/clothing/head/pumpkin/lantern, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) "sST" = ( /obj/item/towel, /obj/effect/floor_decal/spline/fancy/wood{ @@ -23515,6 +24161,25 @@ icon_state = "bar" }, /area/cruise/beach) +"sUi" = ( +/obj/structure/table/stone/marble, +/obj/item/flame/candle{ + pixel_x = 11; + pixel_y = 16 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "bar_east" + }, +/obj/item/clothing/head/pumpkin/lantern, +/obj/structure/sign/flag/halloween/left{ + pixel_y = 32 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/cruise/main_bar/aft) "sUv" = ( /obj/structure/railing/mapped{ dir = 1 @@ -23690,6 +24355,7 @@ dir = 8 }, /obj/structure/table/stone/marble, +/obj/item/clothing/head/pumpkin/lantern, /turf/unsimulated/floor{ icon_state = "wood_cherry" }, @@ -23840,10 +24506,10 @@ pixel_y = 16 }, /obj/machinery/door/firedoor, -/obj/item/clothing/accessory/armband/idris, /obj/machinery/door/blast/shutters/open{ id = "bar_west" }, +/obj/item/clothing/head/pumpkin/lantern, /turf/unsimulated/floor{ icon_state = "lino_grey" }, @@ -23962,6 +24628,18 @@ icon_state = "floor7" }, /area/cruise/arcade) +"tjK" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/flag/halloween/right{ + pixel_x = -32; + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft_s) "tjS" = ( /obj/structure{ density = 1; @@ -23991,6 +24669,16 @@ }, /turf/unsimulated/floor/plating, /area/cruise/arcade) +"tlm" = ( +/obj/machinery/cryopod, +/obj/structure/sign/flag/halloween/right{ + pixel_x = 32; + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "wood_birch" + }, +/area/cruise/aft) "tlu" = ( /obj/structure/railing/mapped, /obj/structure/railing/mapped{ @@ -24047,16 +24735,12 @@ }, /area/cruise/aft_p) "tmH" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/table/stone/marble, -/obj/item/device/flashlight/lamp, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/cobweb, /turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" + icon_state = "lino_grey" }, -/area/cruise/library) +/area/cruise/main_bar) "tmJ" = ( /obj/structure/bed/stool/padded/red, /obj/effect/floor_decal/spline/fancy{ @@ -24293,7 +24977,13 @@ }, /area/cruise/medical) "twp" = ( -/obj/structure/bed/stool/chair/office/dark, +/mob/living/carbon/human{ + name = "a mimir zzz"; + real_name = "a mimir zzz" + }, +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/item/clothing/under/pj/red, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -24577,6 +25267,13 @@ icon_state = "desert" }, /area/cruise/virtual_reality) +"tFJ" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/cobweb2, +/turf/unsimulated/floor{ + icon_state = "wood_cherry" + }, +/area/cruise/centerline) "tFS" = ( /obj/structure/railing/mapped{ color = "#6e472b"; @@ -24709,6 +25406,10 @@ "tLR" = ( /obj/structure/closet/crate/bin, /obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/sign/flag/halloween/left{ + dir = 4; + pixel_x = 32 + }, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -24828,7 +25529,6 @@ }, /area/template_noop) "tQP" = ( -/obj/structure/flora/pottedplant/random, /obj/machinery/atm{ pixel_y = 28 }, @@ -24874,6 +25574,16 @@ }, /turf/simulated/floor/beach/water/pool, /area/cruise/pool) +"tTY" = ( +/obj/item/flame/candle/waxcandles, +/obj/structure/sign/flag/halloween/right{ + pixel_x = 32; + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "turquoise" + }, +/area/cruise/aft) "tUl" = ( /obj/item/device/flashlight/flare, /obj/item/device/flashlight/flare, @@ -25395,6 +26105,26 @@ icon_state = "wood" }, /area/cruise/library) +"uiL" = ( +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 4.1; + opacity = 0 + }, +/obj/structure/bed/stool, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/sign/flag/halloween/right{ + pixel_x = 32; + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) "ujg" = ( /turf/unsimulated/floor{ icon_state = "asteroid" @@ -25498,6 +26228,10 @@ dir = 8; pixel_x = -12 }, +/obj/structure/sign/flag/halloween/right{ + pixel_x = -32; + dir = 8 + }, /turf/unsimulated/floor{ icon_state = "new_white" }, @@ -26053,10 +26787,23 @@ }, /area/cruise/virtual_reality) "uId" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/light, -/turf/unsimulated/floor/plating, -/area/template_noop) +/obj/structure/bed/stool, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) +"uIG" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy{ + dir = 4 + }, +/obj/item/flame/candle/waxcandles, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) "uJc" = ( /obj/effect/map_effect/window_spawner/reinforced/crescent, /turf/unsimulated/floor/plating, @@ -26084,8 +26831,19 @@ /turf/simulated/wall/shuttle/idris/cardinal, /area/cruise/hangar) "uJZ" = ( -/obj/effect/floor_decal/industrial/outline/custodial, -/obj/structure/closet/l3closet/janitor, +/obj/structure/closet/walllocker{ + pixel_y = 32; + name = "\improper Ava Hazel" + }, +/obj/item/clothing/accessory/ice_fairy_wings, +/obj/item/clothing/under/ice_fairy_dress, +/obj/item/clothing/head/ice_fairy_bow, +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 4.1; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/outline/grey, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -26198,9 +26956,6 @@ /obj/machinery/light{ dir = 1 }, -/obj/effect/landmark/force_spawnpoint{ - job_tag = "Passenger" - }, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -26295,7 +27050,10 @@ /area/cruise/library) "uTn" = ( /obj/structure/table/standard, -/obj/item/newspaper, +/obj/item/flame/candle/waxcandles{ + pixel_y = 10; + pixel_x = -5 + }, /turf/unsimulated/floor{ icon_state = "wood_birch" }, @@ -26422,6 +27180,8 @@ dir = 8 }, /obj/machinery/door/window/eastright, +/obj/item/reagent_containers/food/snacks/burger/cheese, +/obj/item/reagent_containers/food/snacks/burger/cheese, /turf/simulated/floor/wood, /area/cruise/dining_hall) "uXl" = ( @@ -26457,6 +27217,17 @@ icon_state = "beachcorner" }, /area/cruise/jungle) +"uZK" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/device/camera, +/obj/item/device/camera, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) "vac" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor{ @@ -26593,18 +27364,12 @@ /obj/structure/railing/mapped{ dir = 1 }, -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp{ - pixel_y = 5 - }, /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; pixel_x = -24 }, -/obj/machinery/light{ - dir = 8 - }, +/obj/item/flame/candle/waxcandles, /turf/unsimulated/floor{ icon_state = "wood_birch" }, @@ -26900,6 +27665,13 @@ name = "dirt" }, /area/cruise/jungle) +"vuH" = ( +/obj/effect/floor_decal/spline/fancy/wood/full, +/obj/item/flame/candle/waxcandles, +/turf/unsimulated/floor{ + icon_state = "wood_birch" + }, +/area/cruise/centerline) "vuJ" = ( /obj/machinery/light, /turf/unsimulated/floor{ @@ -26915,13 +27687,14 @@ }, /area/cruise/arcade) "vvz" = ( -/obj/structure/railing/mapped{ - dir = 4 +/obj/structure/sign/flag/halloween/left{ + dir = 8; + pixel_x = -32 }, /turf/unsimulated/floor{ - icon_state = "dark2" + icon_state = "lino_grey" }, -/area/cruise/aft) +/area/cruise/arcade) "vwb" = ( /turf/simulated/floor/beach/water/pool, /area/cruise/fore) @@ -26985,6 +27758,15 @@ icon_state = "dark" }, /area/cruise/security) +"vyP" = ( +/obj/structure/sign/flag/halloween/right{ + pixel_x = -32; + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/pool) "vzh" = ( /obj/structure/bed/stool/bar/padded/red, /turf/unsimulated/floor{ @@ -27101,12 +27883,14 @@ }, /area/cruise/beach) "vDS" = ( -/obj/structure/table/steel, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, /obj/machinery/light/small{ dir = 8 }, +/obj/structure/mirror{ + pixel_x = -26; + pixel_y = -2 + }, +/obj/structure/bed/stool/padded/beige, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -27181,7 +27965,7 @@ /area/template_noop) "vIP" = ( /obj/effect/floor_decal/spline/fancy/wood/full, -/obj/structure/flora/pottedplant/random, +/obj/item/flame/candle/waxcandles, /turf/unsimulated/floor{ icon_state = "wood_birch" }, @@ -27192,6 +27976,10 @@ /obj/machinery/light{ dir = 4 }, +/obj/structure/sign/flag/halloween/left{ + dir = 4; + pixel_x = 32 + }, /turf/unsimulated/floor{ icon_state = "wood_birch" }, @@ -27230,11 +28018,12 @@ }, /area/cruise/fore) "vMP" = ( -/obj/structure/bed/stool/chair/wood{ - dir = 4 +/obj/structure/sign/flag/halloween/right{ + pixel_x = -32; + dir = 8 }, /turf/unsimulated/floor{ - icon_state = "dark2" + icon_state = "turquoise" }, /area/cruise/aft) "vNb" = ( @@ -27365,10 +28154,10 @@ }, /area/cruise/escort) "vSy" = ( -/obj/structure/flora/pottedplant/random, /obj/machinery/light{ dir = 8 }, +/obj/item/flame/candle/waxcandles, /turf/unsimulated/floor{ icon_state = "wood_birch" }, @@ -27404,6 +28193,7 @@ /obj/structure/railing/mapped{ dir = 4 }, +/obj/item/clothing/head/pumpkin/lantern, /turf/unsimulated/floor{ icon_state = "wood_birch" }, @@ -27442,8 +28232,8 @@ /obj/structure/window/reinforced/crescent{ dir = 1 }, -/obj/item/device/flashlight/lamp, /obj/structure/table/wood, +/obj/item/flame/candle/waxcandles, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" @@ -27510,12 +28300,13 @@ /turf/template_noop, /area/template_noop) "vZc" = ( -/obj/effect/floor_decal/industrial/outline/custodial, -/obj/structure/closet/secure_closet/custodial{ - req_access = null +/obj/machinery/light/small{ + dir = 4 }, -/obj/structure/reagent_dispensers/peppertank/spacecleaner{ - pixel_x = 32 +/obj/structure/bed/stool/padded/beige, +/obj/structure/mirror{ + pixel_x = 26; + pixel_y = -2 }, /turf/unsimulated/floor{ icon_state = "dark2" @@ -27665,7 +28456,7 @@ dir = 1 }, /obj/effect/landmark/force_spawnpoint{ - job_tag = "Passenger" + job_tag = "Off-Duty Crew Member" }, /turf/unsimulated/floor{ icon_state = "wood_birch" @@ -27811,9 +28602,6 @@ }, /area/cruise/pool) "whZ" = ( -/obj/effect/landmark/force_spawnpoint{ - job_tag = "Passenger" - }, /turf/simulated/floor/tiled/ramp, /area/cruise/central) "wid" = ( @@ -27852,6 +28640,16 @@ icon_state = "asteroidfloor" }, /area/cruise/beach) +"wiU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Main Bar" + }, +/obj/effect/decal/cleanable/cobweb, +/turf/unsimulated/floor{ + icon_state = "lino_grey" + }, +/area/cruise/main_bar/aft) "wjb" = ( /obj/structure/closet/crate/bin, /obj/effect/floor_decal/industrial/outline/yellow, @@ -27965,7 +28763,7 @@ /area/cruise/pool/sauna2) "wma" = ( /obj/structure/bed/stool/chair/wood, -/obj/structure/sign/flag/idris/left{ +/obj/structure/sign/flag/halloween/left{ pixel_y = 32 }, /turf/unsimulated/floor{ @@ -27989,6 +28787,15 @@ icon_state = "desert" }, /area/cruise/beach) +"wnR" = ( +/obj/structure/sign/flag/halloween/left{ + dir = 4; + pixel_x = 32 + }, +/turf/unsimulated/floor{ + icon_state = "turquoise" + }, +/area/cruise/aft) "wpY" = ( /obj/effect/decal/fake_object{ desc = "A descriptive sign."; @@ -28029,12 +28836,12 @@ /obj/effect/floor_decal/spline/fancy{ dir = 8 }, -/obj/structure/sign/flag/idris/left{ - pixel_y = 32 - }, /obj/machinery/light/small{ dir = 1 }, +/obj/structure/sign/flag/halloween/left{ + pixel_y = 32 + }, /turf/unsimulated/floor{ icon_state = "lino_grey" }, @@ -28173,7 +28980,6 @@ /obj/structure/window/reinforced/crescent{ dir = 1 }, -/obj/structure/table/stone/marble, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" @@ -28346,6 +29152,26 @@ icon_state = "wood_birch" }, /area/cruise/escort) +"wGQ" = ( +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 4.1; + opacity = 0 + }, +/obj/structure/bed/stool, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/sign/flag/halloween/left{ + dir = 4; + pixel_x = 32 + }, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) "wHq" = ( /obj/structure/window/reinforced/crescent{ dir = 4 @@ -28397,6 +29223,21 @@ dir = 8 }, /obj/machinery/door/window/eastright, +/obj/item/reagent_containers/food/snacks/burrito_cheese, +/obj/item/reagent_containers/food/snacks/burrito_cheese, +/obj/item/reagent_containers/food/snacks/burrito_cheese, +/obj/item/reagent_containers/food/snacks/chilicheesefries, +/obj/item/reagent_containers/food/snacks/chilicheesefries, +/obj/item/reagent_containers/food/snacks/chilicheesefries, +/obj/item/reagent_containers/food/snacks/chipplate/nachos, +/obj/item/reagent_containers/food/snacks/chipplate/nachos, +/obj/item/reagent_containers/food/snacks/chipplate/nachos, +/obj/item/reagent_containers/food/snacks/chipplate/peanuts_bowl, +/obj/item/reagent_containers/food/snacks/chipplate/peanuts_bowl, +/obj/item/reagent_containers/food/snacks/chipplate/peanuts_bowl, +/obj/item/reagent_containers/food/snacks/lasagna, +/obj/item/reagent_containers/food/snacks/lasagna, +/obj/item/reagent_containers/food/snacks/lasagna, /turf/simulated/floor/wood, /area/cruise/dining_hall) "wJF" = ( @@ -28653,9 +29494,6 @@ /obj/effect/floor_decal/corner/blue{ dir = 6 }, -/obj/effect/landmark/force_spawnpoint{ - job_tag = "Passenger" - }, /turf/unsimulated/floor{ icon_state = "dark" }, @@ -28690,6 +29528,10 @@ /obj/machinery/light{ dir = 8 }, +/obj/structure/sign/flag/halloween/left{ + dir = 8; + pixel_x = -32 + }, /turf/unsimulated/floor{ icon_state = "dark2" }, @@ -28882,6 +29724,14 @@ icon_state = "floor7" }, /area/cruise/arcade) +"xcg" = ( +/obj/structure/closet/cabinet, +/obj/effect/landmark/costume/holiday_priest, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) "xdd" = ( /obj/effect/floor_decal/corner/green/diagonal, /turf/unsimulated/floor{ @@ -28929,6 +29779,15 @@ icon_state = "wood_birch" }, /area/cruise/escort) +"xfb" = ( +/obj/machinery/light, +/obj/item/clothing/head/pumpkin/lantern{ + pixel_y = -10 + }, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) "xfu" = ( /obj/structure/table/wood, /obj/machinery/recharger, @@ -29600,6 +30459,16 @@ /obj/structure/lattice/catwalk, /turf/unsimulated/floor/plating, /area/cruise/tcomms_sat) +"xCr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Main Bar" + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/unsimulated/floor{ + icon_state = "lino_grey" + }, +/area/cruise/main_bar/aft) "xCH" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Main Bar Suite Entry" @@ -29620,6 +30489,34 @@ icon_state = "lino_grey" }, /area/cruise/hangar) +"xCV" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/plaguedoctorhat, +/obj/item/clothing/head/plaguedoctorhat, +/obj/item/clothing/mask/gas/plaguedoctor, +/obj/item/clothing/mask/gas/plaguedoctor, +/obj/item/clothing/suit/bio_suit/plaguedoctorsuit, +/obj/item/clothing/suit/bio_suit/plaguedoctorsuit, +/obj/item/clothing/suit/nun, +/obj/item/clothing/suit/nun, +/obj/item/clothing/head/nun_hood, +/obj/item/clothing/head/nun_hood, +/obj/item/clothing/suit/judgerobe, +/obj/item/clothing/suit/judgerobe, +/obj/item/clothing/head/judge_wig, +/obj/item/clothing/head/judge_wig, +/obj/effect/landmark/costume/gladiator, +/obj/effect/landmark/costume/gladiator, +/obj/effect/landmark/costume/chicken, +/obj/effect/landmark/costume/chicken, +/obj/effect/landmark/costume/highlander, +/obj/effect/landmark/costume/highlander, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) "xDq" = ( /obj/item/card/id/all_access, /obj/effect/floor_decal/industrial/hatch, @@ -29628,6 +30525,10 @@ /area/cruise/virtual_reality) "xDt" = ( /obj/machinery/light, +/obj/structure/sign/flag/halloween/left{ + dir = 8; + pixel_x = -32 + }, /turf/unsimulated/floor{ icon_state = "turquoise" }, @@ -29682,6 +30583,7 @@ name = "Port Primary Hall" }, /obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/cobweb, /turf/unsimulated/floor{ icon_state = "dark" }, @@ -29877,6 +30779,16 @@ icon_state = "dark2" }, /area/cruise/main_bar/aft) +"xNE" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/flag/halloween/right{ + pixel_x = -32; + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "wood_birch" + }, +/area/cruise/centerline) "xNY" = ( /obj/machinery/light{ dir = 4 @@ -30095,6 +31007,13 @@ icon_state = "platebot" }, /area/cruise/escort) +"yae" = ( +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/unsimulated/floor{ + icon_state = "dark2" + }, +/area/cruise/aft) "yaB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -53725,7 +54644,7 @@ uQb uQb hUc uQb -hUc +ocD fgt xMs srw @@ -54233,7 +55152,7 @@ lgh nHT fgt uQb -uQb +vyP wWc uQb uQb @@ -54753,7 +55672,7 @@ flk flk flk flk -flk +qQI fgt mdJ tuR @@ -55269,7 +56188,7 @@ jpA fgF gaM uov -nNd +gXG hcp fgt lCn @@ -56819,8 +57738,8 @@ iCX iCX xdd xdd -uQb -uQb +vyP +rPP pZO fgt uJc @@ -57250,7 +58169,7 @@ qzs qzs hfT fob -qzs +cqk bgj qzs qzs @@ -57271,7 +58190,7 @@ lWQ lWQ lWQ wfr -omS +jfK kcK vzM tyZ @@ -57576,7 +58495,7 @@ ohc nYS nYS nYS -nYS +dEj fgt boC aet @@ -57594,8 +58513,8 @@ uQb uQb gVt fgt +icr nYS -fDY fgt fgt fgt @@ -58026,7 +58945,7 @@ fLx fLx dyr weA -qzs +cqk dyr weA hfT @@ -58097,7 +59016,7 @@ cfA jIE fSJ fSJ -mzj +fVD uJc oSt oSt @@ -58851,8 +59770,8 @@ shq ulC uRK sBc -xTE -xTE +nvO +oKc xTE ulC xTE @@ -58897,7 +59816,7 @@ lQy lQy lQy iOr -tLR +akE xDt iOr iOr @@ -59063,7 +59982,7 @@ lWQ lIu oSt oSt -gfJ +kaG oSt oSt oSt @@ -59118,7 +60037,7 @@ xTE xTE jth uJZ -uJZ +bdT vDS bdT kiR @@ -59144,7 +60063,7 @@ xhc iRT iRT iRT -ovI +iRT iRT jim pES @@ -59373,7 +60292,7 @@ rkp mEY xTE xTE -kqC +jth twp bdT bdT @@ -59632,9 +60551,9 @@ iwe uck jth kkc -imH +bdT vZc -bFV +bdT arM jth uck @@ -59651,22 +60570,22 @@ dwA nsj wXO wXO -wXO +eII dwA dwA sAV wLs snG -kaG -iTT -kaG -nZN +iRT +iRT +iRT +jim pES pES asy pES pES -qDN +pES pES pES pES @@ -59913,11 +60832,11 @@ vHO dwA vIP pES -pES -pES -pES -pES -pES +aWx +iRT +iRT +iRT +jim pES iRF iOr @@ -60132,7 +61051,7 @@ oSt asj dwA mts -rUv +jHC cWJ lbW lbW @@ -60170,11 +61089,11 @@ vHO dwA eZI pES -pES -pES -pES -pES -pES +aWx +uIG +iTT +jcv +nZN pES sAV iOr @@ -60389,8 +61308,8 @@ oSt oSt esl ita -cAw -ebS +jsi +lbW lbW lbW lbW @@ -60646,12 +61565,12 @@ oSt oSt esl tUm -cAw -ebS +jsi +lbW wTC wTC wTC -ebS +lbW rYu xil nhW @@ -60677,7 +61596,7 @@ vHO dwA dwA esl -esl +dwA dwA dwA dwA @@ -60814,7 +61733,7 @@ gVc dxP dxP vSS -aPP +vFH soG cEJ cEJ @@ -60903,7 +61822,7 @@ oSt asj dwA mts -rUv +jHC cEF nQJ nQJ @@ -60934,27 +61853,27 @@ vHO dwA xiy asj -asj xiy -nFb +yae +iRT uId -lQy -rtq -tLR -ykB -rtq -qDN +iOr pES pES +oYk +pcb +pcb +wnR +emS pES hJs pLF pLF pLF pLF -pau +dme pES -oQb +cnk iOr iOr usu @@ -61071,7 +61990,7 @@ hBF lOT lOT bUa -eGW +kyR soG soG lAG @@ -61096,12 +62015,12 @@ gxb xBF wOY whZ -bxm mJD -bxm -bxm -ceU -ceU +mJD +mJD +mJD +mJD +mJD xBF fTI knn @@ -61181,7 +62100,7 @@ oKp dwA dwA dwA -btb +eEt btb dwA dwA @@ -61191,22 +62110,22 @@ esl dwA rMe oSt -oSt -oSt -nFb -asj -lQy -iKg -nvO +xiy +swY iRT -jim -lQy +blU +iOr +iOr +iOr +iOr +pnM +pnM iOr iOr iOr iOr lQy -jNh +djM qcE lQy iOr @@ -61355,10 +62274,10 @@ aHf lJi sht nyD -bxm -bxm -ceU -ceU +mJD +mJD +mJD +mJD ffg oSt lIu @@ -61441,33 +62360,33 @@ vHO bAB qWZ cBe -cOM +ieT dwA cwG fcA smV oSt oSt -oSt -oSt -slK -asj -lQy -iKg +xiy +swY iRT +uId +yae qpQ qpQ -vMP +qpQ +iRT +iRT rei -iOr +pau sAV sck vUm bcx bcx -vSy -vbP -vbP +oPP +kqC +pHU vbP gJA iOr @@ -61610,9 +62529,9 @@ gxb xBF wOY whZ -bxm mJD -bxm +mJD +mJD agC gDZ wmZ @@ -61663,7 +62582,7 @@ iQL wJF ezk ezk -rzl +aFo kxc gxb lIu @@ -61705,18 +62624,18 @@ fcA apU iuV lIu -iuV -lIu -nFb -asj -lQy -iKg +xiy +slK iRT -qpQ -qpQ -qpQ iRT -iOr +iRT +iRT +iRT +iRT +iRT +iRT +rei +dxf iOr rWi prP @@ -61842,7 +62761,7 @@ eGW eGW eGW eGW -eGW +kyR soG tQP feP @@ -61962,18 +62881,18 @@ fcA smV oSt gfJ -oSt -oSt -nFb -asj -lQy -aFo -vvz -dlF -dlF -qpQ -gXu -iOr +xiy +jOx +iRT +iRT +iRT +iRT +iRT +iRT +iRT +iRT +rei +eBi iOr rWi prP @@ -62096,8 +63015,8 @@ kDq gjp aEl mXr +aPP gIF -tmH mXr npU soG @@ -62174,7 +63093,7 @@ xiy erJ qrV kxc -dek +kny lux lux lux @@ -62189,7 +63108,7 @@ lux sOX lux lux -vHa +wiU vgc eDB qWZ @@ -62219,18 +63138,18 @@ fcA smV oSt gfJ -oSt -oSt -nFb -asj -lQy -iKg -sGU -kEk -kEk -emS +xiy +slK iRT -iOr +iRT +mha +wGQ +uiL +qpQ +iRT +iRT +rei +imH iOr rWi prP @@ -62362,7 +63281,7 @@ soG feP feP rIw -feP +kPV qdK soG rrw @@ -62432,7 +63351,7 @@ cXu cXu kxc kxc -qdj +lux lux lux fxw @@ -62465,7 +63384,7 @@ qWZ vuJ esl ddz -qWZ +cbC qWZ anI vHO @@ -62476,17 +63395,17 @@ fdx apU iuV usu -iuV -usu -nFb -asj -lQy -iKg -sGU -mfQ -kEk -emS +xiy +slK iRT +xfb +iOr +iOr +iOr +iOr +kEk +iRT +gXu iOr iOr ftS @@ -62688,7 +63607,7 @@ oUq rzW qrV kxc -dek +oRQ lux lux lux @@ -62703,7 +63622,7 @@ lux sUH lux lux -vHa +xCr vkp eDB qWZ @@ -62721,8 +63640,8 @@ oZQ oZQ aaR esl -qWZ -qWZ +hRb +hRb qWZ anI vHO @@ -62733,18 +63652,18 @@ fcA smV oSt oSt -oSt -oSt -nFb -asj -lQy +xiy +slK +iRT +iRT +mha iKg sGU -kEk -kEk -emS +qpQ iRT -iOr +iRT +iRT +mha iOr rWi prP @@ -62978,8 +63897,8 @@ lCi lCi pRn dwA -qWZ -qWZ +cbC +cbC qWZ anI vHO @@ -62990,18 +63909,18 @@ fcA smV oSt oSt -oSt -oSt -nFb -asj -lQy -aFo -eBi +xiy jOx -jOx -qpQ -gXu -iOr +iRT +iRT +iRT +iRT +iRT +iRT +iRT +iRT +rei +xCV iOr rWi prP @@ -63219,7 +64138,7 @@ gxb lIu asj esl -vJi +vuH jkn fWm hog @@ -63247,18 +64166,18 @@ fcA apU iuV lIu -iuV -lIu -nFb -asj -lQy -iKg -afh -qpQ -qpQ -qpQ +xiy +slK iRT -iOr +iRT +iRT +iRT +iRT +iRT +iRT +iRT +rei +xcg iOr rWi prP @@ -63411,9 +64330,9 @@ sMx jVy xAY crT -bxm -bxm -bxm +mJD +mJD +mJD mJD ffg cnT @@ -63452,13 +64371,13 @@ aiT aiT clw kxc -rrs +sUi hdk fSl hRY rrs ktD -hdk +nnu era qAF qAF @@ -63481,7 +64400,7 @@ vZG vZG vZG vZG -igM +cGi fvZ vZG vZG @@ -63497,33 +64416,33 @@ vHO bAB qWZ pKY -cOM +oae dwA cwG fcA smV oSt oSt -oSt -oSt +xiy slK -asj -lQy -iKg -blU +iRT +uId +yae +qpQ qpQ qpQ iRT iRT -iOr +nFb +mha sAV ili cYE bcx bcx -wDJ -ujX -ujX +jTc +kDh +tlm ujX gJA iOr @@ -63633,7 +64552,7 @@ iyo gvv eTR hZt -hZt +okU gWo bMD cEJ @@ -63665,8 +64584,8 @@ qLX eNx xBF sMx -aNq -aNq +jVy +jVy cGS uNI gNw @@ -63751,7 +64670,7 @@ qWZ dwA dwA dwA -sFv +ksx sFv dwA dwA @@ -63761,16 +64680,16 @@ esl dwA rMe oSt -oSt -oSt -nFb -asj -lQy -iKg -nvO +xiy +slK iRT -jim -lQy +blU +iOr +iOr +iOr +iOr +pnM +pnM iOr iOr iOr @@ -63923,7 +64842,7 @@ eNx xBF rFd ejQ -aNq +jVy gPi wju wju @@ -64006,7 +64925,7 @@ esl esl esl dwA -eoi +xNE ohX sPq sPq @@ -64018,18 +64937,18 @@ vHO dwA xiy asj -asj xiy +yae nFb uId -lQy -snG -tLR -wLs -snG -dDd +iOr pES pES +iqB +sFb +sFb +vMP +dlF pES vtm pLF @@ -64275,12 +65194,12 @@ eWm dwA dwA esl -esl dwA dwA dwA dwA -qru +dwA +geh pES pES pES @@ -64515,7 +65434,7 @@ tXV xsl sPq sPq -fhF +nHw wXY sPq sPq @@ -64758,7 +65677,7 @@ oSt oSt oXd gbW -tQW +vlL vlL tQW vlL @@ -64772,7 +65691,7 @@ tXV igM sPq sPq -fhF +tFJ wXY sPq sPq @@ -64796,11 +65715,11 @@ qWZ dwA qQn pES -pES -pES -pES -pES -pES +aWx +mfQ +sSS +uZK +nTr pES sAV iOr @@ -65053,18 +65972,18 @@ sfH dwA glz pES -pES -pES -pES -pES -pES +aWx +iRT +iRT +iRT +jim pES iRF iOr wLs wLs iOr -pES +fCn pES pES iOr @@ -65309,18 +66228,18 @@ qQe dwA dwA sAV -pES -pES -pES -pES -pES -pES +ykB +rtq +iRT +iRT +iRT +jim pES pES nBY pES pES -dDd +pES pES pES pES @@ -65458,7 +66377,7 @@ qQP qQP qSc qQP -sGy +gvZ cLb jlw qQP @@ -65566,12 +66485,12 @@ quM lbk iNw jrP -pES -pES -pES -pES -pES -pES +iRT +iRT +iRT +iRT +iRT +jim pES pES pES @@ -65755,7 +66674,7 @@ iBq wez lIu iUS -tyZ +tmH jMA hXW iUS @@ -65795,7 +66714,7 @@ bgk mge uXl chu -wKP +nvn vZG oRK sPq @@ -65823,12 +66742,12 @@ quM bNG fWc vfK -pES -pES -pES -qDN -pES -pES +iRT +iRT +iRT +mnE +iRT +jim pES pES pES @@ -66084,8 +67003,8 @@ lQy lQy lQy iOr -pES -pES +fGm +jim kzw iOr lQy @@ -66094,7 +67013,7 @@ lQy lQy iOr tLR -xDt +tTY iOr iOr eeg @@ -66300,7 +67219,7 @@ oSt oSt oXd gbW -tYA +sIH sIH tYA sIH @@ -67554,7 +68473,7 @@ soC ojt xAz iUS -tyZ +fHn jMA iUS mUi @@ -67581,11 +68500,11 @@ kxc loo bLx bLx -loo +ovI soC tul -hWr -hWr +afh +bFV hWr ryN vPo @@ -68108,8 +69027,8 @@ tMr cgq hWr cgq -vPo -hWr +tjK +bFV hWr hWr hWr @@ -69370,8 +70289,8 @@ mUi mUi soC eDK -kRc -nlU +oWC +cmT kRc kRc ecq @@ -70931,7 +71850,7 @@ jUL jUL vQF sjz -lmg +sGX sjz sjz juG @@ -71189,11 +72108,11 @@ jUL iVT iTc chC +cEX +vvz chC -chC -chC -chC -llz +cEX +fOF chC chC chC