From 528ec49d8defe517795e52a90de98b07439948e4 Mon Sep 17 00:00:00 2001 From: copper-404 Date: Mon, 15 Dec 2025 13:55:11 +0200 Subject: [PATCH 1/7] Update warrior.dm --- code/modules/jobs/job_types/adventurer/types/combat/warrior.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/jobs/job_types/adventurer/types/combat/warrior.dm b/code/modules/jobs/job_types/adventurer/types/combat/warrior.dm index 457b05b9397..6fea639d2a7 100644 --- a/code/modules/jobs/job_types/adventurer/types/combat/warrior.dm +++ b/code/modules/jobs/job_types/adventurer/types/combat/warrior.dm @@ -23,7 +23,7 @@ H.adjust_skillrank(/datum/skill/misc/swimming, 2, TRUE) H.adjust_skillrank(/datum/skill/misc/climbing, 2, TRUE) H.adjust_skillrank(/datum/skill/misc/riding, pick(1,1,2), TRUE) - H.adjust_skillrank(/datum/skill/misc/reading, pick(0,1,1), TRUE) + H.adjust_skillrank(/datum/skill/misc/reading, 1, TRUE) //UNIVERSAL GEAR shoes = pick(/obj/item/clothing/shoes/boots, /obj/item/clothing/shoes/boots/furlinedboots) // no armored boots for common adventurers. From f15204f46c1661626076f4524359c0136d87d806 Mon Sep 17 00:00:00 2001 From: copper-404 Date: Mon, 15 Dec 2025 13:55:34 +0200 Subject: [PATCH 2/7] Update vikingr.dm --- code/modules/jobs/job_types/adventurer/types/combat/vikingr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/jobs/job_types/adventurer/types/combat/vikingr.dm b/code/modules/jobs/job_types/adventurer/types/combat/vikingr.dm index 2251d4dcce2..6b35c36b208 100644 --- a/code/modules/jobs/job_types/adventurer/types/combat/vikingr.dm +++ b/code/modules/jobs/job_types/adventurer/types/combat/vikingr.dm @@ -16,7 +16,7 @@ H.adjust_skillrank(/datum/skill/combat/unarmed, 2, TRUE) H.adjust_skillrank(/datum/skill/misc/athletics, 3, TRUE) H.adjust_skillrank(/datum/skill/combat/swords, 2, TRUE) - H.adjust_skillrank(/datum/skill/misc/reading, pick(0,1,1), TRUE) + H.adjust_skillrank(/datum/skill/misc/reading, 1, TRUE) H.adjust_skillrank(/datum/skill/combat/axesmaces, 2, TRUE) if(H.gender == FEMALE) From 13edd5ef12a521f98b0ecd89d219e22992a28c25 Mon Sep 17 00:00:00 2001 From: copper-404 Date: Mon, 15 Dec 2025 13:56:02 +0200 Subject: [PATCH 3/7] Update rogue.dm --- code/modules/jobs/job_types/adventurer/types/combat/rogue.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/jobs/job_types/adventurer/types/combat/rogue.dm b/code/modules/jobs/job_types/adventurer/types/combat/rogue.dm index bc0146827d7..933e1ac0ce6 100644 --- a/code/modules/jobs/job_types/adventurer/types/combat/rogue.dm +++ b/code/modules/jobs/job_types/adventurer/types/combat/rogue.dm @@ -21,7 +21,7 @@ H.adjust_skillrank(/datum/skill/misc/athletics, 3, TRUE) H.adjust_skillrank(/datum/skill/misc/swimming, 2, TRUE) H.adjust_skillrank(/datum/skill/misc/climbing, 5, TRUE) - H.adjust_skillrank(/datum/skill/misc/reading, pick(0,1,1), TRUE) + H.adjust_skillrank(/datum/skill/misc/reading, 1, TRUE) H.adjust_skillrank(/datum/skill/misc/sewing, 1, TRUE) H.adjust_skillrank(/datum/skill/misc/sneaking, 5, TRUE) H.adjust_skillrank(/datum/skill/misc/stealing, 5, TRUE) From 77faa5775d24dc12342e925bdc354041ba8e1174 Mon Sep 17 00:00:00 2001 From: Copper404 Date: Tue, 20 Jan 2026 23:03:01 +0200 Subject: [PATCH 4/7] Hello, first time trying to make a pull request, apologies if I am not following procedure. This changes thief and fighter adventurers to have a reading skill every time without having to roll the skills. This is good for the game because it makes character consistency better, you will no longer have to go waste five minutes of your round breaking into the matrons' because your character suddenly cannot read. --- code/modules/jobs/job_types/adventurer/types/combat/rogue.dm | 2 +- code/modules/jobs/job_types/adventurer/types/combat/warrior.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/jobs/job_types/adventurer/types/combat/rogue.dm b/code/modules/jobs/job_types/adventurer/types/combat/rogue.dm index 7bc6fd4257b..62315a29836 100644 --- a/code/modules/jobs/job_types/adventurer/types/combat/rogue.dm +++ b/code/modules/jobs/job_types/adventurer/types/combat/rogue.dm @@ -21,6 +21,7 @@ /datum/skill/misc/stealing = 5, /datum/skill/misc/lockpicking = 4, /datum/skill/craft/traps = 3, + /datum/skill/misc/reading = 1, ) jobstats = list( @@ -41,7 +42,6 @@ /datum/job/advclass/combat/rogue/after_spawn(mob/living/carbon/human/spawned, client/player_client) . = ..() spawned.adjust_skillrank(/datum/skill/combat/swords, pick(0,0,1), TRUE) - spawned.adjust_skillrank(/datum/skill/misc/reading, pick(0,1,1), TRUE) /datum/outfit/adventurer/rogue name = "Thief (Adventurer)" diff --git a/code/modules/jobs/job_types/adventurer/types/combat/warrior.dm b/code/modules/jobs/job_types/adventurer/types/combat/warrior.dm index dea87d7b163..9029e7a78b8 100644 --- a/code/modules/jobs/job_types/adventurer/types/combat/warrior.dm +++ b/code/modules/jobs/job_types/adventurer/types/combat/warrior.dm @@ -20,6 +20,7 @@ /datum/skill/combat/knives = 2, /datum/skill/misc/swimming = 2, /datum/skill/misc/climbing = 2, + /datum/skill/misc/reading = 1, ) jobstats = list( @@ -45,7 +46,6 @@ ADD_TRAIT(spawned, TRAIT_STEELHEARTED, TRAIT_GENERIC) spawned.adjust_skillrank(/datum/skill/misc/riding, pick(1,1,2), TRUE) - spawned.adjust_skillrank(/datum/skill/misc/reading, pick(0,1,1), TRUE) /datum/outfit/adventurer/sfighter From 5da1fbdbf9a847a4622ddd7f2dd0d57b45aec29e Mon Sep 17 00:00:00 2001 From: Copper404 Date: Fri, 24 Jul 2026 03:37:54 +0300 Subject: [PATCH 5/7] daftmarsh fixes --- _maps/map_files/daftmarsh/daftmarsh.dmm | 8500 +++++++++++++---------- 1 file changed, 4921 insertions(+), 3579 deletions(-) diff --git a/_maps/map_files/daftmarsh/daftmarsh.dmm b/_maps/map_files/daftmarsh/daftmarsh.dmm index 7949a30de96..a6c54d98064 100644 --- a/_maps/map_files/daftmarsh/daftmarsh.dmm +++ b/_maps/map_files/daftmarsh/daftmarsh.dmm @@ -9,13 +9,13 @@ /turf/open/floor/church/purple, /area/indoors/town/church/inquisition) "aay" = ( -/obj/structure/table/wood/reinf_long, -/obj/item/weapon/knife/cleaver{ - pixel_x = 1; - pixel_y = 4 +/obj/structure/fluff/railing/border{ + dir = 8 }, -/turf/open/floor/metal, -/area/indoors/town/garrison) +/turf/open/floor/rooftop{ + dir = 8 + }, +/area/outdoors/town/roofs) "aaH" = ( /obj/machinery/light/fueled/wallfire/candle/blue/r, /obj/structure/rack, @@ -46,6 +46,12 @@ }, /turf/open/floor/blocks/stonered/tiny, /area/indoors/town/dwarfin) +"acF" = ( +/obj/structure/fluff/railing/border{ + dir = 6 + }, +/turf/open/floor/metal, +/area/indoors/town/garrison) "acT" = ( /obj/structure/fluff/railing/wood{ dir = 1; @@ -76,6 +82,10 @@ /obj/machinery/light/fueled/wallfire/candle/l, /turf/open/floor/tile, /area/indoors/town/keep/lord_appt) +"aeg" = ( +/obj/machinery/light/fueled/torchholder, +/turf/closed/wall/mineral/wood, +/area/indoors/town) "aeA" = ( /obj/structure/door/window, /obj/effect/mapping_helpers/access/keyset/town/butcher, @@ -86,6 +96,17 @@ /obj/structure/bookcase/random_recipes, /turf/open/floor/greenstone, /area/indoors/town/keep/library) +"aeF" = ( +/obj/machinery/light/fueled/wallfire/candle{ + pixel_y = -32 + }, +/obj/structure/rack{ + name = "coat rack" + }, +/turf/open/floor/tile/masonic/arrow{ + dir = 1 + }, +/area/indoors/town/steward) "aeR" = ( /obj/structure/chair/wood/alt/chair_noble{ dir = 8 @@ -187,7 +208,7 @@ "ajj" = ( /obj/structure/closet/crate/chest/neu, /turf/open/floor/metal/alt, -/area/indoors/town/shop) +/area/indoors/town/clocktower) "ajs" = ( /obj/structure/fluff/railing/border{ dir = 4 @@ -284,6 +305,11 @@ }, /turf/open/water, /area/under/cavewet) +"alE" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/bed/shit, +/turf/open/floor/metal/barograte, +/area/indoors/town/garrison) "alM" = ( /obj/structure/flora/grass/water, /turf/open/floor/cobblerock, @@ -341,7 +367,7 @@ "apI" = ( /obj/effect/decal/cleanable/debris/stone, /turf/open/floor/metal, -/area/indoors/town/shop) +/area/indoors/town/clocktower) "apK" = ( /obj/structure/table/wood/counter/end{ dir = 6 @@ -477,7 +503,9 @@ /turf/open/floor/dirt, /area/outdoors/town) "awY" = ( -/turf/open/floor/herringbone, +/obj/structure/ladder, +/obj/structure/ladder, +/turf/open/floor/ruinedwood/darker, /area/indoors/town/garrison) "axf" = ( /obj/structure/closet/crate/drawer, @@ -493,10 +521,14 @@ /turf/open/floor/wood, /area/outdoors/town) "ayk" = ( -/obj/structure/bed/wool/double, -/obj/item/bedsheet/double_pelt, -/turf/open/floor/carpet/purple, -/area/indoors/town/steward) +/obj/structure/table/wood/reinforced_alt{ + dir = 4 + }, +/obj/item/candle/scandle/lit{ + pixel_y = 4 + }, +/turf/open/floor/cobblerock, +/area/under/town/basement) "ays" = ( /obj/structure/closet/crate/chest/neu, /obj/item/reagent_containers/food/snacks/hardtack{ @@ -633,11 +665,6 @@ }, /turf/open/floor/twig, /area/outdoors/town) -"aCr" = ( -/obj/structure/fluff/railing/border, -/obj/structure/closet/crate/crafted_closet/crafted, -/turf/open/floor/wood, -/area/indoors/town/garrison) "aCx" = ( /obj/structure/table/wood{ icon_state = "longtable"; @@ -668,7 +695,7 @@ /area/indoors/town) "aDR" = ( /obj/structure/fake_machine/hailerboard, -/turf/open/floor/cobblerock, +/turf/open/floor/wood/nosmooth, /area/outdoors/town) "aEc" = ( /obj/structure/rack/shelf/biggest, @@ -857,6 +884,12 @@ }, /turf/open/floor/blocks/newstone/alt, /area/indoors/town/keep/heir/heir1) +"aJX" = ( +/obj/structure/fluff/railing/border{ + dir = 10 + }, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "aKa" = ( /obj/structure/handcart, /turf/open/floor/cobble/mossy, @@ -985,16 +1018,11 @@ /turf/open/water/swamp, /area/under/town/sewer) "aNB" = ( -/obj/structure/closet/crate/crafted_closet, -/obj/item/clothing/armor/leather/jacket/silk_coat, -/obj/item/clothing/armor/leather/jacket/silk_coat, -/obj/item/clothing/shirt/dress/silkdress/colored/random, -/obj/item/clothing/shirt/dress/silkdress/colored/random, -/obj/machinery/light/fueled/wallfire/candle{ - pixel_y = -32 +/obj/structure/table/wood/large/corner{ + dir = 9 }, -/turf/open/floor/ruinedwood/turned/darker, -/area/indoors/town/theatre) +/turf/open/floor/carpet/purple, +/area/indoors/town/keep/courtagent) "aNO" = ( /obj/structure/closet/crate/chest/old_crate, /obj/item/clothing/face/cigarette/rollie/nicotine, @@ -1124,12 +1152,10 @@ /turf/open/floor/dirt/road, /area/under/town/sewer) "aSU" = ( -/obj/structure/table/wood{ - icon_state = "longtable" - }, -/obj/item/perfume/random, -/turf/open/floor/ruinedwood/turned/darker, -/area/indoors/town/theatre) +/obj/structure/ladder, +/obj/machinery/light/fueled/wallfire/candle/r, +/turf/open/floor/ruinedwood/alt, +/area/indoors/town) "aSZ" = ( /obj/structure/table/wood/large/corner_new{ dir = 5 @@ -1185,6 +1211,14 @@ }, /turf/open/floor/woodturned/nosmooth, /area/outdoors/town) +"aUc" = ( +/obj/structure/fluff/railing/border, +/obj/structure/rack{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/woodturned/nosmooth, +/area/indoors/town/garrison) "aUd" = ( /obj/machinery/light/fueled/torchholder/l{ dir = 8 @@ -1275,6 +1309,9 @@ /obj/structure/fluff/clodpile/dirt, /turf/open/floor/dirt, /area/outdoors/exposed/church/graveyard) +"aWX" = ( +/turf/open/floor/woodturned/nosmooth, +/area/indoors/town/garrison/lieutenant) "aXe" = ( /turf/closed/wall/mineral/wooddark, /area/indoors/town/clinic_large) @@ -1481,9 +1518,6 @@ /obj/structure/chair/stool, /turf/open/floor/blocks/newstone/alt, /area/indoors/town/merc_guild) -"bcp" = ( -/turf/open/floor/metal, -/area/indoors/town/shop) "bcz" = ( /obj/structure/stairs/fancy/l, /turf/open/floor/carpet/lord/left, @@ -1504,6 +1538,13 @@ "bcX" = ( /turf/closed/wall/mineral/decorstone/moss, /area/outdoors/basin) +"bdj" = ( +/obj/structure/table/wood/reinf_long{ + dir = 8 + }, +/obj/item/cooking/pan, +/turf/open/floor/tile/bfloorz, +/area/indoors/town/garrison) "bdr" = ( /obj/machinery/light/fueled/torchholder/l{ dir = 8 @@ -1534,8 +1575,9 @@ /turf/open/floor/churchbrick, /area/indoors/town/keep) "bfA" = ( -/turf/open/floor/carpet/green, -/area/indoors/town/steward) +/obj/machinery/light/fueled/wallfire/candle/l, +/turf/open/floor/cobblerock, +/area/outdoors/town/keep) "bfC" = ( /obj/structure/closet/crate/chest/wicker, /obj/item/reagent_containers/food/snacks/produce/grain/wheat, @@ -1657,11 +1699,6 @@ "bku" = ( /turf/open/floor/dirt/road, /area/under/town/sewer) -"bkM" = ( -/obj/structure/rack, -/obj/machinery/light/fueled/wallfire/candle/l, -/turf/open/floor/wood, -/area/indoors/town/garrison) "bmo" = ( /obj/structure/fluff/railing/wood{ dir = 8; @@ -1692,6 +1729,10 @@ /obj/structure/fluff/nest, /turf/open/floor/dirt, /area/outdoors/town) +"boo" = ( +/obj/structure/bars, +/turf/open/floor/woodturned/nosmooth, +/area/indoors/town/garrison) "bot" = ( /obj/structure/fermentation_keg/random/beer, /turf/open/floor/dirt/road, @@ -1870,6 +1911,10 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/tile, /area/under/town/sewer) +"bvc" = ( +/obj/structure/fluff/railing/border, +/turf/open/floor/carpet/red, +/area/indoors/town/garrison) "bvE" = ( /obj/item/gem, /turf/open/floor/tile/checker, @@ -1973,12 +2018,33 @@ /turf/open/floor/twig, /area/indoors/butchershop) "bAW" = ( -/obj/structure/table/wood/large_new{ - icon_state = "alt_largetable"; - dir = 1 +/obj/structure/rack/shelf/biggest, +/obj/item/needle{ + pixel_x = -4; + pixel_y = 5 }, -/turf/open/floor/carpet/red, -/area/indoors/town/theatre) +/obj/item/needle{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/needle{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/item/natural/bundle/cloth/full{ + pixel_x = 1; + pixel_y = -7 + }, +/obj/item/lockpickring/mundane{ + pixel_x = 1; + pixel_y = 0 + }, +/obj/item/lockpickring/mundane{ + pixel_x = 1; + pixel_y = 0 + }, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "bBh" = ( /obj/structure/table/wood/counter/end{ dir = 1 @@ -1989,6 +2055,27 @@ }, /turf/open/floor/wood, /area/indoors/town) +"bBA" = ( +/obj/structure/closet/crate/crafted_closet{ + name = "Yeoman Attire" + }, +/obj/item/clothing/head/articap, +/obj/item/clothing/shirt/undershirt/artificer, +/obj/item/clothing/pants/trou/artipants, +/obj/item/clothing/armor/leather/jacket/artijacket, +/obj/item/clothing/shoes/simpleshoes/buckle, +/obj/item/clothing/shoes/simpleshoes/buckle, +/obj/item/clothing/cloak/apron/brown, +/obj/item/clothing/shirt/shortshirt, +/obj/item/clothing/pants/trou, +/obj/item/clothing/head/hatfur, +/obj/item/clothing/head/chaperon/colored/greyscale/silk/random, +/obj/item/clothing/shoes/gladiator, +/obj/item/clothing/shirt/tunic/colored/blue, +/obj/item/clothing/shirt/robe/merchant, +/obj/machinery/light/fueled/wallfire/candle, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "bBL" = ( /obj/effect/landmark/start/farmer{ dir = 4 @@ -2020,22 +2107,8 @@ /turf/open/floor/hexstone, /area/indoors/town/church) "bDy" = ( -/obj/structure/rack, -/obj/item/weapon/mace/cudgel, -/obj/item/weapon/mace/cudgel{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/weapon/mace/cudgel{ - pixel_x = 6; - pixel_y = -5 - }, -/obj/item/weapon/mace/cudgel{ - pixel_x = 3; - pixel_y = -4 - }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/herringbone, +/turf/open/floor/ruinedwood/darker, /area/indoors/town/garrison) "bDK" = ( /obj/machinery/light/fueled/wallfire/candle/blue, @@ -2073,6 +2146,12 @@ /obj/machinery/light/fueled/hearth, /turf/open/floor/blocks/stonered/tiny, /area/indoors/town/keep/feast) +"bFn" = ( +/obj/machinery/light/fueled/torchholder{ + dir = 8 + }, +/turf/open/floor/dirt/road, +/area/outdoors/town) "bFz" = ( /turf/closed/wall/mineral/decostone/center, /area/indoors/town/church) @@ -2198,14 +2277,8 @@ /turf/open/floor/herringbone, /area/indoors/town/church) "bKD" = ( -/obj/structure/chair/wood/alt/chair3{ - dir = 8 - }, -/obj/effect/landmark/start/guardsman{ - dir = 8 - }, -/obj/machinery/light/fueled/torchholder/r, -/turf/open/floor/carpet/red, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/woodturned/nosmooth, /area/indoors/town/garrison) "bLd" = ( /obj/structure/fluff/walldeco/church/line{ @@ -2274,18 +2347,32 @@ /turf/open/floor/church, /area/indoors/town/keep) "bOa" = ( +/obj/structure/fake_machine/scomm/r, +/obj/structure/lever/wall{ + dir = 4; + name = "Side Entrance Lockdown"; + redstone_id = "gate_shutter"; + pixel_y = 7 + }, /obj/structure/lever/wall{ dir = 4; + name = "Kybraxor's mouth lever"; redstone_id = "keepgatekybraxor"; - name = "Kybraxor's mouth lever" + pixel_y = -10; + pulltime = 160 }, -/obj/structure/fake_machine/scomm/r, /turf/open/floor/ruinedwood/spiralfade, /area/indoors/town/keep/gate) "bOg" = ( /obj/structure/bookcase/random/myths, /turf/open/floor/blocks, /area/under/town/basement) +"bOn" = ( +/obj/structure/fluff/railing/border{ + dir = 10 + }, +/turf/open/floor/churchrough, +/area/outdoors/town) "bOr" = ( /obj/structure/table/wood{ icon_state = "largetable"; @@ -2360,6 +2447,9 @@ "bRe" = ( /turf/closed/wall/mineral/decorstone, /area/indoors/town/keep/heir/heir1) +"bRs" = ( +/turf/closed/wall/mineral/decorstone/moss, +/area/outdoors/basin/safe) "bRB" = ( /obj/structure/fluff/railing/wood{ dir = 4 @@ -2398,10 +2488,6 @@ /obj/structure/well/climb_up, /turf/open/water/clean, /area/under/town/sewer) -"bSq" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/outdoors/town) "bSV" = ( /obj/structure/bars/cemetery, /turf/open/water/swamp, @@ -2496,9 +2582,19 @@ }, /turf/open/floor/cobble, /area/under/town/basement) +"bWk" = ( +/obj/structure/table/wood/large/corner{ + dir = 5 + }, +/turf/open/floor/carpet/purple, +/area/indoors/town/keep/courtagent) "bWr" = ( /turf/open/floor/wood, /area/indoors/town/shop) +"bWt" = ( +/obj/structure/rack, +/turf/open/floor/ruinedwood/darker, +/area/indoors/town/garrison) "bWD" = ( /obj/structure/bookcase/random/apocrypha, /turf/open/floor/greenstone, @@ -2552,6 +2648,14 @@ "bZo" = ( /turf/closed/wall/mineral/wooddark/horizontal, /area/indoors/town) +"bZH" = ( +/obj/structure/fluff/railing/wood{ + dir = 8; + pixel_y = -1 + }, +/obj/structure/table/wood/plain_alt, +/turf/open/floor/woodturned, +/area/outdoors/town) "bZT" = ( /obj/structure/closet/crate/chest/wicker, /obj/item/fishing/lure/meat, @@ -2569,6 +2673,9 @@ }, /turf/open/floor/churchmarble/purple, /area/indoors/town/church/inquisition) +"cay" = ( +/turf/open/floor/naturalstone, +/area/under/cave) "caI" = ( /mob/living/simple_animal/pet/cat/black{ name = "Morticia" @@ -2583,11 +2690,6 @@ /obj/effect/mapping_helpers/access/locker, /turf/open/floor/wood, /area/indoors/town/garrison) -"caM" = ( -/obj/structure/chair/bench, -/obj/structure/fluff/celebration/canopy, -/turf/open/floor/dirt, -/area/outdoors/town) "caS" = ( /obj/structure/table/wood/plain_alt, /obj/item/contraption{ @@ -2610,6 +2712,19 @@ }, /turf/closed/wall/mineral/decorstone, /area/indoors/town/keep/lord_appt) +"cbB" = ( +/obj/structure/table/wood/reinforced, +/obj/item/clothing/neck/psycross/silver/divine/abyssor{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/skull, +/obj/item/skull{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/naturalstone, +/area/under/cavewet) "cbJ" = ( /obj/structure/table/wood/large/corner{ dir = 6 @@ -2693,9 +2808,8 @@ /turf/closed/wall/mineral/decorstone, /area/indoors/town/keep/throne) "ceX" = ( -/obj/structure/fluff/walldeco/chains, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/blocks, +/obj/structure/bars, +/turf/open/floor/ruinedwood, /area/indoors/town/garrison) "ceZ" = ( /obj/structure/rack, @@ -2709,10 +2823,12 @@ /turf/open/floor/carpet/stellar, /area/indoors/town/shop) "cfg" = ( -/obj/machinery/light/fueled/wallfire/candle{ - pixel_y = -32 +/obj/structure/bed/hay, +/obj/structure/bed/hay{ + pixel_y = 19 }, -/turf/open/floor/herringbone, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/woodturned/nosmooth, /area/indoors/town/garrison) "cgw" = ( /turf/closed/wall/mineral/decorstone/moss, @@ -2750,11 +2866,10 @@ /turf/open/floor/churchbrick, /area/indoors/town/church/inquisition) "ciK" = ( -/obj/structure/fluff/railing/border{ - dir = 1 +/turf/closed/wall/mineral/wooddark/end{ + dir = 4 }, -/turf/open/floor/wood, -/area/indoors/town/garrison) +/area/indoors/town/clocktower) "cje" = ( /obj/structure/door/iron/bars, /obj/effect/mapping_helpers/access/keyset/church/grave, @@ -2802,6 +2917,9 @@ /obj/structure/chair/bench/coucha, /turf/open/floor/hexstone, /area/indoors/town/keep/lord_appt) +"cms" = ( +/turf/closed/mineral, +/area/outdoors/basin/safe) "cmv" = ( /obj/structure/table/wood/crafted, /obj/item/dice_cup/wooden/liars_dice{ @@ -2838,6 +2956,19 @@ "cod" = ( /turf/open/floor/church, /area/outdoors/town/roofs) +"cog" = ( +/obj/structure/closet/keyrack{ + pixel_y = -32; + pixel_x = 0 + }, +/obj/effect/mapping_helpers/access/keyset/manor/courtagent, +/obj/effect/mapping_helpers/access/locker, +/obj/item/key/courtagent, +/obj/item/key/courtagent, +/obj/item/key/courtagent, +/obj/item/key/courtagent, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "coi" = ( /obj/machinery/light/fueled/wallfire/candle, /turf/open/floor/ruinedwood/chevron, @@ -2863,12 +2994,24 @@ /obj/item/bedsheet/double_pelt, /turf/open/floor/wood, /area/indoors/town) -"coW" = ( -/obj/structure/fluff/railing/border{ - dir = 4 +"coS" = ( +/obj/structure/bed/hay, +/obj/structure/bed/hay{ + pixel_y = 19 }, -/turf/open/floor/carpet/red, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/fueled/wallfire/candle, +/turf/open/floor/woodturned/nosmooth, /area/indoors/town/garrison) +"coW" = ( +/obj/effect/decal/cleanable/debris/stone, +/obj/structure/fluff/railing/wood{ + dir = 1; + pixel_y = 6 + }, +/obj/structure/fake_machine/scomm/r, +/turf/open/floor/ruinedwood/spiral, +/area/outdoors/town) "cpi" = ( /obj/effect/mapping_helpers/access/locker, /obj/structure/door/violet, @@ -2881,10 +3024,9 @@ /turf/open/floor/ruinedwood, /area/indoors/town/keep/guest) "cpl" = ( -/obj/structure/fluff/railing/border{ - dir = 8 - }, -/turf/open/openspace, +/obj/structure/fluff/railing/border, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/woodturned/nosmooth, /area/indoors/town/garrison) "cpV" = ( /obj/structure/fluff/walldeco/vinez, @@ -2934,11 +3076,6 @@ }, /turf/open/floor/dirt, /area/outdoors/town) -"crP" = ( -/obj/structure/flora/grass/bush_meagre, -/obj/structure/flora/grass, -/turf/open/floor/grass, -/area/outdoors/town) "crQ" = ( /obj/structure/fluff/railing/wood, /obj/structure/stairs{ @@ -3149,12 +3286,11 @@ /turf/open/floor/dirt/road, /area/under/cavewet) "cAQ" = ( -/obj/machinery/light/fueled/wallfire/candle/l{ - pixel_x = 0; +/obj/machinery/light/fueled/wallfire/candle{ pixel_y = -32 }, -/turf/open/floor/hexstone, -/area/indoors/town/steward) +/turf/open/floor/cobble, +/area/outdoors/town/keep) "cAU" = ( /obj/structure/door/green{ name = "Tailor Shop" @@ -3371,7 +3507,9 @@ /area/under/town/basement) "cJl" = ( /obj/structure/bookcase/random_recipes, -/obj/item/book/law, +/obj/item/book/law{ + pixel_x = -6 + }, /obj/machinery/light/fueled/wallfire/candle/l, /turf/open/floor/carpet/green, /area/indoors/town) @@ -3392,16 +3530,8 @@ /turf/open/floor/blocks, /area/outdoors/town/roofs) "cKu" = ( -/obj/structure/table/wood/reinforced_alt, -/obj/structure/bars{ - icon_state = "barsbent"; - layer = 2.81 - }, -/obj/structure/bars/passage/shutter{ - redstone_id = "stewardshutter" - }, -/turf/open/floor/hexstone, -/area/indoors/town/steward) +/turf/closed/wall/mineral/stone/window, +/area/outdoors/town/keep) "cKT" = ( /obj/structure/rack, /obj/item/clothing/neck/psycross/silver/divine/malum/steel, @@ -3514,6 +3644,9 @@ }, /turf/open/floor/wood, /area/outdoors/town/roofs) +"cQY" = ( +/turf/closed/wall/mineral/wooddark, +/area/outdoors/basin/safe) "cRb" = ( /turf/closed/wall/mineral/wooddark/end, /area/indoors/town/garrison) @@ -3554,8 +3687,8 @@ /turf/open/floor/blocks, /area/outdoors/town) "cRx" = ( -/turf/open/floor/metal/alt, -/area/indoors/town/shop) +/turf/closed/wall/mineral/wooddark, +/area/indoors/town/clocktower) "cRE" = ( /obj/effect/mapping_helpers/access/locker, /obj/structure/door/violet{ @@ -3569,6 +3702,19 @@ dir = 8 }, /area/outdoors/basin/safe) +"cRK" = ( +/obj/structure/bars{ + icon_state = "barsbent"; + layer = 2.81 + }, +/obj/structure/table/wood/counter{ + dir = 1 + }, +/obj/structure/bars/passage/shutter{ + redstone_id = "stewardshutter" + }, +/turf/open/floor/cobble, +/area/indoors/town/steward) "cRR" = ( /obj/structure/flora/grass/bush/wall/tall, /turf/open/floor/dirt, @@ -3678,6 +3824,18 @@ /obj/machinery/light/fueled/wallfire/candle/r, /turf/open/floor/ruinedwood/spiral, /area/indoors/town/orphanage) +"cWp" = ( +/obj/structure/table/wood/fancy, +/obj/item/weapon/knife/dagger/bronze{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/cup/golden{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/open/floor/cobble, +/area/under/town/basement) "cWC" = ( /obj/structure/table/wood/large/corner{ dir = 6 @@ -3917,10 +4075,9 @@ /turf/open/floor/carpet/lord/right, /area/under/town/sewer) "ddI" = ( -/obj/structure/table/wood/large/corner{ - dir = 9 - }, -/turf/open/floor/carpet/red, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/fueled/wallfire/candle, +/turf/open/floor/woodturned/nosmooth, /area/indoors/town/garrison) "ddO" = ( /obj/machinery/light/fueled/wallfire/candle, @@ -3983,6 +4140,10 @@ /obj/structure/chair/stool, /turf/open/floor/blocks, /area/indoors/town/keep/library) +"dgU" = ( +/obj/structure/carpet/red, +/turf/open/floor/cobblerock, +/area/under/town/basement) "dhk" = ( /obj/structure/closet/crate/chest/wicker, /turf/open/floor/twig, @@ -4025,6 +4186,16 @@ /obj/structure/toilet/filled, /turf/open/floor/blocks/paving, /area/under/town/basement) +"djv" = ( +/obj/structure/table/wood/reinforced_alt{ + dir = 4 + }, +/obj/item/candle/scandle/lit{ + pixel_y = 8; + pixel_x = -4 + }, +/turf/open/floor/cobblerock, +/area/under/town/basement) "djy" = ( /obj/machinery/light/fueled/wallfire/candle{ pixel_y = -32 @@ -4032,8 +4203,11 @@ /turf/open/floor/blocks, /area/under/town/basement) "djM" = ( -/turf/open/floor/ruinedwood/turned/darker, -/area/indoors/town/theatre) +/obj/machinery/light/fueled/torchholder{ + dir = 8 + }, +/turf/open/floor/dirt, +/area/outdoors/town) "dkp" = ( /obj/structure/rack/shelf/biggest, /obj/item/storage/backpack/backpack, @@ -4179,6 +4353,27 @@ /obj/machinery/light/fueled/torchholder/r, /turf/open/floor/tile, /area/indoors/town/keep/halls/e) +"dpb" = ( +/obj/structure/rack/shelf/biggest, +/obj/item/reagent_containers/glass/bottle/black/yaojiu{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/apfelweinheim{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/bottle/elfblue, +/obj/item/reagent_containers/glass/cup/glassware/wineglass, +/obj/item/reagent_containers/glass/cup/glassware/wineglass, +/obj/item/reagent_containers/glass/cup/glassware/wineglass, +/obj/structure/carpet, +/obj/machinery/light/fueled/wallfire/candle/r, +/obj/structure/fluff/railing/border{ + dir = 1 + }, +/turf/open/floor/hexstone, +/area/indoors/town/steward) "dpn" = ( /obj/structure/chair/stool, /turf/open/floor/dirt/road, @@ -4211,6 +4406,15 @@ }, /turf/open/floor/blocks, /area/indoors/town/keep) +"dqW" = ( +/obj/structure/chair/wood/alt/chair3{ + dir = 1 + }, +/obj/machinery/light/fueled/wallfire/candle{ + pixel_y = -32 + }, +/turf/open/floor/woodturned/nosmooth, +/area/indoors/town/garrison/lieutenant) "dry" = ( /obj/structure/closet/crate/crafted_closet, /obj/item/clothing/shirt/dress/gen/colored/purple, @@ -4391,14 +4595,18 @@ /turf/open/floor/herringbone, /area/outdoors/town/roofs) "dCn" = ( -/obj/machinery/light/fueled/wallfire/candle{ - pixel_y = -32 - }, -/obj/structure/fake_machine/scomm/l, -/obj/machinery/light/fueled/torchholder{ - dir = 1 - }, -/turf/open/floor/wood, +/obj/item/reagent_containers/food/snacks/egg, +/obj/item/reagent_containers/food/snacks/egg, +/obj/item/reagent_containers/food/snacks/produce/grain/oat, +/obj/item/reagent_containers/food/snacks/produce/grain/oat, +/obj/item/reagent_containers/food/snacks/produce/grain/oat, +/obj/item/reagent_containers/food/snacks/produce/grain/oat, +/obj/structure/closet/crate/chest/neu, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/reagent_containers/food/snacks/fish/carp, +/obj/item/reagent_containers/food/snacks/fish/carp, +/obj/machinery/light/fueled/wallfire/candle/l, +/turf/open/floor/tile/bfloorz, /area/indoors/town/garrison) "dCo" = ( /turf/open/floor/ruinedwood/spiral, @@ -4461,6 +4669,21 @@ /obj/structure/fake_machine/scomm/r, /turf/open/floor/wood, /area/indoors/town/shop) +"dDV" = ( +/obj/structure/table/wood/reinforced_alt{ + dir = 8 + }, +/obj/structure/carpet, +/obj/item/reagent_containers/glass/carafe/gold/redwine{ + pixel_x = -3; + pixel_y = -1 + }, +/obj/item/reagent_containers/glass/cup/glassware/wineglass{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/open/floor/hexstone, +/area/indoors/town/steward) "dEm" = ( /turf/closed/wall/mineral/wooddark/window, /area/indoors/butchershop) @@ -4476,9 +4699,9 @@ /turf/open/floor/blocks/newstone, /area/indoors/town/smithy) "dFI" = ( -/obj/machinery/light/fueled/torchholder/r, -/turf/open/floor/wood, -/area/indoors/town/garrison) +/obj/structure/fluff/railing/border, +/turf/open/floor/rooftop, +/area/outdoors/town/roofs) "dFU" = ( /obj/structure/table/wood/plain_alt, /obj/item/candle/skull/lit{ @@ -4515,8 +4738,21 @@ /turf/open/floor/woodturned, /area/indoors/butchershop) "dHs" = ( -/turf/closed/wall/mineral/wooddark/horizontal, -/area/indoors/town/garrison) +/obj/structure/closet/keyrack{ + pixel_y = 0; + pixel_x = 32 + }, +/obj/item/key/lieutenant, +/obj/item/key/garrison, +/obj/item/key/garrison, +/obj/item/key/garrison, +/obj/item/key/garrison, +/obj/item/key/garrison, +/obj/item/key/garrison, +/obj/effect/mapping_helpers/access/locker, +/obj/effect/mapping_helpers/access/keyset/garrison/lieutenant, +/turf/open/floor/woodturned/nosmooth, +/area/indoors/town/garrison/lieutenant) "dHG" = ( /obj/item/natural/stone, /turf/open/floor/cobblerock, @@ -4580,10 +4816,6 @@ /obj/item/bedsheet/fabric, /turf/open/floor/blocks/newstone/alt, /area/indoors/town/keep/heir/heir1) -"dKg" = ( -/obj/machinery/light/fueled/torchholder/l, -/turf/open/floor/dirt, -/area/outdoors/town) "dLo" = ( /obj/structure/fluff/railing/wood, /turf/open/floor/cobble, @@ -4784,10 +5016,6 @@ /obj/item/natural/cloth, /turf/open/floor/churchmarble, /area/outdoors/town/roofs) -"dVy" = ( -/obj/machinery/light/fueled/lanternpost/fixed, -/turf/open/floor/grass, -/area/outdoors/town) "dVT" = ( /turf/open/floor/ruinedwood/turned/darker, /area/outdoors/town) @@ -4859,6 +5087,15 @@ /obj/item/perfume/random, /turf/open/floor/carpet/purple, /area/indoors/town/keep/heir/heir2) +"dYq" = ( +/obj/structure/carpet/red, +/obj/structure/carpet/red, +/obj/item/natural/rock{ + name = "Potential Rock"; + desc = "A rock with large potential. Perhaps one dae someone will make use of it?" + }, +/turf/open/floor/cobble, +/area/under/town/basement) "dYr" = ( /obj/machinery/light/fueled/wallfire/candle/r, /turf/open/floor/ruinedwood/chevron, @@ -4876,9 +5113,10 @@ /turf/open/floor/blocks/stonered, /area/indoors/town/dwarfin) "dZb" = ( -/obj/structure/rack, -/turf/open/floor/carpet/red, -/area/indoors/town/garrison) +/obj/structure/fermentation_keg/random/water, +/obj/effect/decal/cleanable/dirt/cobweb, +/turf/open/floor/wood, +/area/indoors/town/shop) "dZi" = ( /obj/structure/stairs{ dir = 4 @@ -4950,26 +5188,11 @@ /turf/open/floor/naturalstone, /area/under/town/sewer) "ebc" = ( -/obj/structure/table/wood{ - dir = 1; - icon_state = "longtable_mid" - }, -/obj/item/key/warehouse{ - pixel_x = 10; - pixel_y = 6 +/obj/structure/stairs/stone{ + dir = 8 }, -/obj/item/key/apartments/apartment5, -/obj/item/key/apartments/apartment4, -/obj/item/key/apartments/apartment3, -/obj/item/key/apartments/apartment2, -/obj/item/key/apartments/apartment1, -/obj/item/key/apartments/apartment6, -/obj/item/key/apartments/apartment7, -/obj/item/key/apartments/apartment8, -/obj/item/key/apartments/apartment9, -/obj/item/key/apartments/apartment10, -/turf/open/floor/wood, -/area/indoors/town/steward) +/turf/open/floor/cobblerock, +/area/outdoors/basin/safe) "ebe" = ( /obj/structure/fluff/statue/knight, /turf/open/floor/tile, @@ -5004,6 +5227,17 @@ /obj/effect/mapping_helpers/access/keyset/town/matron, /turf/open/floor/ruinedwood/darker, /area/indoors/town/orphanage) +"ecg" = ( +/obj/item/reagent_containers/glass/bottle/tiefling_wine{ + pixel_x = -6 + }, +/obj/item/reagent_containers/glass/bottle/redwine{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/structure/table/wood/fancy, +/turf/open/floor/cobblerock, +/area/under/town/basement) "eci" = ( /obj/machinery/light/fueled/wallfire/candle, /obj/machinery/artificer_table, @@ -5025,26 +5259,19 @@ /turf/open/floor/wood, /area/indoors/town/tavern) "edb" = ( -/obj/structure/rack/shelf/biggest, -/obj/item/reagent_containers/glass/bucket/pot/copper{ - pixel_x = -3; - pixel_y = 9 +/obj/structure/fluff/railing/border{ + dir = 4 }, -/obj/item/cooking/pan{ - pixel_x = 6 +/turf/open/floor/rooftop{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/tile/bfloorz, -/area/indoors/town/garrison) +/area/outdoors/town/roofs) "edE" = ( -/obj/structure/bars/pipe{ - dir = 10 +/obj/structure/chair/wood/alt/chair_noble{ + dir = 1 }, -/obj/structure/bookcase, -/obj/item/book/abyssor, -/obj/item/book/bookofpriests, -/obj/machinery/light/fueled/wallfire/candle/r, -/turf/open/floor/carpet/purple, +/obj/structure/carpet, +/turf/open/floor/hexstone, /area/indoors/town/steward) "edU" = ( /obj/effect/decal/cleanable/dirt/dust, @@ -5117,8 +5344,7 @@ /turf/open/floor/ruinedwood/spiral, /area/indoors/town) "efS" = ( -/obj/structure/bed/shit, -/turf/open/floor/dirt, +/turf/open/floor/ruinedwood/darker, /area/indoors/town/garrison) "ego" = ( /obj/structure/fermentation_keg/random/water, @@ -5216,9 +5442,6 @@ /turf/open/floor/wood, /area/indoors/town/orphanage) "eld" = ( -/obj/structure/fluff/railing/border{ - pixel_y = 27 - }, /turf/open/floor/blocks/stonered/tiny, /area/indoors/town/clinic_large) "elq" = ( @@ -5319,6 +5542,13 @@ "eoR" = ( /turf/open/floor/tile, /area/under/town/sewer) +"eoU" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/statue/bronze/vase{ + pixel_y = 4 + }, +/turf/open/floor/ruinedwood/chevron, +/area/indoors/town/vault) "eoW" = ( /obj/structure/fluff/railing/border, /obj/structure/curtain/bounty/dir{ @@ -5348,11 +5578,9 @@ /turf/open/floor/blocks/stonered/tiny, /area/indoors/town/bath) "epK" = ( -/obj/effect/landmark/start/bard{ - dir = 1 - }, -/turf/open/floor/carpet/red, -/area/indoors/town/theatre) +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/ruinedwood/alt, +/area/indoors/town) "eqI" = ( /obj/structure/fluff/railing/border, /obj/structure/table/wood/plain_alt, @@ -5383,18 +5611,41 @@ /turf/open/floor/carpet, /area/indoors/town/keep/halls/e) "ern" = ( -/obj/structure/chair/wood/alt/chair3{ - dir = 8 - }, -/obj/effect/landmark/start/guardsman{ - dir = 8 +/obj/structure/fluff/railing/border{ + dir = 1 }, -/turf/open/floor/carpet/red, +/turf/open/floor/woodturned/nosmooth, /area/indoors/town/garrison) "erv" = ( /obj/structure/window/solid, /turf/open/floor/ruinedwood/spiral, /area/indoors/town/bath) +"erM" = ( +/obj/structure/fluff/walldeco/customflag{ + pixel_y = 32 + }, +/obj/structure/closet/crate/crafted_closet{ + name = "Miscellaneous Attire" + }, +/obj/item/clothing/shirt/undershirt/formal, +/obj/item/clothing/pants/trou/formal, +/obj/item/clothing/pants/trou/formal/shorts, +/obj/item/storage/belt/leather/suspenders, +/obj/item/clothing/shirt/dress/maid/servant, +/obj/item/clothing/head/maidband, +/obj/item/clothing/cloak/apron/maid, +/obj/item/clothing/pants/tights/colored/white, +/obj/item/clothing/head/helmet/leather/tricorn, +/obj/item/clothing/armor/leather/jacket/sea, +/obj/item/clothing/pants/tights/sailor, +/obj/item/clothing/neck/bellcollar, +/obj/item/clothing/neck/leathercollar, +/obj/item/clothing/face/spectacles/sglasses, +/obj/item/clothing/face/spectacles/sglasses, +/obj/item/clothing/face/spectacles, +/obj/item/clothing/face/spectacles, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "erX" = ( /obj/structure/bridge_stakes{ dir = 1 @@ -5463,19 +5714,13 @@ /turf/open/floor/church, /area/indoors/town/church/inquisition) "etx" = ( -/obj/structure/closet/crate/chest/neu, -/obj/item/instrument/viola, -/obj/item/instrument/guitar, -/obj/item/instrument/lute, -/obj/item/instrument/harp, -/obj/machinery/light/fueled/wallfire/candle/l, -/turf/open/floor/ruinedwood/turned/darker, -/area/indoors/town/theatre) -"etC" = ( -/obj/structure/chair/wood/alt/chair_noble{ - dir = 8 +/obj/structure/chair/stool{ + pixel_y = 6 }, -/turf/open/floor/carpet/green, +/turf/open/floor/dirt/road, +/area/outdoors/town) +"etC" = ( +/turf/closed/wall/mineral/stonebrick, /area/indoors/town/steward) "euf" = ( /obj/structure/fluff/walldeco/church/line{ @@ -5743,9 +5988,9 @@ /turf/open/floor/grass, /area/indoors/town/church/inquisition) "eFC" = ( -/obj/machinery/light/fueled/chand, -/turf/open/openspace, -/area/indoors/town/garrison) +/obj/structure/window/solid, +/turf/open/floor/wood, +/area/indoors/town/clocktower) "eFO" = ( /obj/structure/table/wood/plain, /obj/item/toy/cards/deck, @@ -5761,6 +6006,14 @@ /obj/structure/flora/tree/burnt, /turf/open/floor/dirt, /area/outdoors/basin) +"eGA" = ( +/obj/structure/closet/crate/drawer, +/obj/item/clothing/face/spectacles/monocle, +/obj/item/clothing/face/spectacles/golden, +/obj/structure/carpet, +/obj/machinery/light/fueled/wallfire/candle, +/turf/open/floor/ruinedwood/chevron, +/area/indoors/town/steward) "eHC" = ( /obj/structure/table/wood/large/corner_new{ dir = 8 @@ -5901,6 +6154,11 @@ }, /turf/open/floor/church, /area/outdoors/town) +"eMq" = ( +/obj/structure/window/solid, +/obj/structure/window/solid, +/turf/open/floor/wood/nosmooth, +/area/indoors/town/garrison) "eNd" = ( /obj/item/natural/cloth{ pixel_x = 8; @@ -5955,8 +6213,8 @@ /turf/open/water/marsh, /area/under/town/sewer) "eNV" = ( -/obj/machinery/light/fueled/torchholder{ - dir = 1 +/obj/structure/fluff/wallclock{ + pixel_y = -32 }, /turf/open/floor/hexstone, /area/indoors/town/keep/gate) @@ -5987,6 +6245,18 @@ /obj/machinery/light/fueled/wallfire/candle/l, /turf/open/floor/wood, /area/indoors/town/smithy) +"eQh" = ( +/obj/structure/fluff/railing/wood{ + dir = 4 + }, +/obj/machinery/light/fueled/lanternpost/fixed{ + dir = 1; + pixel_y = 6; + pixel_x = -2 + }, +/obj/structure/fluff/railing/wood, +/turf/open/floor/twig, +/area/outdoors/town) "eQo" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/mirror, @@ -6047,17 +6317,13 @@ /turf/open/floor/churchmarble, /area/indoors/town/church/inquisition) "eSP" = ( -/obj/structure/table/wood/reinf_long, -/obj/item/natural/feather, -/obj/item/candle/yellow, -/obj/item/candle/yellow, -/obj/item/book/secret/ledger, -/obj/structure/fake_machine/submission{ - pixel_y = 0; - pixel_x = -32 +/obj/structure/chair/wood/alt{ + dir = 1; + pixel_y = 3; + pixel_x = 6 }, -/turf/open/floor/carpet/purple, -/area/indoors/town/steward) +/turf/open/floor/cobblerock, +/area/under/town/basement) "eUa" = ( /obj/structure/rack/shelf/biggest, /turf/open/floor/twig, @@ -6099,14 +6365,9 @@ /turf/open/floor/blocks, /area/indoors/town/church/inquisition) "eVN" = ( -/obj/structure/bed/hay, -/obj/structure/bed/hay{ - pixel_y = 19 - }, -/obj/machinery/light/fueled/wallfire/candle, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/herringbone, -/area/indoors/town/garrison) +/obj/structure/chair/wood/alt/chair_noble/red, +/turf/open/floor/woodturned/nosmooth, +/area/indoors/town/garrison/lieutenant) "eVP" = ( /obj/structure/closet/crate/chest/neu_iron, /obj/item/reagent_containers/glass/bowl, @@ -6166,6 +6427,10 @@ }, /turf/closed/wall/mineral/craftstone, /area/under/town/basement) +"eWW" = ( +/obj/structure/table/wood/fancy/black, +/turf/open/floor/ruinedwood/chevron, +/area/indoors/town/vault) "eYa" = ( /obj/structure/fluff/nest{ name = "patch of straw" @@ -6173,9 +6438,10 @@ /turf/open/floor/dirt, /area/indoors/town/church/inquisition) "eYd" = ( -/obj/machinery/light/fueled/wallfire/candle, -/turf/open/floor/wood, -/area/indoors/town/garrison) +/turf/closed/wall/mineral/wooddark/end{ + dir = 1 + }, +/area/indoors/town/clocktower) "eYv" = ( /obj/structure/window/stained/silver/alt, /turf/open/floor/tile/bfloorz, @@ -6217,6 +6483,12 @@ /obj/item/bin/water/gross, /turf/open/floor/greenstone, /area/under/town/basement) +"fab" = ( +/obj/structure/fluff/railing/border{ + dir = 8 + }, +/turf/open/floor/woodturned/nosmooth, +/area/indoors/town/garrison) "fan" = ( /obj/structure/fluff/railing/wood{ dir = 1; @@ -6293,6 +6565,10 @@ }, /turf/open/floor/wood, /area/indoors/town/orphanage) +"feh" = ( +/obj/item/fake_machine/mastermail, +/turf/open/floor/hexstone, +/area/indoors/town/steward) "feE" = ( /obj/structure/stairs/stone{ dir = 1 @@ -6424,8 +6700,17 @@ /turf/open/floor/ruinedwood/spiral, /area/indoors/town/orphanage) "fkT" = ( -/turf/closed/wall/mineral/decorstone/moss, -/area/indoors/town/garrison) +/obj/structure/fluff/railing/border{ + dir = 4 + }, +/obj/structure/fluff/railing/border{ + dir = 1; + pixel_x = -4 + }, +/turf/open/floor/rooftop{ + dir = 4 + }, +/area/outdoors/town/roofs) "fkX" = ( /obj/structure/spider/stickyweb/solo, /turf/open/floor/naturalstone, @@ -6461,9 +6746,8 @@ /turf/open/floor/tile/masonic, /area/indoors/town/keep/throne) "fmP" = ( -/obj/structure/fluff/railing/border, -/turf/open/floor/wood, -/area/indoors/town/garrison) +/turf/closed/wall/mineral/wood, +/area/indoors/town/garrison/lieutenant) "fmZ" = ( /obj/structure/door/stone{ name = "Apprentice's Room" @@ -6579,7 +6863,9 @@ /obj/item/paper, /obj/item/paper, /obj/item/natural/feather, -/obj/item/book/law, +/obj/item/book/law{ + pixel_x = -6 + }, /obj/structure/fluff/walldeco/painting/queen{ pixel_y = 32 }, @@ -6654,8 +6940,14 @@ /turf/open/floor/naturalstone, /area/outdoors/basin/safe) "fwD" = ( -/turf/closed/wall/mineral/wood/window, -/area/indoors/town/theatre) +/obj/structure/fluff/walldeco/customflag{ + pixel_y = 32 + }, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) +"fwE" = ( +/turf/open/floor/abyss_sand, +/area/under/cavewet) "fwH" = ( /obj/effect/mapping_helpers/secret_door_creator/keep{ redstone_id = "HeirPassage1" @@ -6810,6 +7102,12 @@ /obj/machinery/light/fueled/wallfire/candle/blue/r, /turf/open/floor/ruinedwood/spiral, /area/indoors/town/keep/magician) +"fEt" = ( +/obj/structure/flora/grass/bush{ + pixel_y = 9 + }, +/turf/open/floor/dirt, +/area/outdoors/town) "fFk" = ( /obj/structure/window/openclose{ dir = 4 @@ -6907,6 +7205,10 @@ }, /turf/open/floor/ruinedwood/turned/alt, /area/indoors/town/tavern) +"fJq" = ( +/obj/structure/bars, +/turf/open/floor/metal/barograte, +/area/indoors/town/garrison) "fJL" = ( /obj/machinery/light/fueled/wallfire/candle{ pixel_x = 32; @@ -6947,17 +7249,6 @@ /obj/structure/flora/newtree/scorched, /turf/open/floor/naturalstone, /area/under/cavelava) -"fNd" = ( -/obj/item/clothing/shirt/undershirt/sailor/red, -/obj/item/clothing/shirt/undershirt/sailor/red, -/obj/item/clothing/shirt/undershirt/sailor/red, -/obj/item/clothing/shirt/undershirt/sailor, -/obj/item/clothing/shirt/undershirt/sailor, -/obj/item/clothing/shirt/undershirt/sailor, -/obj/structure/closet/crate/crafted_closet/crafted, -/obj/machinery/light/fueled/wallfire/candle, -/turf/open/floor/wood, -/area/indoors/town/shop) "fNp" = ( /obj/structure/fluff/walldeco/church/line{ dir = 1 @@ -7016,6 +7307,17 @@ }, /turf/open/openspace, /area/outdoors/town/roofs) +"fPF" = ( +/obj/structure/closet/crate/crafted_closet, +/obj/item/paper/scroll, +/obj/item/paper/scroll, +/obj/item/paper/scroll, +/obj/item/paper/scroll, +/obj/item/paper/scroll, +/obj/item/paper/scroll, +/obj/item/book/law, +/turf/open/floor/woodturned/nosmooth, +/area/indoors/town/garrison/lieutenant) "fPH" = ( /obj/structure/fluff/walldeco/vinez/red, /turf/closed/wall/mineral/decorstone/moss, @@ -7035,9 +7337,14 @@ /turf/open/floor/ruinedwood/darker, /area/under/town/sewer) "fSt" = ( -/obj/structure/fluff/railing/wood, -/turf/open/floor/cobblerock, -/area/outdoors/town) +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/landmark/start/courtagent{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/indoors/town/keep/courtagent) "fSV" = ( /turf/open/floor/churchbrick, /area/indoors/town/church) @@ -7053,6 +7360,25 @@ /obj/structure/toilet/filled, /turf/open/floor/blocks/paving, /area/indoors/town/keep) +"fTD" = ( +/obj/structure/closet/crate/crafted_closet{ + name = "Medical Attire" + }, +/obj/item/clothing/armor/gambeson/apothecary, +/obj/item/clothing/pants/trou/apothecary, +/obj/item/clothing/gloves/leather/apothecary, +/obj/item/clothing/face/feld, +/obj/item/clothing/gloves/leather/feld, +/obj/item/clothing/head/roguehood/feld, +/obj/item/clothing/neck/feld, +/obj/item/clothing/shirt/robe/feld, +/obj/item/clothing/face/phys, +/obj/item/clothing/gloves/leather/phys, +/obj/item/clothing/head/roguehood/phys, +/obj/item/clothing/neck/phys, +/obj/item/clothing/shirt/robe/phys, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "fTN" = ( /turf/closed/wall/mineral/wooddark/vertical, /area/indoors/town/clinic_large) @@ -7088,12 +7414,17 @@ /turf/open/floor/tile/masonic/single, /area/indoors/town) "fVg" = ( -/obj/structure/stairs, -/obj/machinery/light/fueled/wallfire/candle{ - pixel_y = -32 +/obj/structure/fluff/railing/border{ + dir = 1 }, -/turf/open/floor/wood, -/area/indoors/town/garrison) +/obj/structure/fluff/railing/border{ + dir = 8; + pixel_y = -4 + }, +/turf/open/floor/rooftop{ + dir = 8 + }, +/area/outdoors/town/roofs) "fVi" = ( /obj/structure/stairs{ dir = 4 @@ -7132,7 +7463,21 @@ /turf/open/floor/wood, /area/indoors/town/keep/guest/meeting) "fWt" = ( -/turf/open/water/marsh/deep, +/obj/structure/rack, +/obj/item/natural/bundle/cloth{ + amount = 10; + pixel_x = 1 + }, +/obj/item/needle{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/needle/thorn{ + pixel_x = 10; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/ruinedwood, /area/indoors/town/garrison) "fWw" = ( /obj/item/bin/water, @@ -7142,6 +7487,18 @@ /obj/structure/fake_machine/merchantvend, /turf/open/floor/carpet/stellar, /area/indoors/town/shop) +"fXd" = ( +/obj/item/paper, +/obj/item/paper, +/obj/item/paper, +/obj/item/paper, +/obj/item/paper, +/obj/item/paper, +/obj/item/natural/feather, +/obj/item/natural/feather, +/obj/structure/closet/crate/chest/crafted, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "fXo" = ( /obj/structure/fluff/railing/wood, /obj/structure/stairs{ @@ -7179,6 +7536,14 @@ }, /turf/open/floor/ruinedwood/turned/darker, /area/indoors/town) +"fXx" = ( +/obj/structure/door/fancy{ + name = "Steward's Office" + }, +/obj/effect/mapping_helpers/access/keyset/manor/steward, +/obj/effect/mapping_helpers/access/locker, +/turf/open/floor/tile, +/area/indoors/town/steward) "fXN" = ( /obj/effect/landmark/start/innkeep, /turf/open/floor/ruinedwood, @@ -7277,6 +7642,11 @@ dir = 1 }, /area/indoors/town/dwarfin) +"gbm" = ( +/obj/structure/chair/wood/alt/chair3, +/obj/effect/landmark/start/guardsman, +/turf/open/floor/carpet/red, +/area/indoors/town/garrison) "gbz" = ( /turf/closed/wall/mineral/wood, /area/indoors/soilsons) @@ -7358,9 +7728,8 @@ /turf/open/floor/hexstone, /area/under/town/sewer) "ghb" = ( -/obj/structure/closet/crate/crafted_closet, -/turf/open/floor/wood/nosmooth, -/area/indoors/town/theatre) +/turf/open/floor/metal, +/area/indoors/town/keep/courtagent) "ghc" = ( /obj/structure/door{ name = "Miners Quarters" @@ -7375,11 +7744,8 @@ /turf/open/floor/blocks/stonered/tiny, /area/indoors/town/dwarfin) "ghk" = ( -/obj/structure/fluff/railing/border{ - dir = 10 - }, -/turf/open/floor/wood, -/area/indoors/town/garrison) +/turf/closed/wall/mineral/wooddark/end, +/area/indoors/town/clocktower) "ghE" = ( /obj/structure/fluff/walldeco/church/line{ dir = 4 @@ -7469,7 +7835,7 @@ dir = 8 }, /turf/open/floor/grass, -/area/outdoors/basin) +/area/outdoors/basin/safe) "gly" = ( /obj/structure/fluff/railing/wood{ dir = 8; @@ -7554,8 +7920,20 @@ /turf/open/floor/naturalstone, /area/under/cavelava) "gpE" = ( -/obj/structure/flora/grass/water, -/turf/open/floor/dirt, +/obj/structure/rack, +/obj/item/weapon/sword/short{ + pixel_x = 2 + }, +/obj/item/weapon/sword/short{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/weapon/axe/iron{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/ruinedwood/darker, /area/indoors/town/garrison) "gpF" = ( /obj/structure/fluff/railing/border{ @@ -7624,12 +8002,8 @@ /turf/open/floor/ruinedwood/spiral, /area/outdoors/town/roofs) "gre" = ( -/obj/structure/table/wood/reinf_long{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/fueled/wallfire/candle, -/turf/open/floor/tile/bfloorz, +/obj/structure/bars/grille, +/turf/open/openspace, /area/indoors/town/garrison) "gry" = ( /obj/structure/fluff/railing/wood{ @@ -7822,10 +8196,23 @@ }, /turf/open/floor/carpet, /area/indoors/town/tavern) +"gCl" = ( +/obj/structure/closet/crate/chest/crafted, +/obj/item/reagent_containers/food/snacks/hardtack, +/obj/item/reagent_containers/food/snacks/hardtack, +/obj/item/reagent_containers/food/snacks/cooked/coppiette, +/obj/item/reagent_containers/food/snacks/cooked/coppiette, +/obj/item/reagent_containers/food/snacks/hardtack, +/obj/item/reagent_containers/food/snacks/cooked/coppiette, +/turf/open/floor/tile/checkeralt, +/area/indoors/town/keep/courtagent) "gCo" = ( /obj/structure/fermentation_keg, /turf/open/floor/twig, /area/outdoors/town) +"gCy" = ( +/turf/open/floor/carpet/purple, +/area/indoors/town/keep/courtagent) "gCM" = ( /obj/structure/fluff/walldeco/church/line{ dir = 4 @@ -7855,10 +8242,8 @@ /turf/open/floor/wood, /area/indoors/butchershop) "gEB" = ( -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/dirt, +/obj/machinery/light/fueled/firebowl/standing, +/turf/open/floor/ruinedwood, /area/indoors/town/garrison) "gEJ" = ( /obj/structure/closet/crate/crafted_closet/dark, @@ -7938,6 +8323,15 @@ /obj/structure/flora/grass/thorn_bush, /turf/open/floor/grass/yel, /area/outdoors/town) +"gIs" = ( +/obj/effect/mapping_helpers/access/keyset/manor/steward, +/obj/structure/door/fancy{ + name = "Steward's Waiting Room" + }, +/turf/open/floor/tile/masonic{ + dir = 4 + }, +/area/indoors/town/steward) "gIB" = ( /obj/structure/fluff/railing/wood, /obj/machinery/light/fueled/lanternpost/fixed, @@ -8070,20 +8464,14 @@ /turf/open/floor/wood, /area/indoors/town/keep/throne) "gMQ" = ( -/obj/effect/landmark/start/steward{ - dir = 4 - }, -/obj/structure/chair/wood/alt/chair_noble/purple{ - dir = 4 - }, -/turf/open/floor/hexstone, -/area/indoors/town/steward) +/turf/open/floor/cobblerock, +/area/outdoors/town/keep) "gNe" = ( /obj/structure/bars/passage/shutter{ redstone_id = "stewardwarehouse" }, /turf/open/floor/wood, -/area/indoors/town/shop) +/area/indoors/town/clocktower) "gNQ" = ( /turf/open/floor/tile, /area/indoors/town/vault) @@ -8098,6 +8486,12 @@ }, /turf/open/floor/blocks/newstone/alt, /area/indoors/town/merc_guild) +"gOu" = ( +/obj/structure/ladder, +/obj/structure/ladder, +/obj/structure/ladder, +/turf/open/floor/woodturned, +/area/outdoors/town) "gOI" = ( /obj/structure/fluff/walldeco/church/line, /obj/structure/fluff/statue/astrata/bling, @@ -8127,10 +8521,9 @@ /turf/open/floor/tile/checkeralt, /area/under/town/sewer) "gPb" = ( -/obj/structure/flora/grass/bush, -/obj/structure/flora/grass, -/turf/open/floor/dirt, -/area/outdoors/town) +/obj/structure/bars, +/turf/open/openspace, +/area/indoors/town/garrison) "gPe" = ( /obj/structure/fluff/railing/wood, /turf/open/floor/woodturned/nosmooth, @@ -8195,7 +8588,7 @@ /obj/effect/decal/borderfall{ dir = 1 }, -/turf/open/floor/cobble, +/turf/open/floor/ruinedwood/spiral, /area/outdoors/town) "gQE" = ( /obj/structure/fermentation_keg, @@ -8304,6 +8697,13 @@ /obj/effect/landmark/start/vagrant, /turf/open/floor/dirt, /area/outdoors/town) +"gZf" = ( +/obj/structure/fluff/walldeco/customflag{ + pixel_y = 32 + }, +/obj/structure/dye_bin, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "gZg" = ( /obj/structure/fluff/railing/wood{ dir = 4 @@ -8415,10 +8815,23 @@ /obj/structure/bars/cemetery, /turf/open/floor/dirt/road, /area/outdoors/exposed/church/graveyard) +"hdF" = ( +/obj/structure/carpet, +/turf/open/floor/tile/masonic{ + dir = 4 + }, +/area/indoors/town/steward) "hdR" = ( /obj/structure/bars, /turf/open/floor/cobble, /area/indoors/town/cell) +"hdY" = ( +/obj/structure/bed/mediocre, +/obj/machinery/light/fueled/wallfire/candle{ + pixel_y = -32 + }, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "heo" = ( /obj/structure/bars{ icon_state = "barsbent"; @@ -8540,18 +8953,11 @@ /turf/open/floor/blocks, /area/under/town/basement) "hlG" = ( -/obj/structure/closet/crate/chest/neu, -/obj/item/instrument/vocals, -/obj/item/instrument/hurdygurdy, -/obj/item/instrument/accord, -/obj/item/instrument/drum, -/obj/item/instrument/flute, -/obj/machinery/light/fueled/wallfire/candle/l{ - pixel_x = 0; - pixel_y = 32 +/obj/structure/lever/hidden/courtagent{ + redstone_id = "courtagent" }, -/turf/open/floor/ruinedwood/turned/darker, -/area/indoors/town/theatre) +/turf/closed/wall/mineral/decorstone/moss, +/area/under/town/basement) "hlQ" = ( /obj/structure/closet/crate/chest/old_crate, /obj/item/bait/sweet, @@ -8568,13 +8974,11 @@ /turf/open/floor/grass, /area/outdoors/basin/safe) "hmq" = ( -/obj/machinery/light/fueled/wallfire/candle/l{ - pixel_x = 0; - pixel_y = 32 +/obj/effect/decal/borderfall{ + dir = 1 }, -/obj/structure/closet/crate/crafted_closet, /turf/open/floor/wood/nosmooth, -/area/indoors/town/theatre) +/area/outdoors/town) "hnl" = ( /obj/structure/flora/grass/bush/wall/tall, /turf/open/floor/grass, @@ -8783,6 +9187,10 @@ dir = 4 }, /area/indoors/town/keep/throne) +"hvX" = ( +/obj/structure/fake_machine/stockpile, +/turf/open/floor/twig, +/area/outdoors/town) "hwa" = ( /obj/item/candle/skull, /obj/structure/table/map/vanderlin{ @@ -8790,6 +9198,9 @@ }, /turf/open/floor/carpet/lord/right, /area/indoors/town/keep/lord_appt) +"hwx" = ( +/turf/open/floor/metal/barograte, +/area/indoors/town/garrison) "hwD" = ( /obj/structure/bed/shit, /turf/open/floor/cobblerock, @@ -8835,7 +9246,9 @@ /obj/structure/bookcase/random, /obj/item/book/sword, /obj/item/book/bibble, -/obj/item/book/law, +/obj/item/book/law{ + pixel_x = -6 + }, /turf/open/floor/herringbone, /area/indoors/town/keep/captain) "hxU" = ( @@ -8877,6 +9290,13 @@ /obj/structure/water_pump, /turf/open/floor/tile, /area/indoors/town/keep/knight) +"hAr" = ( +/obj/structure/door/fancy{ + name = "Steward's Waiting Room" + }, +/obj/effect/mapping_helpers/access/keyset/manor/steward, +/turf/open/floor/tile/masonic, +/area/indoors/town/steward) "hBq" = ( /obj/structure/fluff/railing/border{ dir = 8 @@ -9068,6 +9488,12 @@ /obj/structure/dye_bin/luxury, /turf/open/floor/tile/diamond/purple, /area/indoors/town) +"hHR" = ( +/obj/structure/stairs/stone{ + dir = 8 + }, +/turf/open/floor/dirt/road, +/area/outdoors/basin/safe) "hIi" = ( /turf/open/floor/greenstone, /area/indoors/town/clocktower) @@ -9079,6 +9505,14 @@ "hIy" = ( /turf/closed/wall/mineral/stone/moss/red, /area/indoors/town) +"hIB" = ( +/obj/machinery/light/fueled/wallfire/candle, +/turf/open/floor/hexstone, +/area/indoors/town/steward) +"hIT" = ( +/obj/structure/stairs, +/turf/open/floor/naturalstone, +/area/under/town/sewer) "hJd" = ( /obj/structure/table/wood{ icon_state = "largetable"; @@ -9127,6 +9561,14 @@ /obj/machinery/light/fueled/wallfire/candle/r, /turf/open/floor/church, /area/indoors/town/church) +"hKR" = ( +/obj/structure/carpet, +/obj/machinery/light/fueled/wallfire/candle{ + pixel_y = -32 + }, +/obj/structure/fake_machine/steward, +/turf/open/floor/ruinedwood/chevron, +/area/indoors/town/steward) "hLf" = ( /obj/effect/landmark/start/cook, /turf/open/floor/tile/kitchen, @@ -9142,6 +9584,15 @@ }, /turf/open/floor/carpet/green, /area/indoors/town) +"hLZ" = ( +/obj/structure/bed/wool/double, +/obj/item/bedsheet/double_pelt, +/obj/effect/landmark/start/steward{ + dir = 8 + }, +/obj/structure/carpet, +/turf/open/floor/ruinedwood/chevron, +/area/indoors/town/steward) "hMe" = ( /obj/structure/chair/wood/alt/chair3{ dir = 8 @@ -9149,6 +9600,15 @@ /obj/machinery/light/fueled/wallfire/candle/r, /turf/open/floor/church, /area/indoors/town/church) +"hMs" = ( +/obj/structure/table/wood/reinforced_alt{ + dir = 8 + }, +/obj/item/paper{ + info = "O, You whose love is too grand in scale or strength for Eora! Among your friends you are, for The Horned Lady shall accept you in equal measure! Drink, drink the blood of you and your lovers intermixed, and gain a bond greater than all things holy!" + }, +/turf/open/floor/cobble, +/area/under/town/basement) "hMH" = ( /obj/structure/closet/crate/crafted_closet/inn, /turf/open/floor/wood/nosmooth, @@ -9167,6 +9627,12 @@ /obj/structure/fluff/railing/wood, /turf/open/floor/twig, /area/outdoors/town) +"hMT" = ( +/obj/structure/fluff/walldeco/customflag{ + pixel_y = 32 + }, +/turf/open/floor/cobble, +/area/outdoors/town/keep) "hNd" = ( /obj/structure/table/wood/counter/end{ dir = 1 @@ -9315,7 +9781,7 @@ /turf/open/floor/carpet/royalblack, /area/indoors/town/keep/squire) "hSX" = ( -/obj/structure/chair/stool, +/obj/structure/flora/ausbushes/brflowers, /turf/open/floor/grass, /area/outdoors/town) "hUi" = ( @@ -9356,10 +9822,6 @@ }, /turf/open/floor/wood, /area/outdoors/town/roofs) -"hVi" = ( -/obj/machinery/light/fueled/lanternpost/fixed, -/turf/open/floor/dirt, -/area/outdoors/town) "hVG" = ( /obj/structure/bars/pipe{ dir = 1 @@ -9433,8 +9895,9 @@ /turf/open/openspace, /area/outdoors/town) "hZa" = ( -/turf/closed/wall/mineral/wooddark, -/area/indoors/town/theatre) +/obj/structure/bed/mediocre, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "hZq" = ( /obj/structure/chair/bench/church{ dir = 1 @@ -9449,8 +9912,13 @@ /turf/open/floor/dirt, /area/under/town/sewer) "iax" = ( -/turf/closed/wall/mineral/decorstone/moss, -/area/outdoors/town/roofs) +/obj/structure/door{ + name = "Court Agent Equipment" + }, +/obj/effect/mapping_helpers/access/keyset/manor/courtagent, +/obj/effect/mapping_helpers/access/locker, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "iaO" = ( /obj/machinery/light/fueled/wallfire/candle/r, /turf/open/floor/ruinedwood/spiral, @@ -9481,11 +9949,13 @@ /turf/open/floor/churchrough, /area/indoors/town/church/chapel) "idA" = ( -/obj/structure/closet/crate/drawer, -/obj/item/storage/keyring, -/obj/item/key/steward, -/obj/machinery/light/fueled/wallfire/candle/r, -/turf/open/floor/carpet/purple, +/obj/structure/window/openclose/reinforced{ + dir = 4 + }, +/obj/structure/curtain/bounty/dir{ + dir = 4 + }, +/turf/open/floor/ruinedwood/chevron, /area/indoors/town/steward) "idB" = ( /obj/machinery/light/fueled/wallfire/candle/r, @@ -9522,6 +9992,10 @@ "ifS" = ( /turf/open/floor/woodturned, /area/indoors/town/shop) +"ifV" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/metal, +/area/indoors/town/garrison) "igt" = ( /obj/structure/table/wood/plain_alt, /obj/structure/mirror{ @@ -9552,6 +10026,10 @@ /obj/item/clothing/face/cigarette/pipe, /turf/open/floor/cobble/mossy, /area/outdoors/town) +"ihA" = ( +/obj/machinery/light/fueled/wallfire/candle, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "ihR" = ( /obj/structure/bed/mediocre, /obj/item/bedsheet/cloth, @@ -9730,8 +10208,21 @@ /turf/open/floor/wood/nosmooth, /area/indoors/town) "inE" = ( -/turf/closed/wall/mineral/wooddark/vertical, +/obj/effect/mapping_helpers/access/keyset/garrison/general, +/obj/effect/mapping_helpers/access/locker, +/obj/structure/door/viewport{ + dir = 8; + name = "City Watch Garrison" + }, +/turf/open/floor/wood, /area/indoors/town/garrison) +"inO" = ( +/obj/structure/fermentation_keg/random/water, +/obj/structure/fluff/walldeco/customflag{ + pixel_y = 32 + }, +/turf/open/floor/tile/checkeralt, +/area/indoors/town/keep/courtagent) "iok" = ( /obj/structure/plasticflaps, /turf/open/water/sewer, @@ -9827,13 +10318,11 @@ /turf/open/floor/blocks/stonered, /area/indoors/town/keep/kitchen) "itn" = ( -/obj/structure/bed/hay, -/obj/structure/bed/hay{ - pixel_y = 19 +/obj/structure/fake_machine/mail/r{ + mailtag = "City Watch Lieutenant" }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/herringbone, -/area/indoors/town/garrison) +/turf/open/floor/woodturned/nosmooth, +/area/indoors/town/garrison/lieutenant) "itp" = ( /obj/item/bin/water, /turf/open/floor/tile/bfloorz, @@ -9985,6 +10474,9 @@ /obj/structure/stairs, /turf/open/floor/woodturned/nosmooth, /area/outdoors/town) +"izs" = ( +/turf/open/floor/cobblerock, +/area/under/town/basement) "izL" = ( /obj/structure/closet/crate/crafted_closet/inn/chest, /obj/item/ore/copper, @@ -10012,6 +10504,10 @@ }, /turf/open/floor/wood, /area/indoors/town/shop) +"iAr" = ( +/obj/structure/fluff/railing/border, +/turf/open/floor/wood, +/area/outdoors/town) "iBt" = ( /obj/structure/fluff/psycross/psydon/metal, /obj/effect/decal/cleanable/blood, @@ -10251,8 +10747,8 @@ /turf/open/floor/ruinedwood/spiral, /area/indoors/town) "iLz" = ( -/obj/structure/fluff/walldeco/chains, -/turf/open/floor/dirt, +/obj/machinery/light/fueled/wallfire/candle/r, +/turf/open/floor/woodturned/nosmooth, /area/indoors/town/garrison) "iLA" = ( /obj/structure/fluff/clock, @@ -10300,13 +10796,10 @@ /turf/open/floor/wood, /area/outdoors/town) "iMW" = ( -/obj/structure/closet/crate/drawer/random, -/obj/item/clothing/shirt/tunic/colored/random, -/obj/item/clothing/shirt/tunic/colored/random, -/obj/item/clothing/pants/tights, -/obj/item/clothing/pants/tights/colored/black, -/turf/open/floor/carpet/purple, -/area/indoors/town/steward) +/turf/open/water/river{ + dir = 1 + }, +/area/under/cave) "iNt" = ( /obj/structure/fluff/traveltile{ aportalgoesto = "daftmarsh-outlands-to-cave"; @@ -10334,6 +10827,10 @@ /obj/structure/fluff/walldeco/church/line, /turf/open/floor/church, /area/indoors/town/church) +"iQu" = ( +/obj/structure/rack, +/turf/open/floor/ruinedwood, +/area/indoors/town/garrison) "iQz" = ( /obj/structure/table/wood{ dir = 1; @@ -10503,6 +11000,12 @@ }, /turf/open/floor/blocks/stonered/tiny, /area/indoors/town/keep/kitchen) +"iWs" = ( +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "iWC" = ( /obj/structure/closet/crate/chest/gold, /obj/item/lockpick, @@ -10572,12 +11075,11 @@ /turf/closed/wall/mineral/stone, /area/indoors/town/merc_guild) "iYb" = ( -/obj/structure/table/wood/large_new{ - icon_state = "alt_largetable"; - dir = 9 +/obj/structure/flora/grass{ + icon_state = "grass3" }, -/turf/open/floor/carpet/red, -/area/indoors/town/theatre) +/turf/open/floor/dirt, +/area/outdoors/town) "iYd" = ( /obj/structure/closet/crate/drawer{ pixel_y = 6 @@ -10629,14 +11131,62 @@ /turf/closed/wall/mineral/wooddark/end, /area/indoors/town) "jas" = ( -/obj/structure/chair/wood/alt/chair_noble/red, -/turf/open/floor/carpet/red, +/obj/structure/rack, +/obj/item/weapon/mace/cudgel, +/obj/item/weapon/mace/cudgel{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/weapon/mace/cudgel{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/item/weapon/mace/cudgel{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/ruinedwood/darker, /area/indoors/town/garrison) "jaE" = ( /obj/structure/table/wood/plain_alt, /obj/item/recipe_book/engineering, /turf/open/floor/blocks/stonered/tiny, /area/indoors/town/dwarfin) +"jaH" = ( +/obj/structure/rack/shelf/biggest, +/obj/item/flashlight/flare/torch/lantern, +/obj/item/flashlight/flare/torch/lantern, +/obj/item/weapon/knife/dagger/steel{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/weapon/knife/dagger/steel{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/weapon/knife/dagger/steel{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/rope{ + pixel_y = 6; + pixel_x = -8 + }, +/obj/item/rope{ + pixel_y = 6; + pixel_x = -8 + }, +/obj/item/rope{ + pixel_y = 6; + pixel_x = -8 + }, +/obj/item/rope{ + pixel_y = 6; + pixel_x = -8 + }, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "jbd" = ( /obj/structure/fluff/railing/border{ dir = 6 @@ -10673,6 +11223,11 @@ /obj/structure/closet/crate/crafted_closet/crafted, /turf/open/floor/ruinedwood/spiralfade, /area/indoors/town/tavern) +"jdA" = ( +/obj/structure/fluff/wallclock, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/woodturned/nosmooth, +/area/indoors/town/garrison) "jdB" = ( /obj/structure/fluff/railing/border{ dir = 4 @@ -10759,6 +11314,10 @@ }, /turf/open/floor/blocks/stonered/tiny, /area/indoors/town/bath) +"jfK" = ( +/obj/machinery/light/fueled/firebowl/stump, +/turf/open/floor/dirt, +/area/outdoors/basin/safe) "jfT" = ( /obj/structure/stairs{ dir = 8 @@ -10777,6 +11336,11 @@ "jgP" = ( /turf/open/floor/ruinedwood, /area/indoors/town/church) +"jgX" = ( +/turf/open/water/river{ + dir = 1 + }, +/area/under/cavewet) "jhd" = ( /obj/structure/table/wood/crafted, /obj/item/reagent_containers/glass/cup/wooden, @@ -10844,12 +11408,9 @@ /turf/open/floor/ruinedwood/turned/darker, /area/indoors/town) "jjV" = ( -/obj/machinery/light/fueled/wallfire/candle/l{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/hexstone, -/area/indoors/town/steward) +/obj/machinery/light/fueled/wallfire/candle, +/turf/open/floor/cobble, +/area/outdoors/town/keep) "jke" = ( /obj/structure/fluff/traveltile{ aportalgoesto = "daftmarsh-outlands-to-town"; @@ -10865,11 +11426,9 @@ /turf/open/floor/cobble, /area/under/town/basement) "jlg" = ( -/obj/structure/fluff/railing/border{ - dir = 4 - }, +/obj/machinery/light/fueled/wallfire/candle/r, /turf/open/floor/wood, -/area/indoors/town/garrison) +/area/indoors/town/shop) "jlx" = ( /obj/machinery/light/fueled/firebowl/church, /obj/structure/fluff/walldeco/church/line{ @@ -10897,7 +11456,12 @@ /turf/open/floor/carpet/red, /area/indoors/town) "jnm" = ( -/turf/open/floor/dirt, +/obj/structure/door/iron/bars/cell{ + name = "Armoury" + }, +/obj/effect/mapping_helpers/access/keyset/garrison/general, +/obj/effect/mapping_helpers/access/locker, +/turf/open/floor/ruinedwood, /area/indoors/town/garrison) "jnx" = ( /turf/open/floor/carpet/lord/left, @@ -10987,13 +11551,17 @@ /obj/machinery/light/fueled/wallfire/candle/blue, /turf/open/floor/wood, /area/indoors/town/keep/magician) -"jrb" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, +"jra" = ( +/obj/structure/table/map/vanderlin{ + dir = 10 + }, +/turf/open/floor/cobble, /area/outdoors/town) "jrn" = ( /obj/structure/bookcase/random, -/obj/item/book/law, +/obj/item/book/law{ + pixel_x = -6 + }, /turf/open/floor/carpet/lord/center, /area/indoors/town/keep/lord_appt) "jrN" = ( @@ -11038,6 +11606,11 @@ /obj/item/reagent_containers/glass/bucket/wooden, /turf/open/floor/dirt, /area/indoors/town/church/inquisition) +"jto" = ( +/obj/structure/carpet, +/obj/structure/fluff/wallclock, +/turf/open/floor/ruinedwood/chevron, +/area/indoors/town/steward) "jts" = ( /obj/structure/table/wood/reinforced_alter, /obj/structure/bars{ @@ -11059,6 +11632,10 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/carpet/lord/right, /area/under/town/sewer) +"juG" = ( +/obj/structure/fake_machine/scomm/l, +/turf/open/floor/cobblerock, +/area/outdoors/town) "juH" = ( /obj/structure/closet/crate/drawer{ pixel_y = 6 @@ -11240,7 +11817,6 @@ /turf/open/floor/metal/barograte, /area/indoors/town/clocktower) "jAn" = ( -/obj/structure/fermentation_keg/random/water, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/tile/bfloorz, /area/indoors/town/garrison) @@ -11265,6 +11841,12 @@ }, /turf/open/openspace, /area/indoors/town/orphanage) +"jCe" = ( +/obj/structure/fake_machine/mail{ + mailtag = "Forcible Requisitions Department" + }, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "jCs" = ( /turf/closed/wall/mineral/wooddark/end{ dir = 4 @@ -11338,6 +11920,33 @@ /obj/structure/fluff/walldeco/chains, /turf/open/floor/blocks, /area/under/town/basement) +"jGk" = ( +/obj/structure/closet/crate/crafted_closet{ + name = "Noble Attire" + }, +/obj/item/clothing/head/helmet/skullcap/grenzelhoft, +/obj/item/clothing/gloves/angle/grenzel, +/obj/item/clothing/pants/grenzelpants, +/obj/item/clothing/shirt/grenzelhoft, +/obj/item/clothing/shoes/rare/grenzelhoft, +/obj/item/clothing/cloak/raincloak/furcloak, +/obj/item/clothing/head/fancyhat, +/obj/item/clothing/shoes/boots, +/obj/item/clothing/shirt/dress/silkdress/colored/random, +/obj/item/clothing/pants/tights/colored/black, +/obj/item/clothing/shirt/tunic/colored/random, +/obj/item/clothing/shoes/shalal, +/obj/item/clothing/head/crown/circlet, +/obj/item/clothing/cloak/raincloak/colored/purple, +/obj/item/clothing/shirt/tunic/colored/purple, +/obj/item/clothing/gloves/leather, +/obj/item/clothing/shirt/dress/gown, +/obj/item/clothing/shirt/dress/gown/fallgown, +/obj/item/clothing/shirt/dress/gown/summergown, +/obj/item/clothing/shirt/dress/gown/wintergown, +/obj/machinery/light/fueled/wallfire/candle, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "jGI" = ( /obj/structure/fluff/railing/border{ dir = 1 @@ -11427,17 +12036,9 @@ /turf/open/floor/ruinedwood/spiral, /area/outdoors/town) "jJI" = ( -/obj/structure/rack, -/obj/item/rope/chain, -/obj/item/rope/chain, -/obj/item/rope/chain, -/obj/item/rope/chain, -/obj/item/rope/chain, -/obj/item/rope/chain, -/obj/item/rope/chain, -/obj/item/rope/chain, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/herringbone, +/obj/machinery/light/fueled/firebowl/standing, +/turf/open/floor/ruinedwood/darker, /area/indoors/town/garrison) "jLa" = ( /obj/structure/ladder, @@ -11451,10 +12052,16 @@ dir = 1 }, /area/outdoors/town/roofs) -"jLg" = ( -/obj/structure/flora/grass/bush, -/obj/structure/flora/grass, -/turf/open/floor/grass, +"jLy" = ( +/obj/structure/fluff/railing/wood{ + dir = 8; + pixel_y = -2 + }, +/obj/structure/fluff/railing/wood{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/twig, /area/outdoors/town) "jLH" = ( /obj/structure/flora/grass/water, @@ -11559,6 +12166,13 @@ }, /turf/open/floor/blocks/newstone/alt, /area/indoors/town/church) +"jRm" = ( +/obj/structure/mirror/courtagent{ + pixel_y = 0; + pixel_x = 32 + }, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "jRq" = ( /turf/closed/mineral/bedrock, /area/under/cave) @@ -11598,6 +12212,9 @@ }, /turf/open/floor/carpet/red, /area/indoors/town/garrison) +"jTt" = ( +/turf/open/floor/ruinedwood/chevron, +/area/indoors/town/steward) "jTw" = ( /obj/structure/gate{ redstone_id = "gatemanorout"; @@ -11649,6 +12266,15 @@ "jVR" = ( /turf/open/floor/blocks/paving, /area/indoors/town/keep) +"jWy" = ( +/obj/structure/window/openclose/reinforced{ + dir = 8 + }, +/obj/structure/curtain/bounty/dir{ + dir = 8 + }, +/turf/open/floor/ruinedwood/chevron, +/area/indoors/town/steward) "jWB" = ( /obj/structure/steam_recharger, /turf/open/floor/tile, @@ -11671,14 +12297,11 @@ /turf/open/floor/blocks/paving, /area/outdoors/town) "jXx" = ( -/obj/structure/table/wood{ - dir = 1; - icon_state = "longtable_mid" +/obj/structure/fluff/railing/border{ + dir = 8 }, -/obj/structure/mirror, -/obj/item/reagent_containers/powder/spice, -/turf/open/floor/ruinedwood/turned/darker, -/area/indoors/town/theatre) +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "jXE" = ( /turf/closed/mineral/random/med, /area/under/cave) @@ -11719,15 +12342,17 @@ /turf/open/floor/wood, /area/indoors/town) "jZw" = ( -/turf/open/floor/cobble, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/fueled/wallfire/candle/l, +/turf/open/floor/ruinedwood/darker, /area/indoors/town/garrison) "jZW" = ( /obj/machinery/light/fueled/hearth, /turf/open/floor/churchbrick, /area/indoors/town/church/inquisition) "jZY" = ( -/obj/item/reagent_containers/food/snacks/smallrat, -/turf/open/floor/dirt, +/obj/machinery/light/fueled/wallfire/candle/r, +/turf/open/floor/ruinedwood, /area/indoors/town/garrison) "kaj" = ( /obj/structure/rack/shelf/biggest, @@ -11764,6 +12389,12 @@ }, /turf/open/floor/carpet/royalblack, /area/indoors/town/keep/hand) +"kcs" = ( +/obj/structure/stairs{ + dir = 4 + }, +/turf/open/floor/woodturned/nosmooth, +/area/indoors/town/garrison) "kcB" = ( /obj/item/key/apartments/apartment8, /obj/item/key/apartments/apartment8, @@ -11899,17 +12530,9 @@ /turf/open/floor/wood/nosmooth, /area/outdoors/town) "khT" = ( -/obj/structure/table/wood{ - icon_state = "longtable"; - dir = 1 - }, -/obj/item/perfume/random, -/obj/machinery/light/fueled/wallfire/candle/l{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/ruinedwood/turned/darker, -/area/indoors/town/theatre) +/obj/machinery/light/fueled/wallfire/candle/r, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "khY" = ( /obj/structure/table/wood/plain_alt, /obj/structure/fluff/walldeco/med3{ @@ -11934,6 +12557,13 @@ /obj/machinery/light/fueled/wallfire/candle, /turf/open/floor/hexstone, /area/indoors/town/keep/halls/w) +"kjy" = ( +/obj/structure/table/wood/reinf_long{ + dir = 4 + }, +/obj/item/toy/cards/deck, +/turf/open/floor/dirt/road, +/area/outdoors/town) "kjF" = ( /obj/structure/table/wood/crafted, /obj/structure/fluff/millstone, @@ -11976,6 +12606,22 @@ /obj/effect/mapping_helpers/access/keyset/church/general, /turf/open/floor/cobble, /area/indoors/town/church) +"klR" = ( +/obj/structure/table/wood/plain_alt, +/obj/item/reagent_containers/glass/bottle/redwine{ + pixel_y = 11; + pixel_x = -7 + }, +/obj/item/reagent_containers/glass/cup{ + pixel_y = -3; + pixel_x = -4 + }, +/obj/item/reagent_containers/glass/cup{ + pixel_y = 9; + pixel_x = 5 + }, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "kml" = ( /obj/structure/fluff/walldeco/church/line, /obj/structure/fluff/walldeco/church/line{ @@ -12012,7 +12658,8 @@ /turf/open/floor/churchmarble, /area/outdoors/town/roofs) "knq" = ( -/turf/open/water/marsh, +/obj/structure/stairs, +/turf/open/floor/ruinedwood/darker, /area/indoors/town/garrison) "knF" = ( /obj/structure/lever/hidden/thieves_guild{ @@ -12209,16 +12856,19 @@ /obj/machinery/light/fueled/wallfire/candle/r, /turf/open/floor/greenstone, /area/indoors/town/keep/library) -"kun" = ( -/obj/machinery/light/fueled/torchholder/c, -/turf/open/floor/ruinedwood/spiral, -/area/outdoors/town) "kuE" = ( /obj/structure/closet/crate/crafted_closet, /obj/item/gun/ballistic/bow/cross, /obj/item/ammo_holder/quiver/bolts, /turf/open/floor/ruinedwood/spiralfade, /area/outdoors/town/roofs) +"kuY" = ( +/obj/structure/table/wood/reinforced_alt{ + dir = 8 + }, +/obj/item/clothing/neck/psycross/baotha, +/turf/open/floor/cobblerock, +/area/under/town/basement) "kvl" = ( /obj/structure/chair/stool, /turf/open/floor/ruinedwood/spiral, @@ -12267,6 +12917,12 @@ }, /turf/open/openspace, /area/outdoors/town) +"kwi" = ( +/obj/structure/chair/wood/alt/chair_noble/purple{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/indoors/town/keep/courtagent) "kws" = ( /obj/structure/bars/cemetery, /turf/open/floor/cobble, @@ -12303,18 +12959,12 @@ /turf/open/floor/tile, /area/indoors/town/tavern) "kxz" = ( -/obj/structure/closet/crate/crafted_closet, -/obj/item/clothing/shirt/undershirt/puritan, -/obj/item/clothing/shirt/undershirt/colored/random, -/obj/item/clothing/shirt/undershirt/colored/random, -/obj/item/clothing/shirt/undershirt/colored/random, -/obj/item/clothing/shirt/undershirt/sailor, -/obj/item/clothing/shirt/undershirt/sailor/red, -/obj/item/clothing/armor/leather/vest/colored/black, -/obj/item/clothing/armor/leather/vest/colored/random, -/obj/item/clothing/armor/leather/vest/colored/random, -/turf/open/floor/ruinedwood/turned/darker, -/area/indoors/town/theatre) +/obj/structure/fluff/railing/border{ + dir = 6 + }, +/obj/machinery/light/fueled/firebowl/stump, +/turf/open/floor/dirt, +/area/outdoors/town) "kxN" = ( /obj/structure/fluff/railing/border, /turf/open/floor/tile/diamond/purple, @@ -12434,12 +13084,16 @@ /turf/open/floor/wood, /area/indoors/town) "kBs" = ( -/obj/machinery/light/fueled/wallfire/candle/l{ - pixel_x = 0; - pixel_y = 32 +/obj/structure/bars/passage/shutter/open{ + redstone_id = "gate_shutter" }, -/turf/open/floor/wood, -/area/indoors/town/steward) +/obj/effect/mapping_helpers/access/keyset/manor/general, +/obj/effect/mapping_helpers/access/locker, +/obj/structure/door/fancy{ + name = "Servant's Entrance" + }, +/turf/open/floor/cobblerock, +/area/outdoors/town/keep) "kBx" = ( /obj/structure/table/wood{ dir = 1; @@ -12465,10 +13119,6 @@ /obj/machinery/light/fueled/torchholder/r, /turf/open/floor/cobble, /area/under/town/basement) -"kCf" = ( -/obj/structure/chair/bench/church/smallbench, -/turf/open/floor/dirt, -/area/outdoors/town) "kCU" = ( /obj/structure/stairs/stone{ dir = 4 @@ -12482,19 +13132,23 @@ /turf/open/floor/ruinedwood/turned/darker, /area/under/town/sewer) "kDD" = ( -/obj/structure/bed/shit, +/obj/structure/rack, +/obj/item/rope/chain, +/obj/item/rope/chain, +/obj/item/rope/chain, +/obj/item/rope/chain, +/obj/item/rope/chain, +/obj/item/rope/chain, +/obj/item/rope/chain, +/obj/item/rope/chain, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/cobble, +/turf/open/floor/ruinedwood, /area/indoors/town/garrison) "kEe" = ( -/obj/structure/table/wood/large/corner{ - dir = 1 - }, -/obj/item/book/law{ - pixel_x = 2; - pixel_y = -8 +/obj/structure/fake_machine/mail{ + mailtag = "City Watch Garrison" }, -/turf/open/floor/carpet/red, +/turf/open/floor/woodturned/nosmooth, /area/indoors/town/garrison) "kEj" = ( /obj/item/natural/worms/leech{ @@ -12584,13 +13238,8 @@ /turf/open/floor/ruinedwood/spiral, /area/indoors/town/bath) "kHp" = ( -/obj/machinery/light/fueled/wallfire/candle/l{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/structure/closet/crate/crafted_closet/steward, -/obj/effect/spawner/guaranteed_map_spawner/listed/steward_keys, -/turf/open/floor/carpet/purple, +/obj/structure/carpet, +/turf/open/floor/ruinedwood/chevron, /area/indoors/town/steward) "kHC" = ( /obj/structure/fluff/railing/border{ @@ -12666,7 +13315,7 @@ /area/outdoors/town) "kLj" = ( /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/blocks, +/turf/open/floor/ruinedwood, /area/indoors/town/garrison) "kLk" = ( /obj/structure/ladder, @@ -12783,6 +13432,14 @@ /obj/structure/fluff/railing/border, /turf/open/floor/dirt/road, /area/outdoors/town) +"kPr" = ( +/obj/effect/mapping_helpers/access/locker, +/obj/effect/mapping_helpers/access/keyset/manor/courtagent, +/obj/structure/door/viewport{ + name = "peculiar door" + }, +/turf/open/floor/blocks, +/area/indoors/town/keep/courtagent) "kPu" = ( /obj/structure/mannequin/male/female, /obj/structure/fluff/railing/border, @@ -12823,12 +13480,6 @@ /obj/structure/rack/shelf/biggest, /turf/open/floor/cobble, /area/under/town/sewer) -"kQI" = ( -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/wood, -/area/indoors/town/garrison) "kRi" = ( /obj/structure/rack, /obj/item/reagent_containers/glass/bucket/wooden, @@ -12863,27 +13514,9 @@ /turf/open/floor/grass, /area/outdoors/basin) "kTv" = ( -/obj/structure/table/wood{ - icon_state = "longtable" - }, -/obj/item/reagent_containers/glass/cup/golden{ - pixel_x = 7; - pixel_y = 15 - }, -/obj/item/reagent_containers/glass/carafe/gold/redwine{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/cup/steel{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/machinery/light/fueled/wallfire/candle/l{ - pixel_x = 0; - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/indoors/town/steward) +/obj/structure/carpet/red, +/turf/open/floor/cobble, +/area/under/town/basement) "kTw" = ( /obj/structure/fluff/walldeco/church/line{ dir = 1 @@ -12912,8 +13545,8 @@ /turf/open/floor/dirt, /area/outdoors/town/keep) "kTY" = ( -/obj/structure/fluff/railing/border{ - dir = 10 +/obj/structure/flora/grass{ + icon_state = "grass2" }, /turf/open/floor/dirt, /area/outdoors/town) @@ -13138,6 +13771,14 @@ }, /turf/open/floor/wood, /area/indoors/town/keep/garrison) +"lee" = ( +/obj/structure/carpet, +/obj/structure/fake_machine/submission{ + pixel_y = 0; + pixel_x = 32 + }, +/turf/open/floor/hexstone, +/area/indoors/town/steward) "leh" = ( /obj/structure/stairs{ dir = 1 @@ -13193,20 +13834,11 @@ /turf/closed/mineral, /area/outdoors/basin) "lhP" = ( -/obj/item/clothing/head/helmet/townwatch{ - pixel_y = 2 - }, -/obj/item/clothing/head/helmet/townwatch{ - pixel_x = -5; - pixel_y = -8 - }, -/obj/item/clothing/head/helmet/townwatch/alt{ - pixel_x = 9; - pixel_y = -6 +/obj/structure/fluff/railing/border{ + dir = 5 }, -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood, +/obj/structure/ladder, +/turf/open/floor/woodturned/nosmooth, /area/indoors/town/garrison) "lhQ" = ( /obj/structure/closet/crate/chest/crafted, @@ -13249,6 +13881,13 @@ /obj/structure/kneestingers, /turf/open/floor/dirt, /area/outdoors/town) +"ljr" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/machinery/light/fueled/wallfire/candle/r, +/turf/open/floor/ruinedwood/chevron, +/area/indoors/town/steward) "ljt" = ( /turf/closed/wall/mineral/wooddark/end{ dir = 4 @@ -13258,8 +13897,8 @@ /turf/open/floor/carpet/lord/right, /area/indoors/town/keep) "ljV" = ( -/obj/structure/fluff/clock, -/turf/open/floor/dirt, +/obj/structure/closet/crate/chest/neu, +/turf/open/floor/ruinedwood/darker, /area/indoors/town/garrison) "lky" = ( /obj/structure/fluff/railing/wood{ @@ -13289,7 +13928,13 @@ /turf/open/floor/blocks, /area/outdoors/town/roofs) "lmq" = ( -/turf/open/floor/carpet/purple, +/obj/structure/window/openclose/reinforced{ + dir = 8 + }, +/obj/structure/curtain/bounty/dir{ + dir = 8 + }, +/turf/open/floor/tile/masonic/arrow, /area/indoors/town/steward) "lmX" = ( /turf/closed/wall/mineral/stonebrick, @@ -13581,6 +14226,12 @@ /obj/structure/water_pipe, /turf/open/openspace, /area/indoors/town/clocktower) +"lDf" = ( +/obj/structure/table/wood/large/corner{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/indoors/town/keep/courtagent) "lDK" = ( /obj/machinery/light/fueled/torchholder/c, /turf/open/floor/hexstone, @@ -13623,6 +14274,16 @@ }, /turf/open/floor/dirt/road, /area/under/cavelava) +"lFo" = ( +/obj/structure/fluff/railing/wood{ + dir = 8; + pixel_y = -1 + }, +/obj/structure/chair/stool{ + pixel_y = -6 + }, +/turf/open/floor/ruinedwood/spiral, +/area/outdoors/town) "lFB" = ( /obj/structure/flora/newtree, /turf/open/floor/dirt, @@ -13776,6 +14437,10 @@ /obj/structure/fluff/railing/border, /turf/open/openspace, /area/outdoors/town/roofs) +"lOJ" = ( +/obj/structure/fake_machine/scomm, +/turf/open/floor/ruinedwood/spiral, +/area/outdoors/town) "lOR" = ( /turf/open/water/marsh/deep, /area/outdoors/town) @@ -13851,6 +14516,12 @@ "lRu" = ( /turf/open/floor/greenstone, /area/indoors/town/keep/library) +"lRH" = ( +/obj/machinery/light/fueled/wallfire/candle{ + pixel_y = -32 + }, +/turf/open/floor/hexstone, +/area/indoors/town/steward) "lRK" = ( /obj/machinery/essence/combiner{ pixel_y = 7 @@ -13877,6 +14548,11 @@ }, /turf/open/floor/ruinedwood/darker, /area/indoors/town/orphanage) +"lSD" = ( +/obj/structure/stairs, +/obj/machinery/light/fueled/wallfire/candle/l, +/turf/open/floor/woodturned/nosmooth, +/area/indoors/town/garrison) "lTi" = ( /obj/structure/table/wood/plain_alt, /turf/open/floor/ruinedwood/spiral, @@ -13905,8 +14581,16 @@ /obj/machinery/light/fueled/wallfire/candle/blue/l, /turf/open/floor/greenstone, /area/indoors/town/keep/magician) +"lUw" = ( +/obj/structure/fluff/railing/border{ + dir = 4 + }, +/turf/open/floor/tile/bfloorz, +/area/indoors/town/garrison) "lUC" = ( -/obj/effect/waterfall, +/obj/effect/waterfall{ + pixel_y = -32 + }, /turf/open/water/river, /area/under/cavewet) "lUM" = ( @@ -13931,6 +14615,10 @@ }, /turf/open/floor/cobble, /area/under/town/basement) +"lVk" = ( +/obj/structure/flora/grass/thorn_bush, +/turf/open/water/marsh, +/area/outdoors/basin/safe) "lVs" = ( /obj/structure/bed/hay, /turf/open/floor/carpet/royalblack, @@ -14102,6 +14790,10 @@ /obj/item/chair, /turf/open/floor/ruinedwood/darker, /area/under/town/sewer) +"mcb" = ( +/obj/structure/stairs, +/turf/open/floor/dirt/road, +/area/outdoors/town) "mcD" = ( /obj/structure/bed/wool, /obj/machinery/light/fueled/wallfire/candle{ @@ -14185,6 +14877,12 @@ }, /turf/open/floor/dirt/road, /area/outdoors/basin) +"meP" = ( +/obj/structure/stairs{ + dir = 4 + }, +/turf/open/floor/cobblerock, +/area/outdoors/basin/safe) "meW" = ( /obj/structure/fluff/railing/wood{ dir = 1; @@ -14223,12 +14921,13 @@ /turf/closed/wall/mineral/stone, /area/indoors/town/keep/servanthead) "mgH" = ( -/obj/structure/fluff/railing/border, -/obj/structure/fluff/railing/border{ - dir = 10 +/obj/effect/mapping_helpers/access/keyset/garrison/lieutenant, +/obj/effect/mapping_helpers/access/locker, +/obj/structure/door/window{ + name = "City Watch Lieutenant" }, -/turf/open/floor/wood, -/area/indoors/town/garrison) +/turf/open/floor/woodturned/nosmooth, +/area/indoors/town/garrison/lieutenant) "mgR" = ( /obj/structure/fluff/clock, /turf/open/floor/carpet/purple, @@ -14418,10 +15117,6 @@ /obj/machinery/light/fueled/firebowl/standing/blue, /turf/open/floor/church, /area/indoors/town/bath) -"mnv" = ( -/obj/structure/table/wood/reinforced_alter, -/turf/open/floor/grass, -/area/outdoors/town) "mnH" = ( /obj/structure/fermentation_keg/random/beer, /turf/open/water/swamp, @@ -14492,6 +15187,12 @@ dir = 4 }, /area/outdoors/town) +"mqv" = ( +/obj/structure/door/weak{ + name = "Theater Wardrobe" + }, +/turf/open/floor/ruinedwood/alt, +/area/indoors/town) "mqC" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/light/fueled/wallfire/candle/l, @@ -14579,11 +15280,7 @@ /obj/structure/fluff/railing/border{ dir = 8 }, -/obj/machinery/light/fueled/lanternpost/fixed{ - pixel_x = -3; - pixel_y = -5 - }, -/turf/open/floor/blocks, +/turf/open/floor/twig, /area/outdoors/town) "muT" = ( /obj/machinery/light/fueled/wallfire/candle{ @@ -14615,7 +15312,7 @@ "mvu" = ( /obj/structure/closet/crate/chest/neu, /turf/open/floor/metal, -/area/indoors/town/shop) +/area/indoors/town/clocktower) "mvL" = ( /obj/structure/fluff/railing/wood{ dir = 1; @@ -14665,21 +15362,7 @@ /turf/open/floor/wood, /area/outdoors/town/roofs) "myy" = ( -/obj/structure/rack, -/obj/item/natural/bundle/cloth{ - amount = 10; - pixel_x = 1 - }, -/obj/item/needle{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/needle/thorn{ - pixel_x = 10; - pixel_y = -1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/herringbone, +/turf/closed/wall/mineral/wood/window, /area/indoors/town/garrison) "myP" = ( /obj/item/reagent_containers/glass/bottle, @@ -14855,6 +15538,9 @@ /obj/structure/fluff/railing/wood{ dir = 4 }, +/obj/structure/fake_machine/scomm{ + pixel_y = -32 + }, /turf/open/floor/twig, /area/outdoors/town) "mDQ" = ( @@ -14943,9 +15629,11 @@ /turf/open/openspace, /area/indoors/town/keep) "mIr" = ( -/obj/effect/landmark/events/haunts, -/turf/open/floor/blocks, -/area/outdoors/town) +/obj/structure/table/wood/large/corner{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/indoors/town/keep/courtagent) "mIs" = ( /obj/structure/rack/shelf/biggest, /obj/item/clothing/shirt/undershirt/colored/random, @@ -14989,7 +15677,7 @@ pixel_x = 10 }, /turf/open/floor/metal/barograte/open, -/area/indoors/town/shop) +/area/indoors/town/clocktower) "mKo" = ( /obj/machinery/light/fueled/wallfire/candle/blue, /turf/open/floor/carpet/stellar, @@ -15031,6 +15719,12 @@ /obj/structure/fluff/walldeco/vinez/red, /turf/closed/wall/mineral/wooddark/horizontal, /area/indoors/town) +"mNl" = ( +/obj/structure/stairs{ + dir = 8 + }, +/turf/open/floor/ruinedwood/alt, +/area/outdoors/town) "mNR" = ( /obj/structure/bars/cemetery, /turf/open/floor/grass, @@ -15058,7 +15752,7 @@ pixel_x = 10 }, /turf/open/floor/metal/barograte/open, -/area/indoors/town/shop) +/area/indoors/town/clocktower) "mPu" = ( /turf/open/floor/carpet/stellar, /area/indoors/town/shop) @@ -15084,7 +15778,7 @@ "mSa" = ( /obj/effect/decal/cleanable/debris/stone, /turf/open/floor/metal/alt, -/area/indoors/town/shop) +/area/indoors/town/clocktower) "mSy" = ( /obj/machinery/light/fueled/wallfire/candle/r, /turf/open/floor/ruinedwood/spiral, @@ -15145,13 +15839,6 @@ }, /turf/open/floor/wood, /area/indoors/town/tavern) -"mVG" = ( -/obj/structure/stairs, -/obj/structure/fluff/railing/border{ - dir = 8 - }, -/turf/open/floor/wood, -/area/indoors/town/garrison) "mVK" = ( /obj/structure/fluff/railing/border, /turf/open/openspace, @@ -15226,6 +15913,20 @@ }, /turf/open/floor/wood, /area/outdoors/town) +"mZK" = ( +/turf/open/water/marsh, +/area/outdoors/basin/safe) +"mZN" = ( +/obj/structure/window/openclose/reinforced{ + dir = 8 + }, +/obj/structure/curtain/bounty/dir{ + dir = 8 + }, +/turf/open/floor/tile/masonic/arrow{ + dir = 1 + }, +/area/indoors/town/steward) "naw" = ( /obj/item/natural/stone, /turf/open/floor/dirt, @@ -15272,6 +15973,28 @@ "nbV" = ( /turf/closed/wall/mineral/wooddark, /area/indoors/soilsons) +"nbY" = ( +/obj/structure/rack, +/obj/item/flashlight/flare/torch/lantern{ + pixel_x = -5 + }, +/obj/item/flashlight/flare/torch/lantern{ + pixel_x = 8 + }, +/obj/item/flashlight/flare/torch/lantern{ + pixel_x = -5 + }, +/obj/item/flashlight/flare/torch/lantern{ + pixel_x = 8 + }, +/obj/item/flint, +/obj/item/flint{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/ruinedwood, +/area/indoors/town/garrison) "nca" = ( /obj/structure/fluff/railing/wood, /obj/effect/decal/cleanable/debris/stone, @@ -15283,6 +16006,14 @@ }, /turf/open/floor/wood/nosmooth, /area/outdoors/town) +"ncJ" = ( +/obj/structure/chair/wood/alt{ + dir = 1; + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/cobblerock, +/area/under/town/basement) "ncP" = ( /obj/machinery/light/fueled/torchholder/c, /turf/open/floor/tile, @@ -15380,12 +16111,6 @@ /obj/structure/bed/mediocre, /turf/open/floor/churchmarble, /area/indoors/town/clinic_large) -"ngA" = ( -/obj/structure/fluff/railing/border{ - dir = 8 - }, -/turf/open/floor/wood, -/area/indoors/town/garrison) "nhk" = ( /obj/structure/chair/wood/alt/chair_noble/red{ dir = 8 @@ -15526,6 +16251,10 @@ /obj/item/reagent_containers/food/snacks/rotten/poultry, /turf/open/floor/ruinedwood/darker, /area/under/town/sewer) +"npp" = ( +/obj/structure/flora/grass/water, +/turf/open/water/marsh/deep, +/area/outdoors/basin/safe) "npv" = ( /obj/structure/door/iron/bars, /obj/effect/mapping_helpers/access/keyset/manor/mage, @@ -15548,6 +16277,9 @@ "npF" = ( /turf/open/floor/carpet/red, /area/indoors/town/keep/archivist) +"nqi" = ( +/turf/open/floor/naturalstone, +/area/under/cavewet) "nqj" = ( /obj/structure/closet/crate/drawer, /turf/open/floor/ruinedwood/spiral, @@ -15693,11 +16425,20 @@ /turf/open/floor/blocks, /area/indoors/town/smithy) "nuz" = ( -/obj/structure/closet/crate/crafted_closet, -/obj/item/clothing/shirt/shadowshirt, -/obj/machinery/light/fueled/wallfire/candle/l, -/turf/open/floor/ruinedwood/turned/darker, -/area/indoors/town/theatre) +/obj/structure/chair/stool{ + pixel_y = -6 + }, +/turf/open/floor/dirt/road, +/area/outdoors/town) +"nuG" = ( +/obj/structure/fluff/railing/border{ + dir = 8 + }, +/obj/machinery/light/fueled/wallfire/candle{ + pixel_y = -32 + }, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "nuO" = ( /obj/structure/stairs{ dir = 8 @@ -15753,11 +16494,6 @@ }, /turf/open/floor/wood, /area/indoors/butchershop) -"nws" = ( -/obj/structure/stairs, -/obj/machinery/light/fueled/wallfire/candle/r, -/turf/open/floor/wood, -/area/indoors/town/garrison) "nwA" = ( /obj/structure/stairs{ dir = 1 @@ -15815,16 +16551,6 @@ /obj/effect/mapping_helpers/access/keyset/church/general, /turf/open/floor/church, /area/indoors/town/church) -"nzi" = ( -/obj/structure/table/wood/large/corner{ - dir = 10 - }, -/obj/item/reagent_containers/food/snacks/hardtack{ - pixel_x = 4; - pixel_y = 9 - }, -/turf/open/floor/carpet/red, -/area/indoors/town/garrison) "nAq" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/cobble, @@ -15858,6 +16584,10 @@ /obj/structure/closet/crate/crafted_closet/inn/chest, /turf/open/floor/ruinedwood/spiral, /area/outdoors/town) +"nCk" = ( +/obj/structure/flora/grass/water, +/turf/open/water/marsh, +/area/outdoors/basin/safe) "nCm" = ( /obj/structure/bookcase/random/myths, /obj/machinery/light/fueled/wallfire/candle, @@ -15904,13 +16634,8 @@ /turf/open/floor/blocks/stonered/tiny, /area/indoors/town/clinic_large) "nET" = ( -/obj/structure/ladder, -/obj/machinery/light/fueled/wallfire/candle/l{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/wood/nosmooth, -/area/indoors/town/theatre) +/turf/closed/mineral/bedrock, +/area/under/town/basement) "nEV" = ( /obj/structure/rack/shelf/biggest, /obj/item/reagent_containers/glass/bucket/pot, @@ -15947,6 +16672,13 @@ /obj/structure/kneestingers, /turf/open/floor/hexstone, /area/under/town/sewer) +"nGa" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/walldeco/chains{ + pixel_x = 4 + }, +/turf/open/floor/metal/barograte, +/area/indoors/town/garrison) "nGb" = ( /turf/open/floor/wood, /area/indoors/town/keep/magician) @@ -15993,6 +16725,10 @@ /obj/structure/fluff/clock, /turf/open/floor/wood/nosmooth, /area/indoors/town/keep/archivist) +"nKA" = ( +/obj/machinery/light/fueled/wallfire/candle/l, +/turf/open/floor/tile/masonic/arrow, +/area/indoors/town/steward) "nKP" = ( /turf/open/floor/rooftop, /area/outdoors/town/roofs) @@ -16017,6 +16753,10 @@ }, /turf/open/floor/ruinedwood/spiral, /area/indoors/town) +"nMd" = ( +/obj/structure/fake_machine/scomm/l, +/turf/open/floor/twig, +/area/outdoors/town) "nMf" = ( /obj/structure/kneestingers, /turf/open/floor/naturalstone, @@ -16267,6 +17007,10 @@ }, /turf/open/floor/wood, /area/outdoors/town) +"nVB" = ( +/obj/structure/closet/crate/chest/crate, +/turf/open/floor/twig, +/area/outdoors/town) "nVS" = ( /obj/machinery/light/fueled/lanternpost/fixed, /turf/open/floor/woodturned/nosmooth, @@ -16306,6 +17050,7 @@ /obj/structure/fluff/walldeco/med{ pixel_x = -32 }, +/obj/structure/fluff/railing/border, /turf/open/floor/wood, /area/indoors/town/clinic_large) "nXB" = ( @@ -16506,9 +17251,24 @@ "ogF" = ( /turf/open/floor/woodturned/nosmooth, /area/outdoors/town) +"ogP" = ( +/obj/item/chair{ + pixel_y = 6 + }, +/turf/open/floor/cobblerock, +/area/under/town/basement) "ogW" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/dirt, +/obj/structure/table/wood/reinf_long{ + dir = 4 + }, +/obj/structure/fluff/railing/border{ + dir = 4 + }, +/obj/item/weapon/knife/cleaver{ + pixel_y = -4; + pixel_x = -4 + }, +/turf/open/floor/tile/bfloorz, /area/indoors/town/garrison) "ogY" = ( /obj/structure/fluff/railing/wood, @@ -16520,6 +17280,12 @@ }, /turf/open/floor/carpet, /area/indoors/town/tavern) +"ohD" = ( +/obj/structure/table/wood/large/corner{ + dir = 10 + }, +/turf/open/floor/carpet/red, +/area/indoors/town/garrison) "ohN" = ( /turf/open/floor/greenstone/glyph4, /area/under/town/sewer) @@ -16616,6 +17382,10 @@ }, /turf/open/floor/tile/masonic, /area/under/town/sewer) +"omd" = ( +/obj/structure/window/solid, +/turf/closed/wall/mineral/wood, +/area/indoors/town/garrison) "oms" = ( /obj/structure/table/wood/reinforced_alter, /obj/structure/bars{ @@ -16672,6 +17442,10 @@ }, /turf/open/floor/hexstone, /area/indoors/town/orphanage) +"ook" = ( +/obj/structure/closet/crate/chest/wicker, +/turf/open/floor/ruinedwood/spiral, +/area/outdoors/town) "oow" = ( /obj/structure/table/wood/counter, /obj/machinery/light/fueled/wallfire/candle{ @@ -16878,6 +17652,10 @@ }, /turf/open/floor/carpet/red, /area/indoors/town/garrison) +"oAb" = ( +/obj/effect/landmark/events/animal_migration_point, +/turf/open/floor/grass, +/area/outdoors/basin) "oAk" = ( /obj/structure/table/wood{ icon_state = "longtable"; @@ -16935,8 +17713,63 @@ /obj/structure/fluff/walldeco/chains, /turf/open/floor/carpet/green, /area/indoors/town/merc_guild) +"oDj" = ( +/obj/structure/table/wood/large/corner{ + dir = 4 + }, +/obj/item/book/law{ + pixel_x = -6 + }, +/turf/open/floor/carpet/red, +/area/indoors/town/garrison) +"oDz" = ( +/obj/effect/mapping_helpers/access/keyset/manor/steward, +/obj/item/key/shops/shop2{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/key/custom{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/key/warehouse{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/key/custom{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/key/warehouse, +/obj/item/key/apartments/apartment5, +/obj/item/key/shops/shop3{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/key/shops/shop4{ + pixel_x = 10; + pixel_y = -4 + }, +/obj/item/key/apartments/apartment4, +/obj/item/key/shops/shop1{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/key/apartments/apartment3, +/obj/item/key/apartments/apartment2, +/obj/item/key/apartments/apartment1, +/obj/effect/mapping_helpers/access/locker, +/obj/structure/closet/keyrack, +/obj/machinery/light/fueled/wallfire/candle/l, +/turf/open/floor/hexstone, +/area/indoors/town/steward) "oEy" = ( -/turf/open/floor/wood, +/obj/structure/stationary_bell{ + name = "garrison bell"; + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/ruinedwood/darker, /area/indoors/town/garrison) "oEB" = ( /obj/machinery/light/fueled/oven{ @@ -16996,6 +17829,9 @@ "oGA" = ( /turf/closed/wall/mineral/decostone/cand, /area/indoors/town/keep/halls/w) +"oGL" = ( +/turf/closed/mineral, +/area/under/cavewet) "oGW" = ( /turf/closed/wall/mineral/decorstone, /area/indoors/town/steward) @@ -17116,6 +17952,10 @@ }, /turf/open/floor/tile/bfloorz, /area/indoors/town/bath) +"oME" = ( +/obj/structure/kneestingers, +/turf/open/water/clean/dirt, +/area/under/town/sewer) "oMR" = ( /obj/machinery/light/fueled/wallfire/candle, /turf/open/floor/tile/checker_green, @@ -17233,6 +18073,27 @@ dir = 1 }, /area/outdoors/town/roofs) +"oUU" = ( +/obj/structure/fluff/railing/border{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/woodturned/nosmooth, +/area/indoors/town/garrison) +"oVJ" = ( +/obj/item/clothing/pants/tights/colored/black, +/obj/item/clothing/pants/tights, +/obj/item/clothing/shirt/undershirt/fancy, +/obj/item/clothing/shirt/tunic/colored/random, +/obj/item/clothing/shirt/tunic/colored/random, +/obj/item/clothing/shirt/dress/stewarddress, +/obj/item/clothing/head/fancyhat, +/obj/machinery/light/fueled/wallfire/candle{ + pixel_y = -32 + }, +/obj/structure/closet/crate/crafted_closet/dark, +/turf/open/floor/ruinedwood/chevron, +/area/indoors/town/steward) "oWq" = ( /obj/structure/bookcase/random/legends, /obj/machinery/light/fueled/wallfire/candle, @@ -17265,10 +18126,6 @@ "oYg" = ( /turf/closed/wall/mineral/decostone/moss/cand, /area/under/town/sewer) -"pab" = ( -/obj/machinery/light/fueled/torchholder/c, -/turf/open/floor/twig, -/area/outdoors/town) "paj" = ( /obj/structure/bars, /obj/machinery/light/fueled/wallfire/candle{ @@ -17397,6 +18254,17 @@ }, /turf/open/floor/church, /area/indoors/town/church/chapel) +"peh" = ( +/obj/structure/fake_machine/scomm, +/obj/machinery/light/fueled/wallfire/candle/r, +/turf/open/floor/hexstone, +/area/indoors/town/steward) +"peK" = ( +/obj/structure/fluff/railing/border{ + dir = 1 + }, +/turf/open/floor/wood, +/area/outdoors/town) "pff" = ( /obj/structure/bed/mediocre, /obj/item/bedsheet/pelt, @@ -17414,10 +18282,6 @@ /obj/structure/flora/newtree, /turf/open/floor/dirt, /area/outdoors/wilderness) -"pfF" = ( -/obj/structure/chair/bench/church/smallbench, -/turf/open/floor/grass, -/area/outdoors/town) "pfT" = ( /obj/structure/closet/crate/crafted_closet, /obj/item/natural/cloth, @@ -17529,8 +18393,7 @@ /turf/open/floor/carpet/royalblack, /area/indoors/town/keep/hand) "pjN" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/cobble, +/turf/open/floor/ruinedwood, /area/indoors/town/garrison) "pkb" = ( /turf/open/water/river{ @@ -17554,6 +18417,11 @@ /obj/machinery/essence/enchantment_altar, /turf/open/floor/twig, /area/indoors/town/bath) +"pkQ" = ( +/obj/structure/carpet/red, +/obj/structure/carpet/red, +/turf/open/floor/cobble, +/area/under/town/basement) "plf" = ( /obj/machinery/light/fueled/wallfire/candle{ pixel_y = -32 @@ -17564,6 +18432,14 @@ /mob/living/carbon/human/species/skeleton/npc/ambush, /turf/open/floor/tile/checkeralt, /area/under/town/sewer) +"plX" = ( +/obj/structure/door/fancy{ + name = "Steward's Office" + }, +/obj/effect/mapping_helpers/access/keyset/manor/steward, +/obj/effect/mapping_helpers/access/locker, +/turf/open/floor/ruinedwood/chevron, +/area/indoors/town/steward) "pmb" = ( /obj/structure/roguerock{ icon_state = "rock4" @@ -17653,15 +18529,8 @@ /turf/open/openspace, /area/outdoors/town) "pqc" = ( -/obj/structure/closet/crate/crafted_closet, -/obj/item/clothing/shirt/undershirt/colored/random, -/obj/item/clothing/pants/tights/colored/random, -/obj/item/clothing/pants/tights/colored/random, -/obj/item/clothing/pants/tights/colored/random, -/obj/item/clothing/pants/tights/colored/random, -/obj/item/clothing/pants/trou/leather, -/turf/open/floor/ruinedwood/turned/darker, -/area/indoors/town/theatre) +/turf/open/floor/ruinedwood/alt, +/area/indoors/town) "pqe" = ( /obj/structure/closet/crate/chest/neu_fancy, /obj/item/reagent_containers/powder/salt, @@ -17749,9 +18618,6 @@ dir = 1 }, /area/indoors/town/tavern) -"pwa" = ( -/turf/open/floor/concrete, -/area/indoors/town/warehouse) "pwu" = ( /obj/structure/table/wood{ dir = 10; @@ -17775,14 +18641,11 @@ /turf/open/floor/blocks, /area/indoors/town/cell) "pxb" = ( -/obj/structure/table/wood{ - dir = 1; - icon_state = "longtable_mid" +/obj/structure/door/weak/bolt{ + dir = 4 }, -/obj/structure/mirror, -/obj/item/paper, -/turf/open/floor/ruinedwood/turned/darker, -/area/indoors/town/theatre) +/turf/open/floor/dirt/road, +/area/outdoors/town) "pxh" = ( /turf/open/floor/ruinedwood, /area/outdoors/town) @@ -17834,6 +18697,15 @@ /obj/item/soap, /turf/open/floor/blocks/newstone, /area/under/town/basement) +"pyY" = ( +/obj/machinery/light/fueled/wallfire/candle{ + pixel_y = -32 + }, +/obj/structure/chair/stool, +/turf/open/floor/tile/masonic/arrow{ + dir = 1 + }, +/area/indoors/town/steward) "pyZ" = ( /obj/structure/industrial_lift/tram, /turf/open/openspace, @@ -17874,6 +18746,9 @@ /obj/structure/fluff/railing/wood, /turf/open/floor/twig, /area/outdoors/basin/safe) +"pAz" = ( +/turf/open/floor/abyss_sand/path, +/area/under/cavewet) "pAE" = ( /turf/closed/wall/mineral/pipe, /area/under/town/sewer) @@ -17891,6 +18766,10 @@ "pBI" = ( /turf/closed/wall/mineral/wood, /area/under/cave) +"pBJ" = ( +/obj/machinery/light/fueled/wallfire/candle/l, +/turf/open/floor/carpet/red, +/area/indoors/town/garrison) "pBU" = ( /obj/machinery/light/fueled/wallfire/candle{ pixel_y = -32 @@ -17925,8 +18804,9 @@ /turf/open/floor/dirt, /area/outdoors/town) "pCw" = ( -/obj/structure/grindwheel, -/turf/open/floor/herringbone, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/weapon/mace/church, +/turf/open/floor/ruinedwood/darker, /area/indoors/town/garrison) "pDm" = ( /obj/structure/stairs{ @@ -17940,6 +18820,14 @@ }, /turf/open/floor/blocks, /area/under/town/basement) +"pDZ" = ( +/obj/effect/mapping_helpers/access/keyset/manor/general, +/obj/effect/mapping_helpers/access/locker, +/obj/structure/door/fancy{ + name = "Servant's Entrance" + }, +/turf/open/floor/cobble, +/area/outdoors/town/keep) "pEe" = ( /obj/machinery/light/fueled/wallfire/candle/l, /turf/open/floor/blocks, @@ -18191,9 +19079,9 @@ /turf/open/floor/cobble, /area/under/town/basement) "pPt" = ( -/obj/machinery/light/fueled/wallfire/candle/r, -/turf/open/floor/wood/nosmooth, -/area/indoors/town/theatre) +/obj/structure/flora/grass/bush/wall/tall, +/turf/open/floor/dirt, +/area/outdoors/town) "pPA" = ( /obj/structure/bars/cemetery, /turf/open/water/swamp, @@ -18360,6 +19248,7 @@ /obj/structure/bridge_stakes{ dir = 8 }, +/obj/structure/fake_machine/lottery_roguetown, /turf/open/floor/woodturned, /area/outdoors/town) "pWQ" = ( @@ -18372,9 +19261,18 @@ }, /turf/open/floor/woodturned/nosmooth, /area/outdoors/town) +"pXj" = ( +/obj/structure/fake_machine/atm{ + pixel_y = -2; + pixel_x = -32 + }, +/turf/open/floor/woodturned, +/area/outdoors/town) "pXl" = ( -/obj/structure/fluff/psycross, -/turf/open/floor/blocks, +/obj/structure/fluff/psycross{ + pixel_y = 14 + }, +/turf/open/floor/metal/barograte, /area/outdoors/town) "pXq" = ( /obj/structure/fluff/walldeco/vinez, @@ -18426,12 +19324,6 @@ /obj/structure/chair/wood/alt/chair_noble, /turf/open/floor/carpet/lord/right, /area/indoors/town/keep/lord_appt) -"qaq" = ( -/obj/structure/fermentation_keg/random/water, -/obj/effect/decal/cleanable/dirt/cobweb, -/obj/machinery/light/fueled/wallfire/candle, -/turf/open/floor/wood, -/area/indoors/town/shop) "qax" = ( /obj/structure/table/wood/counter, /turf/open/floor/blocks/stonered, @@ -18495,7 +19387,10 @@ /turf/open/openspace, /area/indoors/town/keep) "qed" = ( -/turf/closed/wall/mineral/stone/window, +/obj/structure/stairs{ + dir = 8 + }, +/turf/open/floor/ruinedwood/chevron, /area/indoors/town/steward) "qeh" = ( /obj/machinery/light/fueled/torchholder/c, @@ -18583,6 +19478,12 @@ /obj/structure/fake_machine/headeater/r, /turf/open/floor/carpet/green, /area/indoors/town/merc_guild) +"qik" = ( +/obj/effect/mapping_helpers/secret_door_creator/courtagent_hideout{ + redstone_id = "courtagent" + }, +/turf/closed/wall/mineral/decorstone/moss, +/area/under/town/basement) "qiw" = ( /obj/structure/stairs{ dir = 8 @@ -18840,8 +19741,11 @@ /turf/open/floor/hexstone, /area/indoors/town/keep/magician) "qta" = ( -/turf/open/floor/wood/nosmooth, -/area/indoors/town/theatre) +/obj/structure/lever/hidden/courtagent{ + redstone_id = "courtagent" + }, +/turf/closed/wall/mineral/decorstone, +/area/indoors/town/keep) "qte" = ( /obj/structure/chair/wood/alt{ dir = 1 @@ -18851,6 +19755,10 @@ }, /turf/open/floor/carpet, /area/indoors/town/tavern) +"qtx" = ( +/obj/structure/toilet, +/turf/open/floor/metal/barograte, +/area/indoors/town/garrison) "qtW" = ( /obj/machinery/light/fueled/torchholder{ dir = 1 @@ -19020,9 +19928,13 @@ /turf/open/floor/blocks, /area/indoors/town/keep) "qyJ" = ( -/obj/structure/table/wood/large/corner, -/turf/open/floor/carpet/red, -/area/indoors/town/garrison) +/obj/structure/fluff/railing/border{ + dir = 1 + }, +/turf/open/floor/rooftop{ + dir = 1 + }, +/area/outdoors/town/roofs) "qzn" = ( /obj/machinery/light/fueled/wallfire/candle/blue/r, /turf/open/floor/greenstone, @@ -19058,6 +19970,14 @@ /obj/machinery/light/fueled/wallfire/candle/blue, /turf/open/openspace, /area/outdoors/town/roofs) +"qCs" = ( +/obj/structure/fluff/railing/border{ + dir = 1 + }, +/obj/structure/chair/wood/alt/chair_noble, +/obj/structure/carpet, +/turf/open/floor/hexstone, +/area/indoors/town/steward) "qCw" = ( /obj/structure/stockpile_storage/food, /turf/open/floor/cobble, @@ -19091,6 +20011,12 @@ }, /turf/open/floor/carpet/stellar, /area/indoors/town/merc_guild) +"qCR" = ( +/obj/structure/carpet, +/turf/open/floor/tile/masonic{ + dir = 8 + }, +/area/indoors/town/steward) "qDa" = ( /turf/open/floor/churchmarble, /area/indoors/town/church/chapel) @@ -19265,10 +20191,6 @@ /obj/structure/fluff/railing/wood, /turf/open/floor/blocks, /area/outdoors/town) -"qKl" = ( -/obj/structure/fluff/walldeco/wantedposter, -/turf/open/floor/woodturned, -/area/outdoors/town) "qKx" = ( /obj/structure/table/wood/plain_alt, /obj/item/soap, @@ -19288,6 +20210,10 @@ }, /turf/open/floor/carpet/royalblack, /area/indoors/town/keep/throne) +"qLr" = ( +/obj/structure/carpet, +/turf/open/floor/hexstone, +/area/indoors/town/steward) "qLJ" = ( /obj/structure/chair/stool, /obj/machinery/light/fueled/wallfire/candle/blue{ @@ -19370,14 +20296,6 @@ /obj/structure/bookcase/random/myths, /turf/open/floor/greenstone, /area/indoors/town/keep/library) -"qQP" = ( -/obj/machinery/light/fueled/wallfire/candle/r, -/turf/open/floor/wood, -/area/indoors/town/garrison) -"qQQ" = ( -/obj/structure/flora/grass/bush/wall/tall, -/turf/open/floor/grass, -/area/outdoors/town) "qRa" = ( /obj/structure/table/church/m, /obj/item/reagent_containers/glass/cup/golden{ @@ -19407,6 +20325,12 @@ /obj/machinery/light/fueled/firebowl/stump, /turf/open/floor/cobblerock, /area/under/cavelava) +"qRR" = ( +/obj/structure/chair/wood/alt/chair3, +/obj/effect/landmark/start/guardsman, +/obj/machinery/light/fueled/wallfire/candle, +/turf/open/floor/carpet/red, +/area/indoors/town/garrison) "qSv" = ( /turf/open/floor/church, /area/indoors/town/clocktower) @@ -19429,6 +20353,16 @@ /obj/structure/fluff/clock, /turf/open/floor/ruinedwood/spiral, /area/under/town/sewer) +"qTQ" = ( +/obj/structure/table/wood/fancy/black, +/obj/machinery/light/fueled/wallfire/candle{ + pixel_y = -32 + }, +/obj/item/statue/bronze/obelisk{ + pixel_y = 5 + }, +/turf/open/floor/ruinedwood/chevron, +/area/indoors/town/vault) "qUl" = ( /obj/structure/fluff/walldeco/church/line{ dir = 1 @@ -19545,6 +20479,19 @@ /obj/structure/flora/grass/bush/wall, /turf/open/floor/dirt, /area/under/cavewet) +"qZn" = ( +/obj/structure/chair/wood/alt/chair_noble/red{ + dir = 8 + }, +/obj/effect/landmark/start/lieutenant{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/indoors/town/garrison) +"qZo" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet/red, +/area/indoors/town/garrison) "qZs" = ( /obj/structure/roguerock{ icon_state = "rock4" @@ -19631,22 +20578,29 @@ /turf/open/floor/carpet/green, /area/indoors/town) "req" = ( -/obj/structure/door/window{ - name = "The Theatre" - }, -/obj/effect/mapping_helpers/access/keyset/town/elder, -/turf/open/floor/wood/nosmooth, -/area/indoors/town/theatre) +/obj/structure/toilet/filled, +/turf/open/floor/blocks/paving, +/area/outdoors/town) "rev" = ( -/obj/machinery/light/fueled/wallfire/candle/l, -/turf/open/floor/carpet/red, -/area/indoors/town/garrison) +/obj/item/clothing/shirt/undershirt/sailor/red, +/obj/item/clothing/shirt/undershirt/sailor/red, +/obj/item/clothing/shirt/undershirt/sailor/red, +/obj/item/clothing/shirt/undershirt/sailor, +/obj/item/clothing/shirt/undershirt/sailor, +/obj/item/clothing/shirt/undershirt/sailor, +/obj/structure/closet/crate/crafted_closet/crafted, +/turf/open/floor/wood, +/area/indoors/town/shop) +"reY" = ( +/obj/machinery/light/fueled/wallfire/candle/blue/r, +/turf/open/floor/naturalstone, +/area/under/cavewet) "rft" = ( /obj/structure/stairs{ dir = 4 }, /turf/open/floor/dirt/road, -/area/outdoors/basin) +/area/outdoors/basin/safe) "rfL" = ( /obj/structure/chair/wood/alt/chair_noble/purple{ dir = 4 @@ -19828,6 +20782,12 @@ /obj/structure/table/wood/plain_alt, /turf/open/floor/ruinedwood/darker, /area/indoors/town) +"rkl" = ( +/obj/item/paper{ + info = "Remember Him like Ye do Yer dead." + }, +/turf/open/floor/abyss_sand, +/area/under/cavewet) "rkv" = ( /obj/structure/fluff/statue/knight/interior/r, /turf/open/floor/tile/bfloorz, @@ -19989,12 +20949,21 @@ /obj/structure/chair/stool, /turf/open/floor/ruinedwood/turned/darker, /area/under/town/sewer) -"ruK" = ( -/obj/machinery/light/fueled/wallfire/candle{ - pixel_y = -32 +"ruc" = ( +/obj/structure/table/wood/large/corner{ + dir = 9 }, -/turf/open/openspace, +/obj/item/reagent_containers/food/snacks/hardtack{ + pixel_y = -3; + pixel_x = 3 + }, +/turf/open/floor/carpet/red, /area/indoors/town/garrison) +"ruK" = ( +/turf/closed/wall/mineral/wooddark/end{ + dir = 8 + }, +/area/indoors/town/clocktower) "ruM" = ( /obj/structure/table/wood/plain_alt, /obj/machinery/light/fueled/wallfire/candle/blue/r, @@ -20052,14 +21021,6 @@ /obj/machinery/light/fueled/wallfire/candle/blue/l, /turf/open/floor/church, /area/outdoors/town/roofs) -"ryw" = ( -/obj/structure/fluff/railing/border{ - dir = 8 - }, -/obj/structure/fluff/railing/border, -/obj/structure/closet/crate/crafted_closet/crafted, -/turf/open/floor/wood, -/area/indoors/town/garrison) "ryy" = ( /obj/machinery/light/fueled/wallfire/candle, /turf/open/floor/carpet/royalblack, @@ -20096,6 +21057,10 @@ /obj/item/natural/chaff/wheat, /turf/open/floor/wood, /area/indoors/butchershop) +"rAk" = ( +/obj/machinery/light/fueled/wallfire/candle/l, +/turf/open/floor/hexstone, +/area/indoors/town/steward) "rAn" = ( /obj/structure/industrial_lift/tram{ icon_state = "nothing" @@ -20140,6 +21105,10 @@ }, /turf/open/floor/carpet/royalblack, /area/indoors/town/keep/garrison) +"rBp" = ( +/obj/structure/window/solid, +/turf/closed/wall/mineral/wooddark, +/area/indoors/town/garrison) "rBz" = ( /obj/structure/door{ name = "Elder's Room" @@ -20163,6 +21132,16 @@ }, /turf/open/floor/cobble, /area/indoors/town/keep/halls/e) +"rCr" = ( +/obj/structure/table/wood/reinforced_alt{ + dir = 4 + }, +/obj/structure/carpet, +/obj/item/coin/copper{ + pixel_x = 4 + }, +/turf/open/floor/hexstone, +/area/indoors/town/steward) "rDj" = ( /obj/structure/stairs, /turf/open/floor/wood, @@ -20224,6 +21203,12 @@ /obj/machinery/light/fueled/lanternpost/fixed, /turf/open/floor/metal/alt, /area/outdoors/town) +"rFv" = ( +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/tile/checker, +/area/indoors/town/keep/courtagent) "rFB" = ( /obj/structure/closet/crate/crafted_closet, /obj/item/broom, @@ -20266,9 +21251,16 @@ /turf/open/floor/cobble, /area/outdoors/town/keep) "rHq" = ( -/obj/structure/fluff/railing/border, -/obj/structure/table/wood/plain_alt, -/turf/open/floor/wood, +/obj/structure/chair/wood/alt/chair3{ + dir = 1 + }, +/obj/effect/landmark/start/guardsman{ + dir = 1 + }, +/obj/structure/fluff/railing/border{ + dir = 6 + }, +/turf/open/floor/carpet/red, /area/indoors/town/garrison) "rHF" = ( /obj/structure/fluff/walldeco/vinez, @@ -20300,6 +21292,17 @@ }, /turf/open/openspace, /area/indoors/town/bath) +"rJi" = ( +/obj/effect/mapping_helpers/secret_door_creator/courtagent_hideout{ + redstone_id = "courtagent" + }, +/turf/closed/wall/mineral/decorstone, +/area/indoors/town/keep) +"rJk" = ( +/obj/structure/chair/stool, +/obj/structure/fluff/railing/border, +/turf/open/floor/wood, +/area/indoors/town/clinic_large) "rJy" = ( /obj/structure/table/wood/plain_alt, /obj/machinery/light/fueled/wallfire/candle/r, @@ -20370,6 +21373,11 @@ }, /turf/open/floor/carpet/lord/center, /area/indoors/town/keep/throne) +"rLQ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/fueled/wallfire/candle, +/turf/open/floor/metal/barograte, +/area/indoors/town/garrison) "rMb" = ( /obj/structure/chair/bench/ancientlog{ pixel_x = -16; @@ -20408,13 +21416,8 @@ }, /area/under/town/sewer) "rOv" = ( -/obj/structure/bed/hay, -/obj/structure/bed/hay{ - pixel_y = 19 - }, -/obj/machinery/light/fueled/wallfire/candle, -/turf/open/floor/herringbone, -/area/indoors/town/garrison) +/turf/closed/wall/mineral/wooddark, +/area/indoors/town/garrison/lieutenant) "rOw" = ( /obj/structure/bookcase/random/legends, /turf/open/floor/ruinedwood/chevron, @@ -20474,9 +21477,25 @@ /turf/open/floor/ruinedwood/spiralfade, /area/indoors/town/tavern) "rRU" = ( -/obj/effect/landmark/events/animal_migration_point, -/turf/open/floor/blocks, -/area/outdoors/town) +/obj/structure/rack/shelf/biggest, +/obj/item/reagent_containers/glass/cup/wooden{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/cup/wooden{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/cup/wooden{ + pixel_x = -7; + pixel_y = -7 + }, +/obj/item/reagent_containers/glass/cup/wooden{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/tile/checkeralt, +/area/indoors/town/keep/courtagent) "rSe" = ( /obj/structure/fluff/walldeco/psybanner, /turf/closed/wall/mineral/decorstone, @@ -20513,7 +21532,7 @@ "rTD" = ( /obj/effect/decal/cleanable/debris/wood, /turf/open/floor/concrete, -/area/indoors/town/warehouse) +/area/indoors/town/clocktower) "rTS" = ( /turf/closed/wall/mineral/wooddark/window, /area/outdoors/town/roofs) @@ -20557,13 +21576,13 @@ /turf/open/floor/tile, /area/indoors/town) "rVg" = ( -/obj/structure/door/viewport{ - name = "Steward" +/obj/structure/door/fancy{ + name = "Servant's Entrance" }, -/obj/effect/mapping_helpers/access/keyset/manor/steward, +/obj/effect/mapping_helpers/access/keyset/manor/general, /obj/effect/mapping_helpers/access/locker, -/turf/open/floor/wood, -/area/indoors/town/steward) +/turf/open/floor/cobblerock, +/area/outdoors/town/keep) "rVp" = ( /obj/structure/closet/crate/crafted_closet/inn, /turf/open/floor/ruinedwood/spiral, @@ -20608,12 +21627,18 @@ /turf/open/floor/cobble, /area/indoors/town/keep/halls/e) "rWt" = ( -/obj/structure/table/wood/large_new{ - icon_state = "alt_largetable"; - dir = 5 - }, -/turf/open/floor/carpet/red, -/area/indoors/town/theatre) +/obj/item/instrument/accord, +/obj/item/instrument/drum, +/obj/item/instrument/flute, +/obj/item/instrument/guitar, +/obj/item/instrument/harp, +/obj/item/instrument/lute, +/obj/structure/closet/crate/chest/neu, +/obj/item/instrument/hurdygurdy, +/obj/item/instrument/vocals, +/obj/item/instrument/viola, +/turf/open/floor/ruinedwood/alt, +/area/indoors/town) "rWY" = ( /obj/machinery/light/fueled/torchholder/l, /turf/open/floor/wood/nosmooth, @@ -20778,6 +21803,20 @@ "sdA" = ( /turf/closed/wall/mineral/stone/moss, /area/outdoors/town/roofs) +"sdG" = ( +/obj/structure/door/viewport{ + dir = 4; + name = "Steward's Bedroom" + }, +/obj/structure/carpet, +/obj/effect/mapping_helpers/access/keyset/manor/steward, +/obj/effect/mapping_helpers/access/locker, +/turf/open/floor/ruinedwood/chevron, +/area/indoors/town/steward) +"sdL" = ( +/obj/structure/fake_machine/scomm/l, +/turf/open/floor/ruinedwood/spiral, +/area/outdoors/town) "sdR" = ( /obj/structure/winch{ redstone_id = "keepgatesouth"; @@ -20987,13 +22026,7 @@ /turf/open/floor/wood, /area/indoors/town) "sqk" = ( -/obj/structure/door/viewport{ - name = "Steward"; - dir = 4 - }, -/obj/effect/mapping_helpers/access/keyset/manor/steward, -/obj/effect/mapping_helpers/access/locker, -/turf/open/floor/wood, +/turf/open/floor/tile/masonic/arrow, /area/indoors/town/steward) "sqs" = ( /obj/structure/window/openclose{ @@ -21002,12 +22035,12 @@ /turf/open/floor/wood/nosmooth, /area/indoors/town) "sqJ" = ( -/obj/structure/table/wood/large_new{ - icon_state = "alt_largetable"; - dir = 10 - }, -/turf/open/floor/carpet/red, -/area/indoors/town/theatre) +/obj/item/clothing/neck/talkstone, +/obj/item/clothing/ring/courtagent_ring, +/obj/item/clothing/ring/courtagent_ring, +/obj/structure/closet/crate/chest, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "srb" = ( /turf/open/floor/tile/checker, /area/under/town/sewer) @@ -21140,6 +22173,15 @@ dir = 8 }, /area/outdoors/town/roofs) +"swJ" = ( +/obj/structure/closet/crate/crafted_closet, +/obj/item/clothing/armor/leather/jacket/silk_coat, +/obj/item/clothing/armor/leather/jacket/silk_coat, +/obj/item/clothing/shirt/dress/silkdress/colored/random, +/obj/item/clothing/shirt/dress/silkdress/colored/random, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/ruinedwood/alt, +/area/indoors/town) "swM" = ( /turf/open/water/swamp, /area/under/town/sewer) @@ -21164,6 +22206,7 @@ pixel_y = -1 }, /obj/machinery/light/fueled/lanternpost/fixed, +/obj/structure/fake_machine/scomm, /turf/open/floor/twig, /area/outdoors/town) "sxY" = ( @@ -21197,6 +22240,13 @@ "syW" = ( /turf/open/openspace, /area/indoors/town/dwarfin) +"szk" = ( +/obj/structure/table/wood/fancy/black, +/obj/machinery/light/fueled/wallfire/candle{ + pixel_y = -32 + }, +/turf/open/floor/ruinedwood/chevron, +/area/indoors/town/vault) "szn" = ( /obj/structure/bars/pipe{ dir = 5 @@ -21228,6 +22278,16 @@ "sBr" = ( /turf/open/floor/ruinedwood/spiralfade, /area/indoors/town/keep/gate) +"sBF" = ( +/obj/structure/fluff/railing/border, +/obj/structure/fluff/railing/border{ + dir = 8; + pixel_y = 4 + }, +/turf/open/floor/rooftop{ + dir = 8 + }, +/area/outdoors/town/roofs) "sCa" = ( /obj/machinery/light/fueled/wallfire{ pixel_y = 32 @@ -21287,6 +22347,10 @@ "sEI" = ( /turf/open/floor/tile, /area/indoors/town/clinic_large) +"sFJ" = ( +/obj/structure/carpet, +/turf/open/floor/tile/masonic, +/area/indoors/town/steward) "sFT" = ( /obj/structure/table/wood{ icon_state = "tablewood1" @@ -21301,7 +22365,7 @@ pixel_x = -10 }, /turf/open/floor/metal/barograte/open, -/area/indoors/town/shop) +/area/indoors/town/clocktower) "sGK" = ( /obj/structure/fluff/railing/wood{ dir = 8; @@ -21438,6 +22502,10 @@ }, /turf/open/floor/dirt, /area/outdoors/town) +"sOm" = ( +/obj/machinery/light/fueled/wallfire/candle/blue/l, +/turf/open/water/clean, +/area/under/cavewet) "sPm" = ( /obj/structure/flora/grass/bush/wall, /turf/open/floor/dirt, @@ -21448,6 +22516,10 @@ /obj/effect/mapping_helpers/access/locker, /turf/open/floor/church, /area/indoors/town/church/chapel) +"sPE" = ( +/obj/machinery/light/fueled/torchholder/hotspring/standing, +/turf/open/floor/cobble, +/area/under/town/basement) "sPQ" = ( /obj/structure/table/wood/plain_alt, /turf/open/floor/blocks, @@ -21460,6 +22532,14 @@ "sQG" = ( /turf/open/floor/twig, /area/outdoors/town) +"sRm" = ( +/obj/structure/chair/stool, +/obj/item/reagent_containers/glass/bottle/redwine{ + pixel_x = 7; + pixel_y = 5 + }, +/turf/open/floor/blocks/stonered/tiny, +/area/indoors/town/keep/kitchen) "sRr" = ( /obj/structure/stairs{ dir = 1 @@ -21485,11 +22565,16 @@ /turf/open/floor/ruinedwood/spiralfade, /area/indoors/town/tavern) "sSz" = ( -/turf/open/floor/carpet/red, -/area/indoors/town/theatre) +/obj/structure/table/wood/large/corner{ + dir = 6 + }, +/turf/open/floor/carpet/purple, +/area/indoors/town/keep/courtagent) "sSL" = ( /obj/structure/bookcase, -/obj/item/book/law, +/obj/item/book/law{ + pixel_x = -6 + }, /obj/item/book/festus, /obj/item/book/magicaltheory, /obj/item/book/necra, @@ -21502,6 +22587,15 @@ /obj/structure/chair/stool, /turf/open/floor/cobblerock, /area/outdoors/town) +"sTQ" = ( +/obj/machinery/light/fueled/wallfire/candle{ + pixel_y = -32 + }, +/obj/structure/fake_machine/mail/l{ + mailtag = Steward + }, +/turf/open/floor/hexstone, +/area/indoors/town/steward) "sTU" = ( /obj/structure/closet/crate/drawer, /obj/item/lockpickring, @@ -21510,12 +22604,6 @@ /obj/item/lockpick, /turf/open/floor/ruinedwood/darker, /area/indoors/town/orphanage) -"sUa" = ( -/obj/structure/well/fountain{ - pixel_x = -16 - }, -/turf/open/floor/cobble, -/area/outdoors/town) "sUr" = ( /obj/effect/decal/cleanable/debris/wood, /obj/effect/decal/cleanable/dirt/dust, @@ -21641,7 +22729,7 @@ pixel_x = -10 }, /turf/open/floor/metal/barograte/open, -/area/indoors/town/shop) +/area/indoors/town/clocktower) "sZK" = ( /obj/structure/closet/crate/chest/crate, /obj/effect/spawner/guaranteed_map_spawner/listed/cutlery, @@ -21713,6 +22801,11 @@ /obj/effect/landmark/start/apothecary, /turf/open/floor/blocks/stonered/tiny, /area/indoors/town/bath) +"tcR" = ( +/obj/structure/bars, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/metal/barograte, +/area/indoors/town/garrison) "tdd" = ( /obj/structure/window/openclose{ dir = 4 @@ -21768,8 +22861,28 @@ /turf/open/floor/carpet/green, /area/indoors/town/merc_guild) "tgW" = ( -/turf/closed/wall/mineral/wood, -/area/indoors/town/theatre) +/obj/structure/closet/crate/chest{ + name = "Amulets and Rings" + }, +/obj/item/clothing/neck/psycross/silver, +/obj/item/clothing/neck/psycross/silver/divine/abyssor, +/obj/item/clothing/neck/psycross/silver/divine/astrata, +/obj/item/clothing/neck/psycross/silver/divine/dendor, +/obj/item/clothing/neck/psycross/silver/divine/eora, +/obj/item/clothing/neck/psycross/silver/divine/malum, +/obj/item/clothing/neck/psycross/silver/divine/necra, +/obj/item/clothing/neck/psycross/silver/divine/noc, +/obj/item/clothing/neck/psycross/silver/divine/pestra, +/obj/item/clothing/neck/psycross/silver/divine/ravox, +/obj/item/clothing/neck/psycross/silver/divine/xylix, +/obj/item/clothing/neck/mercator, +/obj/item/clothing/neck/shalal/emir, +/obj/item/clothing/ring/gold/guild_mercator, +/obj/item/clothing/ring/silver/makers_guild, +/obj/item/clothing/ring/feldsher_ring, +/obj/item/clothing/ring/apothecary_ring, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "tgY" = ( /obj/structure/fluff/railing/border{ dir = 8 @@ -22015,9 +23128,8 @@ /turf/open/floor/hexstone, /area/indoors/town/church) "tnN" = ( -/obj/machinery/light/fueled/wallfire/candle/l, -/turf/open/floor/wood/nosmooth, -/area/indoors/town/theatre) +/turf/closed/mineral/bedrock, +/area/outdoors/town) "tnU" = ( /obj/structure/table/wood/plain_alt, /obj/machinery/light/fueled/wallfire/candle/l, @@ -22335,6 +23447,11 @@ "tyI" = ( /turf/open/floor/twig, /area/under/town/basement) +"tyW" = ( +/obj/structure/carpet, +/obj/structure/fluff/walldeco/bigpainting/lake, +/turf/open/floor/ruinedwood/chevron, +/area/indoors/town/steward) "tzg" = ( /obj/machinery/light/fueled/wallfire/candle/blue{ pixel_x = -32; @@ -22392,6 +23509,19 @@ }, /turf/open/floor/church, /area/indoors/town/church/inquisition) +"tBk" = ( +/obj/machinery/light/fueled/wallfire/candle, +/obj/structure/closet/crate/crafted_closet/dark, +/obj/item/arcyne_spellobject/scroll, +/obj/item/arcyne_spellobject/scroll, +/obj/item/arcyne_spellobject/scroll, +/obj/item/arcyne_spellobject/scroll, +/obj/item/arcyne_spellobject/scroll, +/obj/item/arcyne_spellobject/scroll, +/obj/item/arcyne_spellobject/scroll, +/obj/item/arcyne_spellobject/scroll, +/turf/open/floor/ruinedwood/chevron, +/area/indoors/town/steward) "tBn" = ( /obj/structure/fluff/railing/border{ dir = 9 @@ -22537,6 +23667,9 @@ }, /turf/open/floor/wood, /area/indoors/town/clinic_large) +"tHp" = ( +/turf/open/floor/woodturned/nosmooth, +/area/indoors/town/garrison) "tHI" = ( /obj/structure/table/wood{ icon_state = "longtable" @@ -22577,15 +23710,10 @@ /turf/open/floor/carpet/stellar, /area/indoors/town/shop) "tJW" = ( -/obj/structure/table/wood/reinf_long{ +/obj/structure/chair/stool, +/turf/open/floor/tile/masonic/arrow{ dir = 1 }, -/obj/item/paper/scroll, -/obj/item/fake_machine/mastermail{ - pixel_y = 0; - pixel_x = -32 - }, -/turf/open/floor/carpet/purple, /area/indoors/town/steward) "tKh" = ( /obj/machinery/light/fueled/wallfire/candle/blue/r, @@ -22594,7 +23722,7 @@ "tKo" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/metal, -/area/indoors/town/shop) +/area/indoors/town/clocktower) "tKz" = ( /obj/structure/fluff/railing/wood{ dir = 1; @@ -22674,14 +23802,16 @@ /turf/open/floor/tile, /area/indoors/town/keep/knight) "tOb" = ( -/obj/structure/closet/crate/crafted_closet, -/obj/item/clothing/shirt/robe, -/turf/open/floor/ruinedwood/turned/darker, -/area/indoors/town/theatre) -"tOg" = ( -/obj/structure/fluff/railing/border{ - pixel_y = 27 +/obj/structure/table/wood/reinf_long{ + dir = 8 + }, +/obj/item/reagent_containers/glass/bottle/beer{ + pixel_x = -3; + pixel_y = 3 }, +/turf/open/floor/dirt/road, +/area/outdoors/town) +"tOg" = ( /obj/structure/stairs/stone/church{ dir = 8 }, @@ -22854,7 +23984,7 @@ /turf/closed/wall/mineral/wooddark/vertical, /area/indoors/town/tavern) "tWs" = ( -/obj/structure/fluff/wallclock, +/obj/machinery/light/fueled/torchholder/c, /turf/open/floor/metal/alt, /area/indoors/town/keep/gate) "tWx" = ( @@ -22919,11 +24049,18 @@ /turf/open/openspace, /area/indoors/town/tavern) "ubv" = ( -/turf/closed/wall/mineral/decorstone/moss, -/area/indoors/town/theatre) +/obj/structure/fluff/walldeco/vinez/red, +/turf/closed/mineral, +/area/outdoors/town) "ucQ" = ( /turf/open/floor/twig, /area/under/town/sewer) +"udk" = ( +/obj/machinery/light/fueled/wallfire/candle{ + pixel_y = -32 + }, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "udp" = ( /obj/effect/decal/remains/bigrat, /turf/open/floor/cobble, @@ -23052,11 +24189,14 @@ /turf/open/floor/ruinedwood/turned/darker, /area/indoors/town) "ujS" = ( -/obj/machinery/light/fueled/wallfire/candle{ - pixel_y = -32 +/obj/effect/mapping_helpers/access/locker, +/obj/effect/mapping_helpers/access/keyset/manor/courtagent, +/obj/structure/door/viewport{ + dir = 8; + name = "peculiar door" }, -/turf/open/floor/ruinedwood/turned/darker, -/area/indoors/town/theatre) +/turf/open/floor/blocks, +/area/indoors/town/keep/courtagent) "ukh" = ( /obj/effect/mapping_helpers/access/locker, /obj/structure/door/violet{ @@ -23074,6 +24214,9 @@ }, /turf/open/openspace, /area/outdoors/town) +"ukE" = ( +/turf/open/openspace, +/area/under/cavewet) "ukF" = ( /turf/closed/wall/mineral/roofwall/outercorner{ dir = 4 @@ -23096,6 +24239,10 @@ /obj/structure/fluff/walldeco/steward, /turf/open/floor/metal/alt, /area/outdoors/town) +"ulh" = ( +/obj/machinery/light/fueled/wallfire/candle/blue/l, +/turf/open/floor/dirt, +/area/outdoors/town) "ulo" = ( /obj/structure/table/wood/plain_alt, /turf/open/floor/ruinedwood/darker, @@ -23103,7 +24250,7 @@ "ulw" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/concrete, -/area/indoors/town/warehouse) +/area/indoors/town/clocktower) "ulN" = ( /obj/structure/fluff/steamvent, /turf/open/floor/metal/barograte, @@ -23112,16 +24259,18 @@ /turf/open/water/marsh, /area/indoors/town/smithy) "uma" = ( -/obj/structure/lever/wall{ - dir = 1; - redstone_id = "stewardshutter"; - pixel_x = -10 +/obj/item/reagent_containers/glass/cup/steel, +/obj/item/reagent_containers/glass/cup/steel{ + pixel_y = 8; + pixel_x = 7 }, -/obj/structure/fake_machine/mail{ - mailtag = "Steward" +/obj/item/reagent_containers/glass/cup/steel{ + pixel_x = -6; + pixel_y = -4 }, -/turf/open/floor/wood, -/area/indoors/town/steward) +/obj/structure/table/wood/fancy, +/turf/open/floor/cobble, +/area/under/town/basement) "umf" = ( /obj/structure/door/iron/bars{ name = "Cell Door" @@ -23138,9 +24287,11 @@ /turf/open/floor/blocks/newstone, /area/indoors/town/keep/hand) "uns" = ( -/obj/structure/fake_machine/scomm, -/turf/open/floor/wood, -/area/indoors/town/steward) +/obj/structure/fluff/walldeco/customflag{ + pixel_y = 32 + }, +/turf/open/floor/cobblerock, +/area/outdoors/town/keep) "unM" = ( /turf/closed/wall/mineral/decostone/center, /area/indoors/town/keep/garrison) @@ -23304,9 +24455,9 @@ /turf/open/floor/wood, /area/under/town/basement) "uyK" = ( -/obj/effect/landmark/start/bard, -/turf/open/floor/carpet/red, -/area/indoors/town/theatre) +/obj/machinery/light/fueled/wallfire/candle/weak, +/turf/open/floor/blocks/paving, +/area/outdoors/town) "uyY" = ( /obj/structure/fake_machine/scomm/l, /turf/open/floor/tile, @@ -23324,8 +24475,9 @@ }, /area/under/town/sewer) "uAa" = ( -/obj/structure/stairs, -/turf/open/floor/wood, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fake_machine/scomm/r, +/turf/open/floor/woodturned/nosmooth, /area/indoors/town/garrison) "uAh" = ( /obj/machinery/light/fueled/firebowl/standing/blue, @@ -23371,6 +24523,15 @@ /obj/structure/table/wood/plain_alt, /turf/open/floor/ruinedwood/spiralfade, /area/indoors/town/tavern) +"uCD" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/nobleboot/thighboots, +/obj/item/clothing/shoes/nobleboot/duelboots{ + pixel_x = 5 + }, +/obj/machinery/light/fueled/wallfire/candle, +/turf/open/floor/ruinedwood/chevron, +/area/indoors/town/steward) "uCF" = ( /turf/open/floor/herringbone, /area/outdoors/town/roofs) @@ -23387,6 +24548,16 @@ }, /turf/open/floor/cobble, /area/under/town/basement) +"uDo" = ( +/obj/structure/fluff/railing/border{ + dir = 4 + }, +/obj/structure/fluff/railing/border{ + dir = 1; + pixel_x = -4 + }, +/turf/open/floor/ruinedwood/chevron, +/area/indoors/town/steward) "uDq" = ( /turf/open/floor/dirt, /area/under/town/sewer) @@ -23421,6 +24592,10 @@ /obj/effect/mapping_helpers/access/locker, /turf/open/floor/carpet/green, /area/indoors/town/merc_guild) +"uEM" = ( +/obj/machinery/light/fueled/lanternpost/fixed, +/turf/open/floor/grass, +/area/outdoors/town) "uFs" = ( /obj/structure/roguerock, /turf/open/water/river/dirt, @@ -23463,21 +24638,19 @@ /turf/open/floor/carpet/royalblack, /area/indoors/town/tavern) "uHy" = ( -/obj/structure/rack, -/obj/item/weapon/sword/short{ - pixel_x = 2 +/obj/structure/fluff/railing/border{ + dir = 1 }, -/obj/item/weapon/sword/short{ - pixel_x = 8; - pixel_y = -2 +/obj/structure/fluff/railing/border{ + dir = 1 }, -/obj/item/weapon/axe/iron{ - pixel_x = -3; - pixel_y = 2 +/obj/structure/fluff/railing/border{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/herringbone, -/area/indoors/town/garrison) +/turf/open/floor/rooftop{ + dir = 1 + }, +/area/outdoors/town/roofs) "uHE" = ( /obj/structure/water_pipe, /obj/machinery/light/fueled/wallfire/candle, @@ -23531,10 +24704,59 @@ /obj/structure/bars, /turf/open/floor/blocks, /area/outdoors/town) +"uKa" = ( +/obj/structure/closet/crate/crafted_closet{ + name = "Church Attire" + }, +/obj/item/clothing/shirt/robe/astrata, +/obj/item/clothing/head/roguehood/astrata, +/obj/item/clothing/head/roguehood/nochood, +/obj/item/clothing/shirt/robe/noc, +/obj/item/clothing/wrists/wrappings, +/obj/item/clothing/wrists/nocwrappings, +/obj/item/clothing/face/operavisage, +/obj/item/clothing/shirt/robe/eora, +/obj/item/clothing/head/padded/deathshroud, +/obj/item/clothing/pants/trou/leather/mourning, +/obj/item/clothing/shirt/robe/necra, +/obj/item/clothing/head/padded/pestra, +/obj/item/clothing/shirt/robe/pestra, +/obj/item/clothing/head/padded/briarthorns, +/obj/item/clothing/shirt/robe/dendor, +/obj/item/clothing/head/padded/abyssor, +/obj/item/clothing/shirt/robe/abyssor, +/obj/item/clothing/head/helmet/leather/headscarf, +/obj/item/clothing/cloak/stabard/templar/ravox, +/obj/item/clothing/head/roguehood/colored/random, +/obj/item/clothing/shirt/robe/colored/purple, +/obj/item/clothing/head/headband/colored/red, +/obj/item/clothing/shirt/robe/colored/red, +/obj/item/clothing/shoes/sandals, +/obj/item/clothing/shoes/sandals, +/obj/item/clothing/shoes/sandals, +/obj/item/clothing/shoes/boots, +/obj/item/clothing/shoes/boots, +/obj/item/clothing/shoes/boots, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "uKc" = ( /obj/structure/fluff/railing/border, /turf/open/openspace, /area/indoors/town/keep/knight) +"uKj" = ( +/obj/structure/closet/crate/crafted_closet, +/obj/item/clothing/shirt/undershirt/puritan, +/obj/item/clothing/shirt/undershirt/colored/random, +/obj/item/clothing/shirt/undershirt/colored/random, +/obj/item/clothing/shirt/undershirt/colored/random, +/obj/item/clothing/shirt/undershirt/sailor, +/obj/item/clothing/shirt/undershirt/sailor/red, +/obj/item/clothing/armor/leather/vest/colored/black, +/obj/item/clothing/armor/leather/vest/colored/random, +/obj/item/clothing/armor/leather/vest/colored/random, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/ruinedwood/alt, +/area/indoors/town) "uLM" = ( /mob/living/simple_animal/hostile/retaliate/trufflepig, /turf/open/floor/dirt, @@ -23552,6 +24774,17 @@ }, /turf/open/floor/carpet/green, /area/indoors/town/merc_guild) +"uMS" = ( +/obj/structure/closet/crate/crafted_closet, +/obj/item/clothing/shirt/undershirt/colored/random, +/obj/item/clothing/pants/tights/colored/random, +/obj/item/clothing/pants/tights/colored/random, +/obj/item/clothing/pants/tights/colored/random, +/obj/item/clothing/pants/tights/colored/random, +/obj/item/clothing/pants/trou/leather, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/ruinedwood/alt, +/area/indoors/town) "uNf" = ( /obj/structure/stairs/fancy/r{ dir = 1 @@ -23689,6 +24922,9 @@ "uUB" = ( /turf/closed/wall/mineral/decorstone/moss, /area/indoors/town/keep/servant) +"uUK" = ( +/turf/open/openspace, +/area/indoors/town/keep/courtagent) "uUP" = ( /obj/structure/stairs{ dir = 1 @@ -23792,17 +25028,9 @@ /turf/open/floor/tile, /area/indoors/town/keep/halls/s) "uZB" = ( -/obj/item/reagent_containers/food/snacks/egg, -/obj/item/reagent_containers/food/snacks/egg, -/obj/item/reagent_containers/food/snacks/produce/grain/oat, -/obj/item/reagent_containers/food/snacks/produce/grain/oat, -/obj/item/reagent_containers/food/snacks/produce/grain/oat, -/obj/item/reagent_containers/food/snacks/produce/grain/oat, -/obj/item/reagent_containers/food/snacks/meat/steak, -/obj/structure/closet/crate/chest/neu, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/tile/bfloorz, -/area/indoors/town/garrison) +/obj/structure/window/solid, +/turf/open/floor/woodturned/nosmooth, +/area/indoors/town/garrison/lieutenant) "vac" = ( /obj/structure/flora/grass/water, /turf/open/floor/naturalstone, @@ -23824,6 +25052,15 @@ /obj/effect/mapping_helpers/access/locker, /turf/open/floor/ruinedwood/spiral, /area/indoors/town/merc_guild) +"vax" = ( +/obj/structure/door/viewport{ + dir = 1; + name = "Steward's Office" + }, +/obj/effect/mapping_helpers/access/keyset/manor/steward, +/obj/effect/mapping_helpers/access/locker, +/turf/open/floor/cobble, +/area/indoors/town/steward) "vbf" = ( /turf/closed/wall/mineral/stone/moss, /area/under/town/basement) @@ -23891,21 +25128,52 @@ }, /turf/open/floor/cobblerock, /area/outdoors/wilderness) +"vfo" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fake_machine/scomm/l, +/turf/open/floor/woodturned/nosmooth, +/area/indoors/town/garrison) "vfr" = ( /obj/structure/bed/wool, /obj/item/bedsheet/wool, /turf/open/floor/ruinedwood/spiral, /area/indoors/town) "vga" = ( -/obj/structure/toilet/filled, -/turf/open/floor/cobble, -/area/indoors/town/garrison) +/obj/structure/bed/hay, +/obj/item/bedsheet/cloth, +/obj/machinery/light/fueled/wallfire/candle, +/obj/structure/fake_machine/scomm/l, +/turf/open/floor/wood, +/area/indoors/town/garrison/lieutenant) +"vgA" = ( +/turf/closed/wall/mineral/decorstone/window, +/area/indoors/town/keep/courtagent) +"vgE" = ( +/obj/effect/mapping_helpers/access/keyset/manor/steward, +/obj/effect/spawner/guaranteed_map_spawner/listed/steward_keys, +/obj/item/storage/keyring, +/obj/effect/mapping_helpers/access/locker, +/obj/structure/closet/keyrack, +/turf/open/floor/hexstone, +/area/indoors/town/steward) "vgM" = ( -/obj/structure/fake_machine/scomm{ - pixel_y = -32 - }, -/turf/open/floor/ruinedwood/turned/darker, -/area/indoors/town/theatre) +/obj/structure/closet/crate/crafted_closet, +/obj/item/clothing/shirt/rags, +/obj/item/clothing/shirt/rags, +/obj/item/clothing/shirt/rags, +/obj/item/clothing/shirt/shadowshirt, +/obj/item/clothing/pants/loincloth, +/obj/item/clothing/shirt/jester, +/obj/item/clothing/shirt/jester, +/obj/item/clothing/shoes/jester, +/obj/item/clothing/shoes/jester, +/obj/item/clothing/pants/tights/colored/jester, +/obj/item/clothing/pants/tights/colored/jester, +/obj/item/clothing/head/jester, +/obj/item/clothing/head/jester, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/ruinedwood/alt, +/area/indoors/town) "vhi" = ( /obj/structure/table/wood{ icon_state = "longtable" @@ -23979,8 +25247,10 @@ /turf/open/floor/dirt/road, /area/under/town/sewer) "vkJ" = ( -/obj/structure/rack, -/turf/open/floor/wood, +/obj/machinery/light/fueled/hearth, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/reagent_containers/glass/bucket/pot/copper, +/turf/open/floor/tile/bfloorz, /area/indoors/town/garrison) "vkR" = ( /turf/open/water/river/dirt, @@ -24010,6 +25280,10 @@ }, /turf/open/floor/cobblerock, /area/outdoors/basin) +"vlE" = ( +/obj/machinery/light/fueled/wallfire/candle, +/turf/open/floor/cobblerock, +/area/outdoors/town/keep) "vlI" = ( /obj/machinery/light/fueled/wallfire/candle/l, /turf/open/floor/blocks/stonered, @@ -24096,12 +25370,16 @@ /turf/open/floor/church, /area/outdoors/town/roofs) "voW" = ( -/obj/machinery/light/fueled/wallfire/candle{ - pixel_x = 32; - pixel_y = 0 +/obj/structure/fluff/railing/border{ + dir = 8 }, -/turf/open/floor/wood, -/area/indoors/town/garrison) +/obj/structure/fluff/railing/border{ + pixel_x = 4 + }, +/turf/open/floor/rooftop{ + dir = 8 + }, +/area/outdoors/town/roofs) "vpd" = ( /obj/structure/flora/newtree/scorched, /turf/open/floor/dirt/road, @@ -24133,12 +25411,8 @@ /turf/open/floor/grass, /area/outdoors/exposed/church) "vrt" = ( -/obj/structure/fluff/railing/border{ - dir = 8 - }, -/obj/structure/flora/grass, -/turf/open/floor/dirt, -/area/outdoors/town) +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "vrv" = ( /obj/structure/fluff/railing/wood{ dir = 8; @@ -24167,9 +25441,9 @@ /turf/open/floor/blocks, /area/indoors/town/cell) "vsp" = ( -/obj/structure/stairs, -/turf/open/floor/cobblerock, -/area/outdoors/town) +/obj/machinery/light/fueled/wallfire/candle/l, +/turf/open/floor/metal, +/area/indoors/town/keep/courtagent) "vsN" = ( /obj/structure/bed/mediocre, /obj/machinery/light/fueled/wallfire/candle/blue{ @@ -24278,6 +25552,13 @@ dir = 8 }, /area/indoors/town) +"vxC" = ( +/obj/structure/chair/wood/alt{ + dir = 1; + pixel_x = 3 + }, +/turf/open/floor/cobblerock, +/area/under/town/basement) "vye" = ( /obj/structure/fluff/railing/border{ dir = 5 @@ -24354,11 +25635,8 @@ }, /area/indoors/town/tavern) "vBa" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/bard, -/obj/machinery/light/fueled/wallfire/candle/r, -/turf/open/floor/ruinedwood/darker, -/area/indoors/town/theatre) +/turf/closed/wall/mineral/decorstone, +/area/indoors/town/keep/courtagent) "vBb" = ( /obj/structure/fluff/railing/border{ dir = 1 @@ -24609,7 +25887,7 @@ redstone_id = "stewardwarehouse" }, /turf/open/floor/metal, -/area/indoors/town/shop) +/area/indoors/town/clocktower) "vLn" = ( /obj/structure/fluff/railing/wood{ dir = 8; @@ -24689,8 +25967,12 @@ /turf/closed/wall/mineral/wooddark/horizontal, /area/indoors/town/merc_guild) "vNY" = ( -/obj/structure/ladder, -/turf/open/floor/wood, +/obj/structure/door/window{ + name = "City Watch Garrison" + }, +/obj/effect/mapping_helpers/access/keyset/garrison/general, +/obj/effect/mapping_helpers/access/locker, +/turf/open/floor/ruinedwood/darker, /area/indoors/town/garrison) "vOd" = ( /obj/structure/fluff/railing/border{ @@ -24875,27 +26157,15 @@ /turf/open/floor/herringbone, /area/indoors/town/smithy) "vWM" = ( -/obj/structure/rack, -/obj/item/flashlight/flare/torch/lantern{ - pixel_x = -5 - }, -/obj/item/flashlight/flare/torch/lantern{ - pixel_x = 8 - }, -/obj/item/flashlight/flare/torch/lantern{ - pixel_x = -5 - }, -/obj/item/flashlight/flare/torch/lantern{ - pixel_x = 8 +/obj/structure/fluff/railing/border, +/obj/structure/fluff/railing/border{ + dir = 4; + pixel_y = 4 }, -/obj/item/flint, -/obj/item/flint{ - pixel_x = 8; - pixel_y = 1 +/turf/open/floor/rooftop{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/herringbone, -/area/indoors/town/garrison) +/area/outdoors/town/roofs) "vWZ" = ( /obj/structure/closet/crate/crafted_closet/crafted, /obj/item/weapon/mace/woodclub, @@ -24937,6 +26207,12 @@ /obj/machinery/light/fueled/torchholder/l, /turf/open/floor/woodturned, /area/indoors/butchershop) +"vZd" = ( +/obj/structure/table/wood/large/corner{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/indoors/town/garrison) "vZn" = ( /obj/structure/closet/crate/crafted_closet, /obj/item/alch/earthdust, @@ -25048,6 +26324,10 @@ /obj/structure/fluff/wallclock, /turf/open/floor/ruinedwood/spiral, /area/under/town/sewer) +"wex" = ( +/obj/structure/grindwheel, +/turf/open/floor/ruinedwood, +/area/indoors/town/garrison) "wfb" = ( /obj/structure/closet/crate/chest/neu, /obj/item/essence_vial, @@ -25086,6 +26366,9 @@ /obj/machinery/light/fueled/firebowl/standing/blue, /turf/open/floor/churchmarble, /area/outdoors/town/roofs) +"wgk" = ( +/turf/open/floor/ruinedwood/alt, +/area/outdoors/town) "wgl" = ( /obj/structure/fluff/railing/wood{ dir = 1 @@ -25524,11 +26807,11 @@ /turf/open/floor/church, /area/indoors/town/church/chapel) "wxf" = ( -/obj/structure/table/wood/large_new{ - icon_state = "alt_largetable" +/obj/structure/table/wood/large/corner{ + dir = 10 }, -/turf/open/floor/carpet/red, -/area/indoors/town/theatre) +/turf/open/floor/carpet/purple, +/area/indoors/town/keep/courtagent) "wxk" = ( /turf/open/floor/cobble, /area/indoors/town/keep) @@ -25647,6 +26930,11 @@ /obj/structure/rack/shelf/biggest, /turf/open/floor/ruinedwood/darker, /area/under/town/sewer) +"wCa" = ( +/obj/structure/fluff/railing/border, +/obj/structure/fluff/railing/border, +/turf/open/floor/rooftop, +/area/outdoors/town/roofs) "wCf" = ( /obj/structure/table/wood{ icon_state = "tablewood1" @@ -25723,8 +27011,7 @@ /turf/open/floor/wood, /area/indoors/town/shop) "wGq" = ( -/obj/structure/fake_machine/steward, -/turf/open/floor/carpet/purple, +/turf/closed/wall/mineral/stone, /area/indoors/town/steward) "wGt" = ( /obj/structure/fake_machine/vendor/soilson, @@ -25857,12 +27144,11 @@ /turf/closed/wall/mineral/stonebrick, /area/indoors/town/dwarfin) "wKT" = ( -/obj/structure/table/wood/large_new{ - icon_state = "alt_largetable"; - dir = 6 +/obj/structure/chair/stool{ + pixel_y = 6 }, -/turf/open/floor/carpet/red, -/area/indoors/town/theatre) +/turf/open/floor/carpet/purple, +/area/indoors/town/keep/courtagent) "wLu" = ( /obj/structure/fluff/railing/border{ dir = 4 @@ -25878,6 +27164,9 @@ }, /turf/open/floor/carpet/green, /area/indoors/town/merc_guild) +"wLF" = ( +/turf/open/water/clean, +/area/under/cavewet) "wMg" = ( /obj/structure/fluff/walldeco/church/line{ dir = 1 @@ -26037,6 +27326,10 @@ /obj/structure/fake_machine/scomm/l, /turf/open/floor/ruinedwood/darker, /area/indoors/town/orphanage) +"wSZ" = ( +/obj/structure/fake_machine/scomm/l, +/turf/open/floor/wood, +/area/outdoors/town) "wTc" = ( /obj/structure/chair/stool, /turf/open/floor/ruinedwood/spiral, @@ -26081,24 +27374,7 @@ /turf/closed/wall/mineral/decorstone, /area/indoors/town/keep) "wUF" = ( -/obj/structure/closet/crate/crafted_closet, -/obj/item/key/custom, -/obj/item/key/custom{ - pixel_y = 6; - pixel_z = null; - pixel_x = -6 - }, -/obj/item/key/custom{ - pixel_y = 4; - pixel_z = null; - pixel_x = 4 - }, -/obj/machinery/light/fueled/wallfire/candle/l{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/structure/fake_machine/scomm/r, -/turf/open/floor/carpet/purple, +/turf/open/openspace, /area/indoors/town/steward) "wVn" = ( /turf/open/floor/cobble, @@ -26165,10 +27441,10 @@ /turf/open/floor/twig, /area/outdoors/town) "wYT" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/bard, -/turf/open/floor/ruinedwood/darker, -/area/indoors/town/theatre) +/obj/structure/closet/crate/drawer, +/obj/item/clothing/face/shepherd/clothmask, +/turf/open/floor/tile, +/area/indoors/town/keep/courtagent) "wZs" = ( /obj/machinery/light/fueled/smelter/great, /obj/item/storage/crucible/random{ @@ -26227,6 +27503,9 @@ icon_state = "barsbent"; layer = 2.81 }, +/obj/item/paper{ + info = "Remember, Gatemaster - insult not a noble by sending them through the side entrance, for the side entrance is for SERVANTS." + }, /turf/open/floor/blocks, /area/indoors/town/keep/gate) "xby" = ( @@ -26247,6 +27526,10 @@ dir = 4 }, /area/outdoors/town/roofs) +"xbP" = ( +/obj/structure/fluff/railing/border, +/turf/open/floor/ruinedwood/spiral, +/area/outdoors/town) "xcd" = ( /obj/structure/rack/shelf/biggest, /obj/item/kitchen/fork/iron{ @@ -26348,12 +27631,19 @@ /turf/open/floor/tile, /area/indoors/town/keep/feast) "xhk" = ( -/obj/structure/bars, -/turf/open/water/marsh, -/area/indoors/town/garrison) +/obj/structure/table/wood/plain_alt, +/obj/item/paper, +/obj/item/natural/feather{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/open/floor/woodturned/nosmooth, +/area/indoors/town/garrison/lieutenant) "xhG" = ( /obj/structure/closet/crate/crafted_closet/dark, -/obj/item/book/law, +/obj/item/book/law{ + pixel_x = -6 + }, /obj/item/weapon/mace/warhammer/steel, /obj/machinery/light/fueled/wallfire/candle, /turf/open/floor/cobble/alt, @@ -26436,10 +27726,12 @@ /turf/open/floor/cobble, /area/under/town/basement) "xji" = ( -/obj/machinery/light/fueled/hearth, -/obj/machinery/light/fueled/torchholder/c, +/obj/structure/fluff/railing/border{ + dir = 1 + }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/tile/bfloorz, +/obj/machinery/light/fueled/firebowl/standing, +/turf/open/floor/woodturned/nosmooth, /area/indoors/town/garrison) "xjV" = ( /obj/structure/fluff/railing/wood{ @@ -26535,11 +27827,11 @@ /turf/closed/wall/mineral/decorstone, /area/indoors/town/keep/guest) "xoY" = ( -/obj/structure/window/openclose{ +/obj/structure/fluff/railing/border{ dir = 1 }, -/turf/open/floor/wood, -/area/indoors/town/steward) +/turf/open/floor/twig, +/area/outdoors/town) "xpa" = ( /obj/structure/fake_machine/musicbox/mannor, /obj/effect/decal/borderfall{ @@ -26611,16 +27903,24 @@ /obj/item/dice, /turf/open/floor/ruinedwood/darker, /area/indoors/town/orphanage) +"xqV" = ( +/obj/structure/table/wood/plain_alt, +/turf/open/floor/carpet/purple, +/area/indoors/town/keep/courtagent) "xrj" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/open/water, /area/under/cavewet) -"xrO" = ( -/obj/structure/door/iron/bars, +"xrx" = ( +/obj/structure/door/iron/bars/cell, /obj/effect/mapping_helpers/access/keyset/garrison/general, /obj/effect/mapping_helpers/access/locker, -/turf/open/floor/dirt, +/turf/open/floor/woodturned/nosmooth, /area/indoors/town/garrison) +"xrO" = ( +/obj/machinery/light/fueled/firebowl, +/turf/open/floor/ruinedwood, +/area/outdoors/town/roofs) "xsk" = ( /obj/structure/stairs/stone{ dir = 1 @@ -26947,9 +28247,13 @@ /turf/open/floor/tile/bfloorz, /area/indoors/town/keep/lord_appt) "xHi" = ( -/obj/machinery/light/fueled/torchholder/c, -/turf/open/floor/wood, -/area/indoors/town/garrison) +/obj/structure/fluff/railing/border{ + dir = 10 + }, +/turf/open/floor/rooftop{ + dir = 8 + }, +/area/outdoors/town/roofs) "xHQ" = ( /obj/machinery/light/fueled/wallfire/candle{ pixel_x = -32; @@ -26965,6 +28269,12 @@ /obj/structure/flora/grass/water/reeds, /turf/open/water/marsh, /area/outdoors/town) +"xIt" = ( +/obj/effect/waterfall{ + pixel_y = -32 + }, +/turf/open/water/clean, +/area/under/cavewet) "xIz" = ( /obj/structure/fluff/walldeco/church/line{ dir = 1 @@ -26972,8 +28282,10 @@ /turf/open/floor/churchmarble, /area/indoors/town/church) "xIL" = ( -/obj/structure/giantfur/small, -/turf/open/floor/wood, +/obj/structure/carpet, +/turf/open/floor/tile/masonic{ + dir = 1 + }, /area/indoors/town/steward) "xJj" = ( /obj/effect/landmark/tram/queued_path/cargo_stop, @@ -27065,9 +28377,22 @@ "xPi" = ( /turf/open/floor/wood, /area/outdoors/town/roofs) +"xPE" = ( +/obj/structure/lever/wall{ + dir = 4; + redstone_id = "stewardshutter" + }, +/turf/open/floor/hexstone, +/area/indoors/town/steward) "xPK" = ( /turf/open/floor/blocks/newstone/alt, /area/indoors/town/church) +"xPU" = ( +/obj/structure/fake_machine/scomm{ + pixel_y = -32 + }, +/turf/open/floor/dirt/road, +/area/outdoors/town) "xQB" = ( /obj/structure/stairs{ dir = 1 @@ -27080,6 +28405,10 @@ "xQI" = ( /turf/closed/wall/mineral/stone/window/moss, /area/indoors/town/orphanage) +"xQW" = ( +/obj/structure/flora/grass/water, +/turf/open/water/clean/dirt, +/area/under/town/sewer) "xQY" = ( /obj/structure/flora/grass/bush/wall/tall{ pixel_x = -24; @@ -27097,25 +28426,20 @@ /turf/open/floor/cobble/mossy, /area/under/cavewet) "xRu" = ( -/obj/structure/flora/grass/bush/wall/tall, -/obj/structure/flora/grass, -/turf/open/floor/grass, -/area/outdoors/town/keep) +/turf/open/water/marsh/deep, +/area/outdoors/basin/safe) "xRQ" = ( /obj/structure/ladder, /turf/open/floor/wood/nosmooth, /area/under/town/sewer) "xSc" = ( -/obj/structure/table/wood{ - dir = 1; - icon_state = "longtable" - }, -/obj/item/key/shops/shop1{ - pixel_x = -8; - pixel_y = 7 +/obj/structure/door/fancy{ + name = "Servant's Entrance" }, -/turf/open/floor/wood, -/area/indoors/town/steward) +/obj/effect/mapping_helpers/access/keyset/manor/general, +/obj/effect/mapping_helpers/access/locker, +/turf/open/floor/cobble, +/area/outdoors/town/keep) "xSd" = ( /obj/machinery/light/fueled/wallfire/candle/r, /turf/open/floor/blocks/newstone/alt, @@ -27155,12 +28479,29 @@ /obj/structure/fake_machine/scomm/l, /turf/open/floor/wood, /area/indoors/town/orphanage) +"xTI" = ( +/obj/structure/fluff/railing/wood{ + dir = 8; + pixel_y = -1 + }, +/obj/structure/fluff/railing/wood, +/obj/structure/chair/stool{ + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/outdoors/town) "xTP" = ( /obj/structure/window/openclose{ dir = 1 }, /turf/open/floor/wood/nosmooth, /area/indoors/town/keep/archivist) +"xTX" = ( +/obj/machinery/light/fueled/wallfire/candle{ + pixel_y = -32 + }, +/turf/open/floor/woodturned/nosmooth, +/area/indoors/town/garrison) "xUq" = ( /turf/closed/wall/mineral/roofwall/middle, /area/indoors/town/keep) @@ -27229,7 +28570,8 @@ /obj/structure/fluff/railing/border{ dir = 8 }, -/turf/open/openspace, +/obj/machinery/light/fueled/firebowl/stump, +/turf/open/floor/woodturned, /area/outdoors/town) "xYg" = ( /obj/structure/rack/shelf/biggest, @@ -32715,17 +34057,17 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +asp +asp +asp +asp +asp +asp +asp +asp +asp +asp dIg dIg dIg @@ -32917,17 +34259,17 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +oGL +oGL +oGL +oGL +oGL +oGL +oGL +oGL +oGL +asp dIg dIg dIg @@ -33119,17 +34461,17 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +oGL +oGL +oGL +oGL +oGL +oGL +oGL +oGL +oGL +asp dIg dIg dIg @@ -33321,17 +34663,17 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +oGL +oGL +oGL +fwE +fwE +oGL +oGL +oGL +oGL +asp dIg dIg dIg @@ -33523,17 +34865,17 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +oGL +oGL +nqi +rkl +pAz +sOm +oGL +oGL +oGL +asp dIg dIg dIg @@ -33725,17 +35067,17 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +oGL +oGL +cbB +nqi +fwE +wLF +wLF +oGL +oGL +asp dIg dIg dIg @@ -33927,17 +35269,17 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +oGL +oGL +nqi +nqi +fwE +wLF +xIt +oGL +oGL +asp dIg dIg dIg @@ -34129,17 +35471,17 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +oGL +oGL +oGL +reY +nqi +nqi +nqi +oGL +oGL +asp dIg dIg dIg @@ -34331,17 +35673,17 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +oGL +oGL +oGL +oGL +oGL +oGL +oGL +oGL +oGL +asp dIg dIg dIg @@ -34533,17 +35875,17 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +oGL +oGL +oGL +oGL +oGL +oGL +oGL +oGL +oGL +asp dIg dIg dIg @@ -34735,17 +36077,17 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +oGL +oGL +oGL +oGL +oGL +oGL +oGL +oGL +oGL +asp dIg dIg dIg @@ -34937,17 +36279,17 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +asp +asp +asp +asp +asp +asp +asp +asp +asp +asp dIg dIg dIg @@ -39061,14 +40403,14 @@ fkJ hjh vKq gZB -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +asp +asp +asp +asp +asp +asp +asp dIg dIg dIg @@ -39262,15 +40604,15 @@ qBk qBk fkX fkJ -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +shU +shU +shU +shU +shU +shU +shU +asp dIg dIg dIg @@ -39464,15 +40806,15 @@ vbr qBk wps sue -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +shU +shU +shU +shU +shU +shU +shU +asp dIg dIg dIg @@ -39665,16 +41007,16 @@ qBk fkJ iXh iXh -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +shU +shU +shU +shU +shU +shU +shU +shU +asp dIg dIg dIg @@ -39865,18 +41207,18 @@ dIg gZB gZB iXh -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +asp +shU +shU +ecg +uma +izs +shU +shU +shU +shU +asp dIg dIg dIg @@ -40066,19 +41408,19 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +shU +shU +shU +sPE +oCR +izs +oCR +kuY +vxC +shU +shU +asp dIg dIg dIg @@ -40268,19 +41610,19 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +shU +shU +kTv +pkQ +kTv +kTv +izs +djv +ncJ +shU +shU +asp dIg dIg dIg @@ -40470,21 +41812,21 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +shU +shU +dYq +kTv +kTv +kTv +oCR +izs +izs +izs +izs +izs +qBk +hjh dIg dIg dIg @@ -40672,21 +42014,21 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +shU +shU +kTv +kTv +kTv +dgU +oCR +hMs +ogP +shU +shU +asp +qBk +qBk dIg dIg dIg @@ -40874,6 +42216,28 @@ dIg dIg dIg dIg +asp +shU +shU +shU +sPE +izs +oCR +oCR +ayk +eSP +shU +shU +asp +dIg +qBk +dIg +dIg +dIg +dIg +dIg +dIg +dIg dIg dIg dIg @@ -40896,44 +42260,22 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -asp -piX -"} -(67,1,1) = {" -piX -asp +dIg +dIg +dIg +dIg +dIg +dIg +dIg +dIg +dIg +dIg +asp +piX +"} +(67,1,1) = {" +piX +asp dIg dIg dIg @@ -41076,21 +42418,21 @@ dIg dIg dIg dIg +asp +shU +shU +shU +shU +cWp +izs +shU +shU +shU +shU +shU +asp dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +hjh dIg dIg dIg @@ -41278,21 +42620,21 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +shU +shU +shU +shU +shU +shU +shU +shU +shU +shU +shU +asp +hjh +hjh dIg dIg dIg @@ -41480,21 +42822,21 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +asp +shU +shU +shU +shU +shU +shU +shU +shU +shU +shU +shU +asp +hjh +hjh dIg dIg dIg @@ -41682,21 +43024,21 @@ dIg dIg dIg dIg +asp +asp +asp +asp +asp +asp +asp +asp +asp +asp +asp +asp +asp dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +hjh dIg dIg dIg @@ -41894,11 +43236,11 @@ dIg dIg dIg dIg +hjh dIg dIg -dIg -dIg -dIg +qBk +hjh dIg dIg dIg @@ -42094,14 +43436,14 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg -dIg +hjh +hjh +hjh +qBk +hjh +hjh +hjh +hjh dIg dIg dIg @@ -42293,10 +43635,10 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg +hjh +hjh +hjh +qBk dIg dIg dIg @@ -42494,10 +43836,10 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg +hjh +hjh +hjh +hjh dIg dIg dIg @@ -42696,7 +44038,7 @@ dIg dIg dIg dIg -dIg +hjh dIg dIg dIg @@ -42898,7 +44240,7 @@ dIg dIg dIg dIg -dIg +hjh dIg dIg dIg @@ -43099,8 +44441,8 @@ dIg dIg dIg dIg -dIg -dIg +qBk +hjh dIg dIg dIg @@ -43298,11 +44640,11 @@ dIg dIg dIg dIg +pFr dIg -dIg -dIg -dIg -dIg +hjh +hjh +hjh dIg dIg dIg @@ -43500,10 +44842,10 @@ dIg dIg dIg dIg -dIg -dIg -dIg -dIg +pFr +hjh +hjh +hjh dIg dIg dIg @@ -43702,7 +45044,7 @@ dIg dIg dIg dIg -dIg +pFr dIg dIg dIg @@ -43904,7 +45246,7 @@ dIg dIg dIg dIg -dIg +pFr dIg dIg dIg @@ -44106,7 +45448,7 @@ dIg dIg dIg dIg -dIg +pFr dIg dIg dIg @@ -44308,8 +45650,8 @@ dIg dIg dIg dIg -vac -lsL +xQW +xQW uDq bku gZB @@ -44510,7 +45852,7 @@ dIg dIg dIg dIg -qBk +pFr pFr pFr hjh @@ -44712,7 +46054,7 @@ dIg dIg dIg qBk -pFr +oME nqI nqI qBk @@ -44913,7 +46255,7 @@ uQY dIg dIg gZB -qzw +bku hjh nqI bSp @@ -46728,7 +48070,7 @@ dHG qBk qBk qBk -rgk +dIg dIg dIg dIg @@ -47131,8 +48473,8 @@ qBk uDq vac qBk -dIg -dIg +bku +hIT dIg dIg gZB @@ -73331,9 +74673,9 @@ ftQ ftQ ftQ ftQ -ftQ -ftQ -ftQ +cay +cay +cay xSt xSt xSt @@ -73533,7 +74875,7 @@ ftQ ftQ ftQ ftQ -ftQ +cay ftQ ftQ ftQ @@ -73726,16 +75068,16 @@ ftQ ftQ ftQ ftQ +ukE +ukE ftQ ftQ ftQ ftQ ftQ -ftQ -ftQ -ftQ -ftQ -ftQ +cay +cay +cay ftQ ftQ ftQ @@ -73927,15 +75269,15 @@ ftQ ftQ ftQ ftQ +ukE +ukE +ukE +ukE ftQ ftQ ftQ ftQ -ftQ -ftQ -ftQ -ftQ -ftQ +cay ftQ ftQ ftQ @@ -74129,15 +75471,15 @@ ftQ ftQ ftQ ftQ +ukE +ukE +ukE +ukE +ukE ftQ ftQ ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ +cay ftQ ftQ ftQ @@ -74331,17 +75673,17 @@ ftQ ftQ ftQ ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ +ukE +ukE +ukE +ukE +ukE +jgX +jgX +iMW +iMW +iMW +iMW ftQ ftQ ftQ @@ -74534,14 +75876,14 @@ ftQ ftQ ftQ ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ +ukE +ukE +ukE +ukE +reY +nqi +cay +cay ftQ ftQ ftQ @@ -74760,12 +76102,12 @@ ftQ ftQ ftQ ftQ -xSt -xSt -ehF -bXv -xSt -xSt +qkx +qkx +lFB +ovC +qkx +qkx jxt jxt jxt @@ -74963,11 +76305,11 @@ ftQ ftQ ftQ ftQ -xSt -ehF -ggf -xSt -bXv +qkx +lFB +cQY +qkx +ovC jxt coi uvk @@ -75166,10 +76508,10 @@ ftQ ftQ ftQ ftQ -xSt -xSt -xSt -bXv +qkx +qkx +qkx +ovC jxt lyk lyk @@ -75367,11 +76709,11 @@ ftQ ftQ ftQ ftQ -xSt -xSt -xSt -xSt -bXv +qkx +qkx +qkx +qkx +ovC jxt qiw shr @@ -75557,23 +76899,23 @@ ftQ ftQ ftQ ftQ -xSt -bdQ -bdQ -bdQ -xSt -bXv -bXv -xSt -xSt -xSt -xSt -xSt -xSt -xSt -bXv -bXv -xSt +qkx +hHR +hHR +hHR +qkx +ovC +ovC +qkx +qkx +qkx +qkx +qkx +qkx +qkx +ovC +ovC +qkx jxt cUU cUU @@ -75745,57 +77087,259 @@ ftQ ftQ ftQ ftQ -lhJ -xSt -xSt -xSt -xSt -xSt -xSt -xSt -xSt -xSt +cms +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +cDu +kdQ +cDu +lFB +ovC +ovC +ovC +ovC +ovC +ovC +qkx +ovC +ovC +qkx +qkx +qkx +jxt +hUn +cUU +cUU +cUU +cUU +uvk +uvk +nmy +jUu +fdT +cwE +jUu +jUu +nrW +cCS +mGO +mGO +mGO +ggf +mGO +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +gaW +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +rQG +"} +(40,1,2) = {" +nHL +jRq +jRq +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ xSt xSt xSt xSt xSt -dSN -yji -dSN -ehF -bXv -bXv -bXv -bXv -bXv -bXv -xSt -bXv -bXv -xSt -xSt -xSt +lFB +qkx +qkx +lFB +lFB +qkx +qkx +lFB +qkx +qkx +qkx +ovC +ovC +ovC +qkx +kdQ +kdQ +cDu +qkx +ovC +ovC +ovC +ovC +qkx +qkx +qkx +ovC +qkx +qkx +qkx +ovC jxt -hUn +cUU cUU cUU cUU cUU uvk uvk -nmy +jqb jUu -fdT -cwE +mIG +mIG jUu jUu -nrW -cCS +vpA +jxt mGO +ggf mGO mGO -ggf mGO lOR lOR @@ -75817,7 +77361,6 @@ lOR lOR lOR lOR -gaW lOR lOR lOR @@ -75825,6 +77368,7 @@ lOR lOR lOR lOR +gaW lOR lOR lOR @@ -75878,7 +77422,7 @@ mGO mGO rQG "} -(40,1,2) = {" +(41,1,2) = {" nHL jRq jRq @@ -75939,63 +77483,62 @@ ftQ ftQ ftQ ftQ -ftQ -ftQ -ftQ -xSt -xSt xSt xSt xSt -ehF -xSt xSt ehF -ehF -xSt -xSt -ehF -xSt -xSt -xSt -bXv -bXv -bXv -xSt -yji -yji -dSN -xSt -bXv -bXv -bXv -bXv xSt xSt xSt -bXv -xSt -xSt -xSt -bXv +ovC +ovC +qkx +qkx +ovC +ovC +ovC +ovC +qkx +qkx +ovC +qkx +qkx +xoL +qkx +kdQ +kdQ +cDu +lFB +ovC +qkx +qkx +qkx +lFB +qkx +ovC +ovC +qkx +qkx +qkx +ovC jxt -cUU -cUU -cUU -cUU -cUU -uvk +fVi +rUs +kTf +lAb +kTf +uRa uvk -jqb +jxt +jUu +jUu jUu -mIG -mIG jUu jUu -vpA jxt +cCS mGO -ggf mGO mGO mGO @@ -76013,6 +77556,8 @@ lOR lOR lOR lOR +gaW +lOR lOR lOR lOR @@ -76026,7 +77571,6 @@ lOR lOR lOR lOR -gaW lOR lOR lOR @@ -76080,7 +77624,7 @@ mGO mGO rQG "} -(41,1,2) = {" +(42,1,2) = {" nHL jRq jRq @@ -76139,77 +77683,80 @@ ftQ ftQ ftQ ftQ -ftQ -ftQ -xSt -xSt -xSt -xSt -ehF xSt xSt xSt -bXv -bXv -xSt xSt bXv bXv bXv bXv -xSt -xSt -bXv -xSt -xSt -sNa -xSt -yji -yji -dSN -ehF bXv -xSt -xSt -xSt ehF -xSt -bXv -bXv -xSt -xSt -xSt -bXv +qkx +ovC +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +ovC +lFB +qkx +qkx +jfK +kdQ +cDu +kdQ +jfK +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +ovC +ovC jxt -fVi -rUs -kTf -lAb -kTf -uRa +lyk +lyk +hEE +hFA +gSC +hEE uvk jxt +tfr +wbo jUu -jUu -jUu -jUu -jUu +wbo +ekQ jxt -cCS -mGO +xSt +xSt mGO mGO mGO lOR lOR +xyK +xyK +xyK +xyK +xyK +xyK +xyK +xyK +xyK lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR +gaW lOR lOR lOR @@ -76250,9 +77797,6 @@ lOR lOR lOR lOR -lOR -lOR -lOR mGO mGO mGO @@ -76282,7 +77826,7 @@ mGO mGO rQG "} -(42,1,2) = {" +(43,1,2) = {" nHL jRq jRq @@ -76340,250 +77884,48 @@ ftQ ftQ ftQ ftQ -ftQ -xSt -xSt xSt xSt bXv bXv -bXv -bXv -bXv -ehF -xSt -bXv -xSt -xSt -xSt -xSt -xSt -xSt -xSt -xSt -bXv ehF xSt xSt -nNU -yji -dSN -yji -nNU -xSt -xSt -xSt -xSt -xSt -xSt -xSt xSt xSt xSt -bXv -bXv -jxt -lyk -lyk -hEE -hFA -gSC -hEE -uvk -jxt -tfr -wbo -jUu -wbo -ekQ -jxt -xSt -xSt -mGO -mGO -mGO -lOR -lOR -xyK -xyK -xyK -xyK -xyK -xyK -xyK -xyK -xyK -gaW -lOR -lOR -lOR -lOR -lOR -gaW -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -rQG -"} -(43,1,2) = {" -nHL -jRq -jRq -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -xSt -xSt -bXv -bXv -ehF -xSt -xSt -xSt -xSt -xSt -xSt -xSt -xSt -ehF -xSt -xSt -xSt -xSt -xSt -xSt -bXv -xSt -xSt -xSt -xSt -bXv -yji -yji -yji -xSt -xSt -xSt -xSt -xSt -bXv -xSt -xSt -xSt -xSt -ggf -xSt xSt +qkx +qkx +lFB +qkx +qkx +qkx +qkx +qkx +qkx +ovC +qkx +qkx +qkx +qkx +ovC +kdQ +kdQ +kdQ +qkx +qkx +qkx +qkx +qkx +ovC +qkx +qkx +qkx +qkx +cQY +qkx +qkx jxt coi uvk @@ -76755,37 +78097,37 @@ xSt xSt bXv bXv -xSt -bXv -bXv -xSt -ehF -ehF -xSt -xSt -sNa -xSt -xSt -xSt -xSt -xSt -xSt -dSN -dSN -dSN -xSt -xSt -xSt -xSt -ehF -xSt -xSt -sNa -bXv -xSt -xSt -bXv -bXv +qkx +ovC +ovC +qkx +lFB +lFB +qkx +qkx +xoL +qkx +qkx +qkx +qkx +qkx +qkx +cDu +cDu +cDu +qkx +qkx +qkx +qkx +lFB +qkx +qkx +xoL +ovC +qkx +qkx +ovC +ovC jxt jxt jxt @@ -76957,42 +78299,42 @@ xSt xSt xSt sNa -sNa -xSt -xSt -xSt -xSt -xSt -xSt -bXv -bXv -xSt -xSt -xSt -xSt -xSt -bcX -yji -yji -yji -bcX -bcX -bcX -xSt -xSt -bXv -bXv -bXv -xSt -xSt -xSt -xSt -xSt -xSt -xSt -xSt -sSv -sSv +xoL +qkx +qkx +qkx +qkx +qkx +qkx +ovC +ovC +qkx +qkx +qkx +qkx +qkx +bRs +kdQ +kdQ +kdQ +bRs +bRs +bRs +qkx +qkx +ovC +ovC +ovC +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +mZK +mZK jxt pif wSK @@ -77160,37 +78502,37 @@ xSt xSt xSt xSt -xSt -xSt -xSt -bXv -xSt -bXv -bXv -xSt -xSt -xSt -bcX -bcX -xSt -xSt -tCT -tCT +qkx +qkx +qkx +ovC +qkx +ovC +ovC +qkx +qkx +qkx +bRs +bRs +qkx +qkx +meP +meP rft -xSt -xSt -xSt -xSt -xSt -xSt -xSt -xSt -xSt -xSt -xSt -xSt -xSt -xSt +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx sSv xyK xyK @@ -77214,11 +78556,12 @@ lOR xyK xyK baK +ekw +ekw cth cRb -baK -xhk -xhk +ekw +ekw baK xyK gaW @@ -77226,7 +78569,6 @@ xyK xyK xyK xyK -xyK gaW xyK xyK @@ -77362,33 +78704,33 @@ xSt xSt bXv bXv -bXv -xSt -xSt -bXv -bXv -xSt -xSt -xSt -xSt -xSt -bcX -bcX -xSt -xSt -ggf -ggf -ggf -xSt -xSt -xSt -xSt -bcX -xSt -xSt -xSt -xSt -xSt +ovC +qkx +qkx +ovC +ovC +qkx +qkx +qkx +qkx +qkx +bRs +bRs +qkx +qkx +cQY +cQY +cQY +qkx +qkx +qkx +qkx +bRs +qkx +qkx +qkx +qkx +qkx xyK xyK xyK @@ -77415,14 +78757,14 @@ lOR xyK xyK xyK -aqT +ekw gEB -xrO -jnm -knq +efS +pjN knq baK baK +ekw xyK aoe xyK @@ -77564,33 +78906,33 @@ bXv bXv ehF xSt -xSt -xSt -bXv -xSt -ehF -xSt -xSt -xSt -xSt -bcX -xSt -xSt -xSt -xSt -xSt -xSt -xSt -xSt -xSt -xSt -xSt -bcX -xSt +qkx +qkx +ovC +qkx +lFB +qkx +qkx +qkx +qkx +bRs +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +qkx +bRs +qkx gCo wtg gCo -xyK +bJI xyK xyK aoe @@ -77617,14 +78959,14 @@ lOR xyK xyK xyK -yki -gEB -xrO -jnm +ekw +pjN +efS +baK ceX -knq -knq baK +baK +ekw xyK xyK jXg @@ -77749,214 +79091,204 @@ xSt xSt xSt xSt -bXv -xSt -ehF -bXv -bXv -bXv -ehF -xSt -xSt -bXv -xSt -xSt -xSt -xSt -xSt -xSt -xSt -ehF -bXv -bXv -xSt -xSt -xSt -xSt -xSt -xSt -xyK -xyK -xyK -xyK -xyK -xyK -xyK -xyK -xyK -xyK -xyK -xyK -xyK -xyK -wtg -esY -wtg -xyK -xyK -xyK -xyK -lOR -lOR -lOR -lOR -lOR -jxt -fzb -hBQ -drX -cwi -hBQ -jxt -lOR -lOR -lOR -lOR -lOR -gaW -lOR -gaW -xyK -xyK -xyK -baK -baK -jZY -gpE -kDD -jZw -knq -xhk -xyK -ePk -ePk -jXg -ePk -xyK -xyK -xyK -xyK -rWb -lOR -lOR -lOR -lOR -lOR -mlk -rjD -rnL -rnL -iZW -mlk -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -lOR -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -mGO -rQG -"} -(50,1,2) = {" -nHL -jRq -jRq -jRq -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -xSt -xSt -xSt -xSt -xSt -xSt +bXv xSt +ehF bXv bXv bXv +ehF +xSt +xSt +bXv +xSt +xSt +xSt +xSt +xSt +xSt +xSt +lFB +ovC +ovC +qkx +qkx +qkx +qkx +qkx +qkx +xyK +xyK +xyK +xyK +xyK +xyK +xyK +xyK +xyK +xyK +xyK +xyK +xyK +xyK +wtg +esY +wtg +xyK +xyK +xyK +xyK +lOR +lOR +lOR +lOR +lOR +jxt +fzb +hBQ +drX +cwi +hBQ +jxt +lOR +lOR +lOR +lOR +lOR +gaW +lOR +gaW +xyK +xyK +xyK +aqT +efS +pjN +ceX +kDD +jZw +nbY +aqT +xyK +ePk +ePk +jXg +ePk +xyK +xyK +xyK +xyK +rWb +lOR +lOR +lOR +lOR +lOR +mlk +rjD +rnL +rnL +iZW +mlk +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +lOR +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +mGO +rQG +"} +(50,1,2) = {" +nHL +jRq +jRq +jRq +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +ftQ +xSt +xSt xSt xSt xSt xSt xSt -bXv -ehF bXv bXv bXv @@ -77965,6 +79297,11 @@ xSt xSt xSt xSt +bXv +ehF +bXv +bXv +bXv xSt xSt xSt @@ -77973,9 +79310,14 @@ xSt xSt xSt xSt -xSt -sSv -sSv +qkx +qkx +qkx +qkx +qkx +qkx +mZK +mZK xyK xyK xyK @@ -78021,14 +79363,14 @@ xyK xyK xyK xyK -xhk -gpE -ogW +yki +bWt +efS jnm -jZw pjN -knq -xhk +pjN +jas +yki xyK ePk ePk @@ -78170,13 +79512,13 @@ xSt xSt xSt xSt -xSt -xSt -sSv -sSv -xSt -xSt -xSt +qkx +qkx +mZK +mZK +qkx +qkx +qkx xyK xyK xyK @@ -78223,14 +79565,14 @@ xyK xyK xyK xyK -xhk -jnm +ekw +iQu efS -iLz +ceX kLj -vga -knq -xhk +kLj +wex +ekw xyK xyK ePk @@ -78372,13 +79714,13 @@ sSv sSv sSv sSv -sSv -sSv -cmG -sSv -sSv -xSt -xSt +mZK +mZK +lVk +mZK +mZK +qkx +qkx xyK xyK hkA @@ -78425,14 +79767,14 @@ bJI uSD bJI bJI -baK +ekw ljV -gpE -jnm +pjN +ceX fWt jZY gpE -baK +ekw xyK xyK xyK @@ -78574,12 +79916,12 @@ sSv bMF bMF bMF -bMF -sSv -sSv -sSv -sSv -sSv +nCk +mZK +mZK +mZK +mZK +mZK xyK bJI xyK @@ -78628,12 +79970,12 @@ ebf bJI bJI baK -cth +ekw inE -cRb -fkT cth cRb +ekw +ekw baK bJI bJI @@ -78776,12 +80118,12 @@ sSv mGO mGO mGO -dln -mGO -mGO -sSv -sSv -sSv +npp +xRu +xRu +mZK +mZK +mZK xyK xyK xyK @@ -78979,10 +80321,10 @@ mGO mGO mGO mGO -mGO -mGO -mGO -mGO +xRu +xRu +xRu +xRu lOR lOR bJI @@ -79000,10 +80342,10 @@ lOR lOR lOR lOR -bJI -lOR +ulh lOR lOR +bJI gaW lOR lOR @@ -79182,9 +80524,9 @@ mGO mGO mGO mGO -mGO -mGO -mGO +xRu +xRu +xRu lOR lOR lOR @@ -79384,9 +80726,9 @@ mGO mGO mGO mGO -mGO -mGO -mGO +xRu +xRu +xRu lOR lOR lOR @@ -79586,9 +80928,9 @@ mGO mGO mGO mGO -mGO -mGO -mGO +xRu +xRu +xRu lOR lOR utm @@ -79602,7 +80944,7 @@ lOR lOR utm utm -lOR +hkA lOR lOR lOR @@ -79788,8 +81130,8 @@ mGO mGO mGO mGO -mGO -mGO +xRu +xRu lOR lOR utm @@ -79804,7 +81146,7 @@ xyK utm aMh xyK -xyK +rWb xyK xyK xyK @@ -79991,7 +81333,7 @@ mGO mGO mGO mGO -mGO +xRu xyK aMh aMh @@ -80408,17 +81750,17 @@ xyK bJI bJI bJI -bJI +iYb hkA +vYG bJI bJI +ebf hkA -hkA -hkA -bJI -bJI -xyK -bJI +tnN +tnN +tnN +tnN xyK xyK xyK @@ -80455,7 +81797,7 @@ uSD rWb ePk ePk -ePk +jra xyK uSD rWb @@ -80609,19 +81951,19 @@ hkA hkA hkA bJI -bJI +vYG hkA hkA +ebf +vYG bJI -bJI -bJI -bJI -grJ -xyK -tzP -tzP -tzP -bJI +deJ +tnN +hkA +vBa +vBa +vBa +tnN bJI bJI bJI @@ -80809,22 +82151,22 @@ hKI hKI hkA bJI -bJI -bJI -bJI +iYb +vYG +vYG +deJ deJ deJ bJI -bJI -bJI -bJI -tzP -cwk -cwk -cwk -cwk -cwk -xyK +iYb +tnN +vBa +vBa +vBa +iWs +vrt +vBa +tnN xyK xyK xyK @@ -81011,22 +82353,22 @@ hKI hKI bJI bJI +vYG bJI deJ deJ deJ -bJI -bJI -bJI -bJI -bJI -tzP -shU -shU -shU -shU -shU -shU +deJ +deJ +vYG +tnN +vBa +gCl +vsp +vrt +vrt +vBa +nET xyK xyK xyK @@ -81212,23 +82554,23 @@ cwk hKI hKI hkA +kTY bJI +vYG bJI deJ -deJ -bJI -bJI -bJI +ebf bJI bJI bJI -tzP -shU -shU -shU -shU -shU -shU +tnN +vBa +inO +ghb +vrt +hZa +vBa +nET rWb xyK xyK @@ -81413,24 +82755,24 @@ bJI cwk hKI hKI +vYG +vYG +ebf bJI bJI +vYG +vYG +ebf +iYb bJI -bJI -bJI -bJI -bJI -bJI -bJI -bJI -bJI -tzP -shU -shU -shU -shU -shU -shU +tnN +vBa +rRU +ghb +vrt +wYT +vBa +nET rWb xyK jXg @@ -81622,17 +82964,17 @@ cih cih cih cih -hkA -hkA -hkA -hkA -tzP -shU -tzP +hlG +qik tzP tzP -shU -shU +vBa +xqV +wKT +vrt +hdY +vBa +nET bJI xyK jXg @@ -81824,17 +83166,17 @@ jWB tsz tnU cih -bJI -bJI -bJI -bJI -cwk -shU -shU -shU -shU -shU -shU +moY +moY +moY +oCR +vBa +xqV +wKT +vrt +wYT +vBa +nET ftQ xyK jXg @@ -82026,17 +83368,17 @@ jWB tsz tsz cih -bJI -bJI -bJI -bJI -cwk -shU -shU -shU -shU -shU -shU +moY +oCR +oCR +moY +kPr +vrt +vrt +vrt +hZa +vBa +nET ftQ bJI xyK @@ -82228,17 +83570,17 @@ cih oMR tsz cih -bJI -bJI -bJI -bJI -cwk -shU -shU -shU -shU -shU -shU +vBa +vBa +vBa +vBa +vBa +ihA +vrt +vrt +wYT +vBa +nET ftQ ftQ xyK @@ -82430,17 +83772,17 @@ cih yjN tsz cih -bJI -bJI -bJI -bJI -cwk -shU -shU -shU -shU -shU -shU +gZf +vrt +vrt +sqJ +vBa +fwD +vrt +vrt +hZa +vBa +nET ftQ ftQ wCB @@ -82632,17 +83974,17 @@ xyu tsz tsz cih -bJI -bJI -bJI -bJI -tzP -shU -shU -shU -shU -shU -shU +jGk +vrt +vrt +vrt +iax +vrt +vrt +khT +wYT +vBa +nET ftQ wCB wCB @@ -82834,17 +84176,17 @@ kCU tsz sWS cih -bJI -bJI -bJI -bJI -tzP -shU -shU -shU -shU -shU -shU +fTD +vrt +vrt +cog +vBa +vBa +vBa +vBa +vBa +vBa +nET wCB wCB wkJ @@ -83036,17 +84378,17 @@ cih cih cih cih -bJI -bJI -bJI -bJI +uKa +vrt +vrt +tgW tzP -shU -shU -shU -shU -shU -shU +nET +nET +nET +nET +nET +nET wCB lUM pNe @@ -83237,11 +84579,11 @@ jXg jXg jXg jXg -jXg -jXg -jXg -jXg -bJI +grJ +bBA +vrt +vrt +bAW tzP shU shU @@ -83439,11 +84781,11 @@ qZE qZE jXg jXg -jXg -jXg -jXg -jXg -bJI +grJ +erM +jRm +khT +jaH tzP shU shU @@ -83467,7 +84809,7 @@ bMn rQe svX vxl -vxl +rJk eld iXU vhs @@ -84097,11 +85439,11 @@ vYG bJI vYG vYG -bJI +ebf vYG vYG vYG -iJt +bJI aoe xyK aJH @@ -84290,21 +85632,21 @@ jXg jXg xyK xyK -hkA -jLH -bJI -bJI +oWR +xhU +xUy +xUy +oWR vYG vYG vYG vYG vYG vYG +bFn vYG vYG vYG -bJI -hkA xyK pxL xyK @@ -84492,23 +85834,23 @@ jXg jXg xyK xyK -ubv -hZa -tgW -tgW -req -req -tgW -tgW -tgW -tgW -tgW +xhU +xhU +ikM +oXL +oWR bJI vYG vYG -dvN -aoe +vYG +vYG +wvD +nsZ +pxb +nsZ +vYG xyK +aoe bJI jLH irh @@ -84694,22 +86036,22 @@ jXg jXg xyK xyK -ubv -ghb -qta -tnN -qta -qta -fwD +xhU +hMH +kWy +kWy +oWR +ebf +vYG nuz tOb etx -tgW -cyq +nsZ +uyK +ybj +twB vYG vYG -dvN -aJH jLH rPz bJI @@ -84896,22 +86238,22 @@ jXg xyK uSD xyK -ubv -nET -sSz -sSz -sSz -sSz -req -djM -djM -djM -tgW -tgW -bJI +xhU +kWy +kWy +kWy +nSB vYG +bJI +nuz +kjy +etx +wvD +wmG +req +twB vYG -jLH +bJI bJI aIl lFE @@ -85098,23 +86440,23 @@ jXg xyK gaW xyK -ubv -qta -uyK -iYb -sqJ -epK -req -djM -djM -djM -kxz -tgW -deJ +xhU +gYM +luZ +qCO +oWR vYG vYG vYG -bJI +vYG +xPU +twB +twB +wvD +wvD +deJ +vYG +jLH lFE oFn hIy @@ -85300,22 +86642,22 @@ jXg xyK xyK xyK -ubv -qta -uyK -bAW -wxf -epK -fwD -djM -djM +oWR +axf +qCO +ntl +oWR +vYG +uSD +vYG djM -aNB -tgW -deJ -lFE +vYG +ebf bJI vYG +deJ +deJ +vYG vYG xym lFE @@ -85502,21 +86844,21 @@ jXg xyK xyK xyK -tgW -qta -uyK -rWt -wKT -epK -tgW -hlG -djM -djM -pqc -tgW +xhU +qGS +qCO xUy xUy -oWR +vYG +vYG +vYG +gaW +vYG +vYG +gaW +vYG +bJI +uwE lFE vYG vYG @@ -85704,21 +87046,21 @@ jXg xyK xyK xyK -tgW -hmq -sSz -sSz -sSz -sSz -ubv -aSU -wYT -djM -tgW -tgW -ikM -oXL -oWR +xhU +xhU +xYA +xUy +lFE +bJI +vYG +vYG +vYG +vYG +vYG +vYG +vYG +vYG +vYG ebf vYG bJI @@ -85906,21 +87248,21 @@ jXg xyK xyK xyK -tgW -ghb -qta -pPt -qta -qta -ubv -pxb -wYT -vgM -tgW -hMH -kWy -kWy -oWR +aJH +xyK +aoe +jLH +bJI +vYG +vYG +bJI +vYG +vYG +bJI +ebf +vYG +vYG +vYG bJI vYG vYG @@ -86108,21 +87450,21 @@ jXg xyK xyK xyK -hZa -tgW -tgW -tgW -req -req -ubv -jXx -wYT -ujS -tgW -kWy -kWy -kWy -nSB +xyK +xyK +jLH +bJI +vYG +vYG +vYG +vYG +uwE +vYG +bJI +gaW +vYG +vYG +vYG vYG vYG vYG @@ -86309,23 +87651,23 @@ jXg jXg xyK xyK +aJH xyK -xyK -xyK +aoe bJI deJ vYG vYG -ubv -khT -vBa -djM -tgW -gYM -luZ -qCO -oWR -lFE +vYG +uwE +uwE +vYG +vYG +vYG +uSD +uwE +vYG +bJI bJI uVq mzG @@ -86510,23 +87852,23 @@ wvR jXg jXg xyK -gaW -xyK -xyK -deJ -bJI +mlk +xhU +xhU +xhU +mlk lFE bJI vYG -ubv -tgW -tgW -ubv -ubv -axf -qCO -ntl -oWR +ebf +uwE +uwE +ebf +bJI +vYG +uwE +uwE +vYG lFE vYG kPq @@ -86712,23 +88054,23 @@ lOR jXg jXg xyK -uSD -xyK -iEA -bJI -ftQ +xhU +uKj +swJ +uMS +xhU lFE vYG bJI -iEA -ftQ -ftQ -ftQ -xhU -qGS -qCO -xUy -xUy +vYG +uSD +vYG +vYG +bJI +vYG +vYG +vYG +ubv ebf vYG fUw @@ -86914,23 +88256,23 @@ bJI jXg jXg xyK -xyK -bJI -iEA -ftQ -ftQ -ftQ -vYG -vYG -iEA -ftQ -ftQ -ftQ -xhU -xhU xYA -xUy +pqc +pqc +epK +aeg lFE +vYG +vYG +ubv +vYG +vYG +vYG +vYG +ebf +vYG +deJ +ubv bJI vYG uIz @@ -87116,23 +88458,23 @@ bJI jXg jXg jXg -xyK -bJI -iEA -ftQ -ftQ +xYA +epK +pqc +pqc +mqv lFE vYG vYG -cyq -ftQ -ftQ -ftQ -jXg -jXg -vsp -dKg -bJI +deJ +deJ +deJ +kxz +eeQ +eeQ +lFE +deJ +deJ vYG vYG bJI @@ -87318,18 +88660,18 @@ lOR jXg jXg jXg -jXg -bJI -iEA -ftQ -ftQ +xhU +aSU +rWt +vgM +xhU lFE ebf vYG bJI -lFE -hqm -hqm +ubv +deJ +deJ jXg jXg hYu @@ -87520,23 +88862,23 @@ lOR jXg jXg jXg -jXg -bJI -iEA -ftQ -ftQ -ftQ +mlk +xhU +xhU +xhU +mlk +deJ bJI vYG bJI bJI ebf -kTY -vrt -xXB -ikg +fUw +jXg +jXg +mcb vrc -bJI +ebf vYG vYG bJI @@ -87724,19 +89066,19 @@ jXg jXg jXg bJI -iEA -ftQ -ftQ -hqm +hkA +deJ +deJ +ubv vYG vYG bJI vYG vYG -vYG -vYG -vYG -vYG +uIz +ikg +ikg +ikg vYG vYG tiX @@ -87927,9 +89269,9 @@ jXg jXg bJI bJI -ftQ -ftQ -hqm +deJ +deJ +ubv vYG vYG vYG @@ -113531,8 +114873,8 @@ xSt xSt xSt xSt -bXv -bXv +ovC +ovC jXg jXg jXg @@ -113733,8 +115075,8 @@ bXv bXv bXv xSt -bXv -bXv +ovC +ovC jXg jXg jXg @@ -113935,9 +115277,9 @@ nNU xSt xSt bXv -bXv -bXv -bXv +ovC +ovC +ovC jXg jXg jXg @@ -114137,10 +115479,10 @@ yji sNa bXv bXv -bXv -bXv -bXv -bXv +ovC +ovC +ovC +ovC jXg jXg jXg @@ -114339,12 +115681,12 @@ yji yji yji bXv -xSt -bXv -bXv -bXv -bXv -bXv +qkx +ovC +ovC +ovC +ovC +ovC jXg jXg jXg @@ -114540,14 +115882,14 @@ yji yji yji yji -yji -xSt -ehF -bXv -bXv -bXv -bXv -bXv +kdQ +qkx +lFB +ovC +ovC +ovC +ovC +ovC jXg jXg jXg @@ -114742,15 +116084,15 @@ xSt bXv yji yji -yji -yji -xSt -bXv -bXv -bXv -bXv -bXv -bXv +kdQ +kdQ +qkx +ovC +ovC +ovC +ovC +ovC +ovC jXg jXg jXg @@ -114944,18 +116286,18 @@ xSt xSt xSt yji -yji -yji -yji -yji -xSt -ehF -xSt -bXv -bXv -bXv -bXv -bXv +kdQ +kdQ +kdQ +kdQ +qkx +lFB +qkx +ovC +ovC +ovC +ovC +ovC jXg jXg jXg @@ -115146,21 +116488,21 @@ xSt xSt xSt xSt -yji -yji -bXv -yji -yji -xSt -xSt -xSt -xSt -bXv -bXv -bXv -bXv -bXv -bXv +kdQ +kdQ +ovC +kdQ +kdQ +qkx +qkx +qkx +qkx +ovC +ovC +ovC +ovC +ovC +ovC jXg jXg jXg @@ -115347,23 +116689,23 @@ xSt xSt xSt xSt -xSt -bXv -yji -yji -bXv -yji -yji -yji -bXv -bXv -xSt -xSt -xSt -bXv -bXv -bXv -bXv +qkx +ovC +kdQ +kdQ +ovC +kdQ +kdQ +kdQ +ovC +ovC +qkx +qkx +qkx +ovC +ovC +ovC +ovC jXg jXg jxt @@ -115549,24 +116891,24 @@ xSt xSt xSt xSt -xSt -bXv -nNU -xSt -yji -bXv -yji -yji -yji -bXv -bXv -bXv -ehF -xSt -bXv -bXv -bXv -bXv +qkx +ovC +jfK +qkx +kdQ +ovC +kdQ +kdQ +kdQ +ovC +ovC +ovC +lFB +qkx +ovC +ovC +ovC +ovC jXg jXg jXg @@ -115751,23 +117093,23 @@ xSt bXv bXv sNa -bXv -xSt -xSt -xSt -xSt -yji -vlA -vlA +ovC +qkx +qkx +qkx +qkx +kdQ +ebc +ebc gll -bXv -bXv -bXv -bXv -bXv -bXv -bXv -bXv +ovC +ovC +ovC +ovC +ovC +ovC +ovC +ovC jXg jXg jXg @@ -115953,11 +117295,11 @@ bXv bXv bXv bXv -bXv -bXv -bXv -xSt -xSt +ovC +ovC +ovC +qkx +qkx jXg jXg jXg @@ -116410,11 +117752,11 @@ khH bYV nTw lLg -oQv -oQv +dzZ +dzZ iHi dcH -bYV +sQG nTw khH dzZ @@ -116612,12 +117954,12 @@ jXg jXg jXg jXg -ogF -iHi -iHi -jnC jXg jXg +coW +dcH +ncZ +jXg jXg jXg jXg @@ -116814,6 +118156,7 @@ jXg jXg jXg jXg +jXg eLs eLs vSQ @@ -116823,7 +118166,6 @@ eLs eLs jXg jXg -jXg hPI ezQ jXg @@ -117006,9 +118348,9 @@ cqq jnC jXg jXg -jXg baK ekw +omd eeF eeF ekw @@ -117016,16 +118358,16 @@ baK jXg jXg jXg +jXg eje -qaq +dZb bWr -sna +qyf sna qyf eje jXg jXg -jXg iUR ncZ jXg @@ -117208,16 +118550,17 @@ lOv jnC jXg jXg -jXg ekw -bkM -dZb -jEH -rev +pBJ +ozT +ozT +ozT +pBJ ekw jXg jXg jXg +jXg eje iAm bWr @@ -117227,7 +118570,6 @@ bWr eje jXg jXg -jXg cqq ncZ jXg @@ -117410,26 +118752,26 @@ cyS ncZ jXg jXg -baK -baK -oEy -jEH -jEH -jEH ekw +gbm +ruc +vZd +ohD +jSs +ekw +jXg jXg jXg jXg eje wsh bWr -bWr -bWr +jlg +rev elL eje jXg jXg -jXg wEu moP jXg @@ -117612,18 +118954,19 @@ cqq hjR jXg jXg -ekw -eYd -jlg -coW -coW -coW baK +qRR +qpU +oDj +eCa +rHq +baK +ekw ekw baK jXg eLs -fNd +eLs bWr eLs eLs @@ -117631,7 +118974,6 @@ eLs eLs jXg jXg -jXg xFb moP jXg @@ -117815,15 +119157,16 @@ ezQ jXg jXg eeF -oEy -kQI -rip -rip -rip -rip +qZo +jEH +qZn +jEH +bvc rip -ekw -baK +lSD +vfo +rBp +jXg jXg eLs tpw @@ -117833,7 +119176,6 @@ jXg jXg jXg jXg -jXg eUO pfq jXg @@ -118017,23 +119359,23 @@ ogY jXg jXg eeF -oEy -kQI -rip -rip -rip -rip -rip -ekw -baK +bKD +tHp +tHp +tHp +oUU +fab +fab +tHp +rBp jXg -eLs -bWr -wjL -eje -eje -hGD -eLs +cRx +cRx +sMC +eFC +eFC +ghk +cRx jXg jXg eUO @@ -118218,24 +119560,24 @@ cqq jnC jXg jXg -ekw -eYd -ngA -ryw -rip -eFC -rip -ruK baK -ekw +boo +boo +gPb +baK +jdA +tHp +bKD +xTX +baK jXg -jqv +ruK sZx -cRx -cRx +sMC +sMC ajj sFV -jqv +ruK jXg frX cqq @@ -118421,19 +119763,19 @@ jnC jXg jXg ekw -jEH -jEH -aCr -rip -rip -rip -rip -ciK -eeF +rLQ +nGa +hwx +boo +tHp +bKD +tHp +tHp +eMq jXg -eje +eFC tKo -pwa +eDy ulw ulw apI @@ -118622,22 +119964,22 @@ cyS ncZ jXg jXg -ekw -jEH -jEH -rHq -rip -rip -rip -rip -ciK -eeF +fJq +alE +hwx +hwx +xrx +tHp +bKD +kcs +kcs +eMq jXg -eje +eFC mvu -pwa -pwa -pwa +eDy +eDy +eDy tKo gNe dcH @@ -118824,23 +120166,23 @@ cqq hjR jXg jXg -ekw -dZb -jEH -ghk -ngA -ngA -ngA -mVG +fJq +qtx +hwx +hwx +boo +tHp +tHp +baK baK ekw jXg -eje +eFC mvu -pwa -pwa -pwa -bcp +eDy +eDy +eDy +biE gNe dcH dcH @@ -119027,19 +120369,19 @@ ogY jXg jXg ekw -vkJ -oEy -oEy -qQP -oEy -oEy -nws +nGa +hwx +alE +boo +bKD +xTX +baK baK ekw jXg -eje +eFC vLk -pwa +eDy rTD ulw mvu @@ -119229,9 +120571,9 @@ tpZ jXg jXg baK -ekw -eeF -ekw +fJq +tcR +tcR baK caL caL @@ -119239,13 +120581,13 @@ baK ekw baK jXg -mlX +ciK mOM mSa -cRx -cRx +sMC +sMC mJX -mlX +ciK jXg pdB ogF @@ -119441,13 +120783,13 @@ jXg rWb jXg jXg -eLs -wjL +cRx +eYd gNe gNe gNe -hGD -eLs +ghk +cRx jXg mvL lxe @@ -120003,7 +121345,7 @@ jXg jXg jXg jXg -jXg +rWb jXg jXg jXg @@ -120812,14 +122154,14 @@ jXg jXg rWb jXg +wwp +wwp +wwp rmn -rmn -rmn -rmn -jXg -jXg -jXg -jXg +bJI +bJI +bJI +bJI jXg jXg jXg @@ -121015,14 +122357,14 @@ rmn rmn wwp wwp -enq -enq -rmn -jXg -rWb -rWb -rWb -jXg +vBa +vBa +vBa +vBa +vBa +vBa +vBa +bJI jXg jXg jXg @@ -121217,15 +122559,15 @@ enq enq tFL tFL -enq -wwp -rmn -rmn -rmn -rmn -grJ +vBa +klR +fXd +vrt +rFv +uUK +vBa rWb -jXg +bJI jXg jXg jXg @@ -121419,13 +122761,13 @@ enq enq enq enq -enq -wwp -rmn -moY -moY -moY -grJ +vBa +ihA +vrt +aJX +jXx +nuG +vBa eRF bJI jXg @@ -121621,13 +122963,13 @@ wwp wwp tFL tFL -wwp -wwp -rmn -moY -moY -moY -grJ +vgA +vrt +gCy +kwi +gCy +vrt +vBa grJ bJI jXg @@ -121823,13 +123165,13 @@ tFL enq enq enq -wwp -wwp -rmn -moY -moY -cwk -grJ +vBa +fwD +aNB +lDf +wxf +vrt +vBa grJ ioU jXg @@ -122025,13 +123367,13 @@ enq tFL tFL tFL -mCz -mCz -rmn -cwk -moY -moY -grJ +vBa +jCe +bWk +mIr +sSz +vrt +vBa grJ bJI jXg @@ -122227,13 +123569,13 @@ enq enq wwp wwp -wwp -wwp -rmn -cwk -cwk -moY -kRo +vgA +vrt +fSt +fSt +fSt +vrt +vBa kYV kRo pcB @@ -122264,7 +123606,7 @@ dZp uXJ wLu iFb -dcH +wSZ iHi gnx gnx @@ -122429,13 +123771,13 @@ tFL enq enq enq -tFL -tFL -rmn -moY -moY -moY -kRo +vBa +ihA +vrt +vrt +vrt +udk +vBa kYV kRo mGR @@ -122631,13 +123973,13 @@ enq enq tFL tFL -wwp -enq -rmn -cwk -moY -moY -kRo +vBa +vBa +vBa +vBa +ujS +vBa +vBa kYV kRo fyH @@ -122838,7 +124180,7 @@ psu psu moY moY -moY +oCR kRo kYV kRo @@ -123039,7 +124381,7 @@ mWv sjE psu moY -moY +oCR moY kRo kRo @@ -123090,7 +124432,7 @@ mlk wcN rnL mlk -iHi +lOJ ezQ jXg jXg @@ -123240,8 +124582,8 @@ pdi mWv mgV psu -rmn -rmn +qta +rJi rmn rmn hnl @@ -125504,17 +126846,17 @@ atl iHi wtg dcH -iHi -hkA -qQQ -uSD -jLg -kpb +ncZ +jXg +jXg +jXg +jXg +pPt bJI -hVi -qQQ -hkA -oQv +yfV +kpb +ebf +cyS oQv jnC jXg @@ -125689,13 +127031,13 @@ mGR mxP iDD hnl -oGW +kRo bnn thk thk thk bnn -oGW +kRo jXg jXg mVK @@ -125706,17 +127048,17 @@ cXC nAy iHi iHi -iHi -ePk -dVy -dOy -kCf -mnv -pfF -jCX -gPb -hkA -kun +ncZ +jXg +jXg +jXg +jXg +jXg +jXg +jXg +kTY +hSX +cqq iHi jnC jXg @@ -125891,13 +127233,13 @@ tpI tpI kOH bVR -oGW -kHp -iMW -tJW -eSP -wGq -oGW +kRo +kRo +kRo +kRo +kRo +kRo +kRo jXg jXg mVK @@ -125908,17 +127250,17 @@ kPG nAy oQv oQv -iHi -lFE -lFE -ehf -lFE -ePk -lFE -pfF -sXD -dvN -oQv +ncZ +jXg +jXg +gaW +lFo +bZH +xTI +jXg +jXg +jXg +cyS iHi ncZ jXg @@ -126093,13 +127435,13 @@ tea tea tea tea -rVg -bfA +xSc +tea bfA -etC -lmq -lmq -xoY +tea +kRo +kYV +kRo jXg jXg mVK @@ -126111,16 +127453,16 @@ nAy iHi sQG dcH -lFE -ePk -lFE -ePk -sUa -ePk -jrb -hSX -hkA -qKl +aXl +aXl +pXj +oQv +sQG +sQG +aXl +sfv +sfv +oQv wtg ezQ jXg @@ -126296,12 +127638,12 @@ tea tea tea rVg -bfA -bfA -bfA -lmq -lmq -xoY +gMQ +tea +tea +kRo +kYV +kRo jXg jXg mVK @@ -126312,16 +127654,16 @@ kPG nAy iHi wtg -dcH -kpb -qzN -bJI -lFE -ePk -lFE -lFE -ePk -ePk +iHi +dzZ +dzZ +sQG +oQv +iHi +iHi +dzZ +nTw +bYV iHi wtg ezQ @@ -126460,7 +127802,7 @@ bbe wAR glB glB -glB +sRm glB wAR wAR @@ -126497,13 +127839,13 @@ tpI tpI mAN tpI -oGW -wUF -idA -bfA -ayk -edE -oGW +kRo +kRo +tea +gMQ +kRo +kYV +kRo jXg jXg mVK @@ -126514,17 +127856,17 @@ kPG nAy sQG wtg -ePk -hkA -gPb -bSq -bJI -lFE -lFE -ePk -lFE -lFE +tpZ +jXg +jXg +gaW +hvX dcH +eQh +jXg +jXg +jXg +mvL dcH ncZ jXg @@ -126695,17 +128037,17 @@ tea vVc tea tea -tea +kRo tea tpI mxP -oGW -oGW -oGW -sqk -oGW -oGW -oGW +cRR +kRo +vlE +cAQ +kRo +kYV +kRo jXg jXg mVK @@ -126715,18 +128057,18 @@ eoW cXC nAy sQG -lFE -lFE -dvN -uSD -dOy -ePk -lFE -qzN -wub -gPb -dvN -dcH +sQG +ncZ +jXg +jXg +jXg +lOv +ncZ +jXg +jXg +jXg +jXg +mvL dcH ncZ jXg @@ -126902,12 +128244,12 @@ wgl pcB tpI hnl -oGW -uma -xIL -cMz -kTv -oGW +kRo +gMQ +tea +kRo +kYV +kRo jXg jXg mVK @@ -126915,20 +128257,20 @@ dcH dcH gjz atl -lFE -lFE -lFE -ePk -hkA -hkA -caM -lFE -ePk -jLg -hkA -bSq -hkA -pab +wtg +iHi +sQG +tpZ +jXg +jXg +jXg +cqq +jnC +jXg +jXg +jXg +jXg +lOv iHi oQv ssI @@ -127104,33 +128446,33 @@ wgl tea tea fAW -oGW -kBs -cMz -cMz -ebc -qed +kRo +cKu +pDZ +kRo +kRo +kRo jXg jXg aEJ xXM -xXM +mNl muy aTd kpb -ePk -ePk -ePk -dvN -sXD -jLg -ePk -lFE -jrb -crP -yfV -ebf +wtg sQG +ncZ +jXg +jXg +jXg +mvL +ncZ +jXg +jXg +jXg +kTY +lOv iHi oQv ssI @@ -127306,32 +128648,32 @@ hry byb wgl bVR -oGW +kRo uns -cMz -cMz -xSc -oGW -jXg -jXg +tea +tea +kRo +kRo jXg jXg jXg -hkA +wgk +oQv +sQG sXD pGj -lFE -lFE -lFE -bSq -crP -dVy -lFE -ePk -ebf -dVy +wtg +wtg +ncZ eRF -sQG +jXg +jXg +cqq +ogY +jXg +jXg +hSX +jLy iHi ogF ogF @@ -127508,39 +128850,39 @@ kTM lDT wgl bVR -oGW +kRo jjV -gkh +tea cAQ -oGW -jXg -jXg +kRo jXg jXg jXg jXg -dvN +oQv +iHi +sQG kpb eRF -ePk -lFE -ePk -hSX -nAy -ogF +wtg iHi +tpZ +uEM +bJI +gaW +lOv +ncZ +jXg +jXg +fEt +lOv +sQG +ogF +sQG sQG -ebf -ioU -yfV -iHi -oQv -oQv iHi +sQG oQv -oQv -iHi -iHi mBk bZo vRY @@ -127710,31 +129052,31 @@ tea tea tea fAW -oGW -mpf +kRo +hMT gMQ -gkh -qed -jXg -jXg +gMQ +kRo jXg jXg jXg jXg -rWb +oQv +gOu +iHi dOy qzN -lFE -ePk -lFE -ePk -lFE +wtg +iHi sQG +hii +hii +nMd dcH dcH -iHi -oQv -dcH +aXl +sfv +pQn dcH iHi jRD @@ -127912,24 +129254,24 @@ tpI vVc tpI kOH -oGW -cKu +kRo cKu +kBs cKu -oGW -jXg -jXg +kRo jXg jXg jXg jXg -rWb +nVB +ook +wgk qhs -lFE -ePk -ePk -lFE -ePk +sQG +iHi +wtg +wtg +sQG sQG iHi dcH @@ -128126,12 +129468,12 @@ rHh rHh rHh rHh -ePk -ePk -lFE -rWb -ePk -lFE +sQG +wtg +iHi +iHi +sQG +wtg sQG oQv oQv @@ -128328,13 +129670,13 @@ dVT dVT dVT dVT -lFE -ePk -rRU +wtg +iHi +cPP pXl -mIr -ePk -ePk +lpp +iHi +iHi sQG sQG sQG @@ -128449,7 +129791,7 @@ iyB iyB bXv bXv -bXv +oAb bXv bXv bXv @@ -128530,13 +129872,13 @@ aXz aXz aXz aXz -ePk -lFE -lFE -rWb -ePk -lFE -yfV +wtg +wtg +wtg +iHi +wtg +nTw +khH nTw dzZ dzZ @@ -128716,7 +130058,7 @@ mAN tpI tpI mAN -tpI +tea vVc tpI mAN @@ -128733,10 +130075,10 @@ jXg jXg jXg jsp -hkA +gaW aDR -ePk -lFE +iHi +ncZ jCX ehf jXg @@ -128936,9 +130278,9 @@ bSo wLu xJx wQP -ePk -ePk -ePk +wtg +wtg +ncZ yfV sXD jXg @@ -129137,10 +130479,10 @@ jXg mVK sUF dcH -gQk -ePk -ePk -ePk +hmq +sQG +sQG +ncZ wub ioU jXg @@ -129340,10 +130682,10 @@ mVK sUF dcH pDm -lFE -lFE -ePk -fSt +wtg +iHi +wtg +ncZ pGj jXg uyr @@ -129542,11 +130884,11 @@ mVK sUF dcH gQk -lFE -lFE -ePk -fSt -dvN +sQG +sQG +wtg +ncZ +bJI dIa fZG wnM @@ -129744,8 +131086,8 @@ aEJ kWs wHp giU -bJI -lFE +wtg +wtg sQG ogY jXg @@ -129927,9 +131269,9 @@ hnl fAW fyH fyH -xRu -dsT -xRu +tea +tea +tea fyH hnl fVx @@ -130127,13 +131469,13 @@ kRo kRo kRo kRo -kRo -kRo -kRo -kRo -kRo -kRo -kRo +oGW +oGW +idA +plX +idA +oGW +oGW fVx fSW uiJ @@ -130329,13 +131671,13 @@ ftQ ftQ ftQ ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ +etC +uCD +kHp +kHp +kHp +qTQ +etC fVx hrh qCC @@ -130531,13 +131873,13 @@ ftQ ftQ ftQ ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ +etC +etC +jto +kHp +kHp +eWW +etC fVx euw sBr @@ -130733,13 +132075,13 @@ ftQ ftQ ftQ ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ +etC +qed +uDo +jTt +jTt +eoU +etC fVx fVx fVx @@ -130935,13 +132277,13 @@ ftQ ftQ ftQ ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ +etC +cMz +ljr +jTt +jTt +szk +etC fVx fVx fVx @@ -131137,18 +132479,18 @@ ftQ ftQ ftQ ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ +etC +etC +etC +etC +fXx +etC +etC +etC +etC +etC +etC +etC wvR rWb jXg @@ -131341,16 +132683,16 @@ ftQ ftQ ftQ ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ +etC +oDz +qLr +rAk +vax +nKA +qCR +xIL +aeF +etC wvR rWb jXg @@ -131543,16 +132885,16 @@ ftQ ftQ ftQ ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ +etC +vgE +qLr +qLr +cRK +sqk +hdF +sFJ +tJW +etC wvR rWb jXg @@ -131745,16 +133087,16 @@ ftQ ftQ ftQ ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ +etC +feh +qLr +qLr +cRK +sqk +qCR +xIL +tJW +etC wvR rWb jXg @@ -131947,16 +133289,16 @@ ftQ ftQ ftQ ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ +etC +mpf +qLr +qLr +cRK +sqk +hdF +sFJ +tJW +etC wvR rWb jXg @@ -131982,7 +133324,7 @@ jXg lpU dcH iHi -iHi +sdL ogF ogF dhs @@ -132149,16 +133491,16 @@ ftQ ftQ ftQ ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ -ftQ +etC +peh +lee +xPE +cRK +sqk +qCR +xIL +pyY +etC wvR jXg jXg @@ -132351,16 +133693,16 @@ wvR wvR wvR wvR -wvR -wvR -wvR -wvR -wvR -wvR -wvR -wvR -wvR -wvR +oGW +oGW +oGW +oGW +oGW +lmq +gIs +hAr +mZN +oGW wvR hkA hkA @@ -132559,8 +133901,8 @@ jXg jXg jXg jXg -jXg -jXg +xoY +iAr jXg jXg jXg @@ -132761,8 +134103,8 @@ jXg jXg jXg jXg -jXg -jXg +peK +xbP jXg jXg jXg @@ -132963,8 +134305,8 @@ jXg jXg jXg jXg -jXg -jXg +xoY +xbP jXg jXg jXg @@ -133165,8 +134507,8 @@ frF hBq hBq grJ -hBq -hBq +twY +bOn frF grJ jXg @@ -140045,7 +141387,7 @@ jXg jXg bPT ePk -lFE +juG lFE lFE lFE @@ -157215,6 +158557,7 @@ vFt vFt vFt vFt +vFt iPt iPt iPt @@ -157283,7 +158626,6 @@ vFt vFt vFt vFt -vFt fAg "} (43,1,4) = {" @@ -157407,13 +158749,14 @@ vFt vFt vFt vFt +rOv +fmP +uZB +uZB +uZB +fmP +rOv vFt -baK -ekw -ekw -kSv -ekw -baK vFt vFt vFt @@ -157431,7 +158774,6 @@ vFt vFt vFt vFt -vFt yjT iHM vic @@ -157609,13 +158951,14 @@ vFt vFt vFt vFt -vFt -ekw -aqT +fmP +vga +aWX eVN -awY -awY -ekw +xhk +dqW +fmP +eBV eBV eBV eBV @@ -157632,7 +158975,6 @@ vFt vFt vFt vFt -vFt yjT dLC dLC @@ -157810,14 +159152,15 @@ vFt vFt vFt vFt -baK -ekw -baK +vFt +fmP +fPF dHs itn -awY -awY -ekw +aWX +aWX +fmP +vFt vFt vFt vFt @@ -157834,7 +159177,6 @@ vFt vFt vFt vFt -vFt lpq gca riE @@ -158012,13 +159354,14 @@ vFt vFt vFt vFt -ekw -edb -lZv -yki +vFt +rOv +fmP +fmP +rOv +mgH +rOv rOv -awY -cfg ekw ekw baK @@ -158036,7 +159379,6 @@ vFt vFt vFt vFt -vFt tKz hUU mGh @@ -158214,22 +159556,22 @@ vFt vFt vFt vFt +vFt ekw -xji -lZv -tto -jEH -ozT -ozT -jEH +cfg +tHp +caL +bKD +tHp +ifV dCn -baK -baK +ikc +ekw +vFt vFt oUv +wLw xbD -xbD -vFt vFt vFt vFt @@ -158416,21 +159758,21 @@ vFt vFt vFt vFt -kSv -uZB -lZv -tto -jEH +vFt +ekw +coS +bKD +ekw ddI -nzi -jSs -oEy +tHp +tto +lZv vkJ -ekw +kSv vFt oUv iPt -iPt +wLw iPt iPt iPt @@ -158618,16 +159960,16 @@ vFt vFt vFt vFt +vFt +ekw +cfg +tHp ekw -jAn -lZv -tto -jas kEe -qyJ -jSs -oEy -vkJ +tHp +tto +jAn +bdj kSv vFt oUv @@ -158820,16 +160162,16 @@ vFt vFt vFt vFt +vFt +baK ekw -ikc -lZv -tto -jEH -qpU -eCa -jSs -oEy -oEy +ekw +baK +lhP +tHp +acF +lUw +ogW kSv vFt oUv @@ -159022,17 +160364,17 @@ vFt vFt vFt vFt -baK -baK +vFt +ekw +gre +gre gre -aay -jEH ern bKD -jEH -oEy -oEy -kSv +aUc +rip +rip +ekw vFt oUv wLw @@ -159226,14 +160568,14 @@ vFt vFt vFt ekw -oEy -oEy -oEy -oEy -mgH -cpl +rip +rip +gre +ern +tHp cpl -fVg +kcs +kcs ekw vFt oUv @@ -159428,13 +160770,13 @@ vFt vFt vFt ekw -vNY -voW -oEy -oEy -fmP rip rip +gre +xji +tHp +tHp +iLz uAa ekw vFt @@ -159632,12 +160974,12 @@ vFt baK ekw ekw +baK kSv kSv kSv ekw ekw -ekw baK vFt oUv @@ -161416,13 +162758,13 @@ llk llk vFt vFt -vFt -vFt +hEH llk -vFt -vFt -vFt -vFt +llk +llk +nqk +llk +nqk vFt vFt vFt @@ -161618,8 +162960,8 @@ vFt vFt vFt vFt -vFt -vFt +hEH +llk llk hEH hEH @@ -161820,8 +163162,8 @@ vFt vFt vFt vFt -vFt -vFt +llk +llk hEH llk llk @@ -162022,8 +163364,8 @@ vFt vFt vFt vFt -vFt -vFt +nqk +hEH hEH nqk nqk @@ -162224,8 +163566,8 @@ vFt vFt vFt vFt -vFt -vFt +nqk +llk hEH llk llk @@ -162426,8 +163768,8 @@ vFt vFt vFt vFt -vFt -vFt +hEH +llk hEH llk llk @@ -162628,8 +163970,8 @@ vFt vFt vFt vFt -vFt -vFt +hEH +llk hEH nqk llk @@ -162830,8 +164172,8 @@ vFt vFt vFt vFt -vFt -vFt +hEH +llk hEH llk llk @@ -163032,8 +164374,8 @@ vFt vFt vFt vFt -vFt -vFt +hEH +llk hEH llk llk @@ -165906,7 +167248,6 @@ vFt vFt vFt vFt -llk vFt vFt vFt @@ -165914,7 +167255,8 @@ vFt vFt vFt vFt -llk +vFt +vFt vFt vFt vFt @@ -166116,7 +167458,7 @@ vFt vFt vFt vFt -iax +vFt vFt vFt vFt @@ -166318,7 +167660,7 @@ vFt vFt vFt vFt -iax +vFt vFt vFt vFt @@ -166520,7 +167862,7 @@ vFt vFt vFt vFt -llk +vFt vFt vFt vFt @@ -166916,7 +168258,7 @@ vFt vFt vFt vFt -llk +vFt vFt vFt vFt @@ -167118,7 +168460,6 @@ vFt vFt vFt vFt -iax vFt vFt vFt @@ -167126,7 +168467,8 @@ vFt vFt vFt vFt -llk +vFt +vFt vFt vFt vFt @@ -167320,15 +168662,15 @@ vFt vFt vFt vFt -iax -llk vFt vFt vFt vFt -llk vFt -iax +vFt +vFt +vFt +vFt vFt vFt vFt @@ -167522,7 +168864,7 @@ vFt vFt vFt vFt -llk +vFt vFt vFt vFt @@ -167718,7 +169060,7 @@ vFt vFt vFt vFt -llk +vFt vFt vFt vFt @@ -167920,7 +169262,7 @@ vFt vFt vFt vFt -llk +vFt vFt vFt vFt @@ -169134,7 +170476,7 @@ vFt vFt vFt vFt -llk +vFt vFt vFt vFt @@ -169947,7 +171289,7 @@ vFt vFt vFt vFt -llk +vFt qqt fZG jPo @@ -170528,13 +171870,13 @@ tkU sdA sdA sdA -tkU -tkU -tkU -sdA -sdA -tkU -tkU +wGq +wGq +idA +idA +idA +wGq +wGq tkU vES liJ @@ -170730,13 +172072,13 @@ cqu cqu cqu cqu -cqu -cqu -cqu -tkU -mtS -mtS -mtS +etC +hIB +qLr +qLr +qLr +sTQ +etC tkU ner qEt @@ -170932,14 +172274,14 @@ cqu cqu cqu cqu -cqu -cqu -cqu +etC +qed +qCs +dDV +edE +gkh +etC tkU -sag -sag -mtS -sdA sdA sdA tkU @@ -171134,18 +172476,18 @@ cqu cqu cqu cqu -cqu -cqu -cqu +etC +wUF +qCs +rCr +edE +gkh +etC tkU mtS mtS mtS mtS -mtS -mtS -mtS -mtS sdA vFt vFt @@ -171336,14 +172678,14 @@ cqu cqu cqu cqu -cqu -cqu -cqu +etC +wUF +dpb +qLr +qLr +lRH +etC tkU -mtS -sag -sag -sag sag sag mtS @@ -171538,14 +172880,14 @@ cqu cqu cqu cqu -cqu -cqu -cqu -tkU -mtS -mtS -mtS -mtS +etC +etC +etC +etC +sdG +etC +etC +sdA mtS mtS sag @@ -171742,12 +173084,12 @@ cqu cqu cqu cqu -cqu +etC +tBk +kHp +oVJ +etC tkU -sag -sag -sag -mtS mtS mtS mtS @@ -171944,12 +173286,12 @@ cqu cqu cqu cqu -cqu -tkU -mtS -mtS -mtS -mtS +etC +jTt +kHp +jTt +etC +sdA sag sag mtS @@ -172146,12 +173488,12 @@ cqu cqu cqu cqu -cqu +etC +tyW +kHp +kHp +etC sdA -sag -sag -sag -sag mtS mtS mtS @@ -172348,12 +173690,12 @@ cqu cqu cqu cqu -cqu -sdA -mtS -mtS -mtS -mtS +etC +kHp +kHp +kHp +etC +tkU mtS sag sag @@ -172550,13 +173892,13 @@ cqu cqu cqu cqu -cqu +etC +eGA +hLZ +hKR +etC sdA mtS -sag -sag -sag -mtS mtS mtS mtS @@ -172752,12 +174094,12 @@ sdA sdA sdA sdA +wGq +jWy +jWy +jWy +wGq tkU -tkU -llk -llk -sdA -llk sdA sdA llk @@ -197808,13 +199150,13 @@ vFt vFt vFt vFt -vFt -oUv -iPt -iPt -iPt -iPt -iPt +fVg +aay +aay +aay +aay +aay +voW vFt vFt vFt @@ -198010,13 +199352,13 @@ vFt vFt vFt vFt -vFt -oUv -wLw +qyJ +xrO wLw wLw wLw -nKP +xrO +dFI vFt vFt vFt @@ -198206,19 +199548,19 @@ nKP nKP nKP nKP -pNW -pNW -pNW -pNW -pNW -iPt -iPt -iPt +vFt +vFt +vFt +vFt +vFt +vFt +qyJ wLw wLw wLw wLw -nKP +wLw +dFI vFt vFt vFt @@ -198405,6 +199747,7 @@ vFt vFt vFt vFt +eBV vFt vFt vFt @@ -198413,17 +199756,16 @@ vFt vFt vFt vFt -oUv -wLw +qyJ wLw wLw wLw wLw wLw -nKP -nKP -nKP -vFt +xHi +aay +aay +sBF vFt vFt vFt @@ -198607,6 +199949,7 @@ vFt vFt vFt vFt +eBV vFt vFt vFt @@ -198615,8 +199958,7 @@ vFt vFt vFt vFt -oUv -wLw +qyJ wLw wLw wLw @@ -198624,8 +199966,8 @@ wLw wLw wLw wLw -nKP -nKP +xrO +dFI vFt vFt vFt @@ -198809,6 +200151,7 @@ vFt vFt vFt vFt +eBV vFt vFt vFt @@ -198817,17 +200160,16 @@ vFt vFt vFt vFt -oUv -ekw -ekw -ekw -ekw -ekw -ekw +uHy wLw wLw wLw -nKP +wLw +wLw +wLw +wLw +wLw +dFI vFt vFt vFt @@ -199011,6 +200353,7 @@ vFt vFt vFt vFt +eBV vFt vFt vFt @@ -199019,17 +200362,16 @@ vFt vFt vFt vFt -oUv +qyJ +baK ekw -vWM -jJI myy -awY ekw +baK wLw wLw wLw -nKP +dFI vFt vFt vFt @@ -199221,17 +200563,17 @@ vFt vFt vFt vFt -oUv +vFt +qyJ ekw -awY -awY -awY +jJI +bDy awY ekw wLw wLw wLw -nKP +dFI vFt vFt vFt @@ -199423,17 +200765,17 @@ vFt vFt vFt vFt -xbD +vFt +qyJ ekw -lhP oEy -awY +efS bDy -ekw +vNY wLw wLw wLw -nKP +dFI vFt vFt vFt @@ -199626,16 +200968,16 @@ vFt vFt vFt vFt +qyJ ekw -xHi -oEy -awY +jJI +efS pCw ekw wLw wLw wLw -nKP +dFI vFt vFt vFt @@ -199821,23 +201163,23 @@ wLw nKP nKP nKP -eBV -eBV -eBV -eBV -eBV -eBV -eBV +vFt +vFt +vFt +vFt +vFt +vFt +vFt +qyJ +baK ekw -vNY -oEy -dFI -uHy +myy ekw +baK wLw wLw -wLw -nKP +xrO +wCa vFt vFt vFt @@ -200030,16 +201372,16 @@ vFt vFt vFt vFt -ekw -ekw -ekw -ekw -ekw -ekw -xbD -xbD -xbD -nKP +fkT +edb +edb +edb +edb +edb +edb +edb +edb +vWM vFt vFt vFt @@ -200234,11 +201576,11 @@ vFt vFt vFt vFt -eBV vFt -eBV vFt -eBV +vFt +vFt +vFt vFt vFt vFt @@ -200436,11 +201778,11 @@ vFt vFt vFt vFt -eBV -eBV -eBV -eBV -eBV +vFt +vFt +vFt +vFt +vFt vFt vFt vFt @@ -200640,7 +201982,7 @@ vFt vFt vFt vFt -eBV +vFt vFt vFt vFt @@ -200842,7 +202184,7 @@ vFt vFt vFt vFt -eBV +vFt vFt vFt vFt @@ -201044,7 +202386,7 @@ vFt vFt vFt vFt -eBV +vFt vFt vFt vFt @@ -201246,7 +202588,7 @@ vFt vFt vFt vFt -eBV +vFt vFt vFt vFt @@ -201817,6 +203159,7 @@ vFt vFt vFt vFt +llk vFt vFt vFt @@ -201837,8 +203180,7 @@ vFt vFt vFt vFt -vFt -vFt +eBV vFt vFt vFt @@ -202019,7 +203361,7 @@ vFt vFt vFt vFt -vFt +llk vFt vFt llk @@ -202040,7 +203382,7 @@ vFt vFt vFt vFt -vFt +eBV vFt vFt vFt @@ -202424,7 +203766,7 @@ vFt vFt vFt vFt -vFt +llk llk vFt vFt @@ -202827,7 +204169,7 @@ vFt vFt vFt vFt -vFt +hEH vFt llk vFt @@ -203029,7 +204371,7 @@ vFt vFt vFt vFt -vFt +llk vFt llk vFt @@ -203066,7 +204408,7 @@ nqk llk vFt vFt -vFt +eBV vFt vFt vFt @@ -203231,7 +204573,7 @@ vFt vFt vFt vFt -vFt +llk vFt hEH vFt @@ -203268,7 +204610,7 @@ llk hEH vFt vFt -vFt +eBV vFt vFt vFt @@ -203433,7 +204775,7 @@ vFt vFt vFt vFt -vFt +llk vFt llk vFt @@ -203470,7 +204812,7 @@ llk llk vFt vFt -vFt +eBV vFt vFt vFt @@ -203672,7 +205014,7 @@ llk hEH vFt vFt -vFt +eBV vFt vFt vFt @@ -203874,7 +205216,7 @@ llk hEH hEH llk -hEH +llk hEH vFt vFt @@ -205909,7 +207251,7 @@ vFt vFt vFt vFt -pSn +vFt vFt vFt vFt @@ -206111,7 +207453,7 @@ vFt vFt vFt vFt -pSn +vFt vFt vFt vFt @@ -206313,9 +207655,9 @@ vFt vFt vFt vFt -pSn vFt -llk +vFt +vFt vFt vFt vFt @@ -206509,15 +207851,15 @@ vFt vFt vFt vFt -llk vFt vFt vFt vFt vFt -pSn vFt -llk +vFt +vFt +vFt vFt vFt vFt @@ -206711,15 +208053,15 @@ vFt vFt vFt vFt -llk vFt vFt vFt vFt vFt -pSn vFt -llk +vFt +vFt +vFt vFt vFt vFt @@ -206919,7 +208261,7 @@ vFt vFt vFt vFt -pSn +vFt vFt vFt vFt @@ -207121,7 +208463,7 @@ vFt vFt vFt vFt -pSn +vFt vFt vFt vFt @@ -207317,15 +208659,15 @@ vFt vFt vFt vFt -llk vFt vFt vFt vFt vFt -pSn vFt -llk +vFt +vFt +vFt vFt vFt vFt @@ -207519,15 +208861,15 @@ vFt vFt vFt vFt -llk vFt vFt vFt vFt vFt -pSn vFt -llk +vFt +vFt +vFt vFt vFt vFt @@ -207721,15 +209063,15 @@ vFt vFt vFt vFt -llk -llk -llk vFt vFt -llk -llk -llk -llk +vFt +vFt +vFt +vFt +vFt +vFt +vFt vFt vFt vFt @@ -207928,7 +209270,7 @@ vFt vFt vFt vFt -pSn +vFt vFt vFt vFt @@ -208130,7 +209472,7 @@ vFt vFt vFt vFt -pSn +vFt vFt vFt vFt @@ -208332,7 +209674,7 @@ vFt vFt vFt vFt -pSn +vFt vFt vFt vFt @@ -208534,7 +209876,7 @@ vFt vFt vFt vFt -pSn +vFt vFt vFt vFt @@ -208736,7 +210078,7 @@ vFt vFt vFt vFt -pSn +vFt vFt vFt vFt @@ -208938,7 +210280,7 @@ vFt vFt vFt vFt -pSn +vFt vFt vFt vFt @@ -209140,7 +210482,7 @@ vFt vFt vFt vFt -pSn +vFt vFt vFt vFt @@ -209342,7 +210684,7 @@ vFt vFt vFt vFt -pSn +vFt vFt vFt vFt @@ -209544,7 +210886,7 @@ vFt vFt vFt vFt -pSn +vFt vFt vFt vFt From 5b3894b52f40f2ddeb53c98b7d66a819ff63030d Mon Sep 17 00:00:00 2001 From: Copper404 Date: Fri, 24 Jul 2026 04:25:26 +0300 Subject: [PATCH 6/7] fix of hermestag --- _maps/map_files/daftmarsh/daftmarsh.dmm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/_maps/map_files/daftmarsh/daftmarsh.dmm b/_maps/map_files/daftmarsh/daftmarsh.dmm index a6c54d98064..b44eca81523 100644 --- a/_maps/map_files/daftmarsh/daftmarsh.dmm +++ b/_maps/map_files/daftmarsh/daftmarsh.dmm @@ -3828,7 +3828,9 @@ /obj/structure/table/wood/fancy, /obj/item/weapon/knife/dagger/bronze{ pixel_x = -4; - pixel_y = 6 + pixel_y = 6; + name = "bronze ritual dagger"; + desc = "An elegant dagger made out of bronze. If you love it, drink it's blood." }, /obj/item/reagent_containers/glass/cup/golden{ pixel_x = 6; @@ -22592,7 +22594,7 @@ pixel_y = -32 }, /obj/structure/fake_machine/mail/l{ - mailtag = Steward + mailtag = "Steward" }, /turf/open/floor/hexstone, /area/indoors/town/steward) From 14d72c993717f2f8cdb548649d16befd3c1b1167 Mon Sep 17 00:00:00 2001 From: Copper404 Date: Fri, 24 Jul 2026 04:43:59 +0300 Subject: [PATCH 7/7] unfucked garrison windows --- _maps/map_files/daftmarsh/daftmarsh.dmm | 38 ++++++++++++++----------- 1 file changed, 22 insertions(+), 16 deletions(-) diff --git a/_maps/map_files/daftmarsh/daftmarsh.dmm b/_maps/map_files/daftmarsh/daftmarsh.dmm index b44eca81523..693912b9674 100644 --- a/_maps/map_files/daftmarsh/daftmarsh.dmm +++ b/_maps/map_files/daftmarsh/daftmarsh.dmm @@ -6158,7 +6158,7 @@ /area/outdoors/town) "eMq" = ( /obj/structure/window/solid, -/obj/structure/window/solid, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood/nosmooth, /area/indoors/town/garrison) "eNd" = ( @@ -17386,7 +17386,8 @@ /area/under/town/sewer) "omd" = ( /obj/structure/window/solid, -/turf/closed/wall/mineral/wood, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/woodturned/nosmooth, /area/indoors/town/garrison) "oms" = ( /obj/structure/table/wood/reinforced_alter, @@ -21108,9 +21109,14 @@ /turf/open/floor/carpet/royalblack, /area/indoors/town/keep/garrison) "rBp" = ( -/obj/structure/window/solid, -/turf/closed/wall/mineral/wooddark, -/area/indoors/town/garrison) +/obj/structure/window/openclose/reinforced{ + dir = 4 + }, +/obj/structure/curtain/bounty/dir{ + dir = 4 + }, +/turf/open/floor/hexstone, +/area/indoors/town/steward) "rBz" = ( /obj/structure/door{ name = "Elder's Room" @@ -118353,8 +118359,8 @@ jXg baK ekw omd -eeF -eeF +omd +omd ekw baK jXg @@ -119158,7 +119164,7 @@ eUO ezQ jXg jXg -eeF +eMq qZo jEH qZn @@ -119167,7 +119173,7 @@ bvc rip lSD vfo -rBp +kSv jXg jXg eLs @@ -119360,7 +119366,7 @@ eUO ogY jXg jXg -eeF +eMq bKD tHp tHp @@ -119369,7 +119375,7 @@ oUU fab fab tHp -rBp +kSv jXg cRx cRx @@ -119773,7 +119779,7 @@ tHp bKD tHp tHp -eMq +eeF jXg eFC tKo @@ -119975,7 +119981,7 @@ tHp bKD kcs kcs -eMq +eeF jXg eFC mvu @@ -171874,9 +171880,9 @@ sdA sdA wGq wGq -idA -idA -idA +rBp +rBp +rBp wGq wGq tkU