diff --git a/code/game/objects/items/devices/scanners/health.dm b/code/game/objects/items/devices/scanners/health.dm index 6d854e201c..92f5b7aaeb 100644 --- a/code/game/objects/items/devices/scanners/health.dm +++ b/code/game/objects/items/devices/scanners/health.dm @@ -373,4 +373,11 @@ origin_tech = list(TECH_MAGNET = 7, TECH_BIO = 8) icon_state = "health3" +/obj/item/device/healthanalyzer/scroll //reports all of the above, as well as name and quantity of nonmed reagents in stomach + name = "scroll of divination" + desc = "An unusual scroll that appears to report all of the details of a person's health when waved near them. Oddly, it seems to have a little metal chip up near the handles..." + advscan = 3 + origin_tech = list(TECH_MAGNET = 7, TECH_BIO = 8) + icon_state = "health_scroll" + #undef DEFIB_TIME_LIMIT //VOREStation addition diff --git a/code/game/objects/items/stacks/medical.dm b/code/game/objects/items/stacks/medical.dm index 1cb0b442d9..0c3e0765f5 100644 --- a/code/game/objects/items/stacks/medical.dm +++ b/code/game/objects/items/stacks/medical.dm @@ -263,6 +263,12 @@ affecting.salve() playsound(src, pick(apply_sounds), 25) +/obj/item/stack/medical/ointment/simple + name = "ointment paste" + desc = "A simple thick paste used to salve burns." + singular_name = "old-ointment" + icon_state = "old-ointment" + /obj/item/stack/medical/advanced/bruise_pack name = "advanced trauma kit" singular_name = "advanced trauma kit" diff --git a/code/game/objects/items/weapons/surgery_tools.dm b/code/game/objects/items/weapons/surgery_tools.dm index de3ae21488..5d23d20a41 100644 --- a/code/game/objects/items/weapons/surgery_tools.dm +++ b/code/game/objects/items/weapons/surgery_tools.dm @@ -295,3 +295,10 @@ /obj/item/weapon/surgical/bone_clamp/alien icon = 'icons/obj/abductor.dmi' toolspeed = 0.75 + +/obj/item/weapon/surgical/bone_clamp/alien/magic + icon = 'icons/obj/abductor.dmi' + toolspeed = 0.75 + icon_state = "bone_boneclamp" + name = "bone bone clamp" + desc = "A bone clamp made of bones for fixing bones using bones, it feels strangely adept. In fact, it doesn't really feel like actual bone at all..." diff --git a/code/game/objects/items/weapons/tools/crowbar.dm b/code/game/objects/items/weapons/tools/crowbar.dm index 06c1e53e07..cec7259a71 100644 --- a/code/game/objects/items/weapons/tools/crowbar.dm +++ b/code/game/objects/items/weapons/tools/crowbar.dm @@ -54,6 +54,12 @@ toolspeed = 0.1 origin_tech = list(TECH_COMBAT = 4, TECH_ENGINEERING = 4) +/obj/item/weapon/tool/crowbar/alien/magic + name = "sentient crowbar" + desc = "A crowbar with a green gem set in it and a green ribbon tied to it, it floats lightly by itself and appears to be able to pry on its own. It almost feels like there is some sort of anti gravity generator running in it..." + catalogue_data = list(/datum/category_item/catalogue/anomalous/precursor_a/alien_crowbar) + icon_state = "crowbar_sentient" + /obj/item/weapon/tool/crowbar/hybrid name = "strange crowbar" desc = "A crowbar whose head seems to phase in and out of view." diff --git a/code/game/objects/items/weapons/tools/screwdriver.dm b/code/game/objects/items/weapons/tools/screwdriver.dm index 4598b69803..16af86fc31 100644 --- a/code/game/objects/items/weapons/tools/screwdriver.dm +++ b/code/game/objects/items/weapons/tools/screwdriver.dm @@ -87,6 +87,13 @@ toolspeed = 0.1 random_color = FALSE +/obj/item/weapon/tool/screwdriver/alien/magic + name = "vintage screwdriver of revolving" + desc = "A vintage screwdriver that spins as fast as a drill with little aid, it has a red gem on the handle. It oddly sounds like a drill too..." + catalogue_data = list(/datum/category_item/catalogue/anomalous/precursor_a/alien_screwdriver) + icon = 'icons/obj/abductor.dmi' + icon_state = "screwdriver_old" + /obj/item/weapon/tool/screwdriver/hybrid name = "strange screwdriver" desc = "A strange conglomerate of a screwdriver." diff --git a/code/game/objects/items/weapons/tools/weldingtool.dm b/code/game/objects/items/weapons/tools/weldingtool.dm index 8fbd4fe4d4..92189eba52 100644 --- a/code/game/objects/items/weapons/tools/weldingtool.dm +++ b/code/game/objects/items/weapons/tools/weldingtool.dm @@ -434,6 +434,13 @@ origin_tech = list(TECH_PHORON = 5 ,TECH_ENGINEERING = 5) always_process = TRUE +/obj/item/weapon/weldingtool/alien/magic + name = "bellows of flame" + desc = "A set of bellows that have a yellow gem on the spout, they emit flames when pressed. Oddly seems to have a faint phoron smell to it..." + catalogue_data = list(/datum/category_item/catalogue/anomalous/precursor_a/alien_welder) + icon = 'icons/obj/abductor.dmi' + icon_state = "bellows" + /obj/item/weapon/weldingtool/alien/process() if(get_fuel() <= get_max_fuel()) reagents.add_reagent("fuel", 1) diff --git a/code/game/objects/items/weapons/tools/wirecutters.dm b/code/game/objects/items/weapons/tools/wirecutters.dm index 2c43b963e1..1ce0ba2eb1 100644 --- a/code/game/objects/items/weapons/tools/wirecutters.dm +++ b/code/game/objects/items/weapons/tools/wirecutters.dm @@ -80,6 +80,12 @@ origin_tech = list(TECH_MATERIAL = 5, TECH_ENGINEERING = 4) random_color = FALSE +/obj/item/weapon/tool/wirecutters/alien/magic + name = "secateurs of organisation" + desc = "Extremely sharp secateurs, fitted with a glowing blue gem, said to be magically enhanced for speed. There seems to be a little whirring sound coming from beneath that gem..." + icon = 'icons/obj/abductor.dmi' + icon_state = "cutters_magic" + /obj/item/weapon/tool/wirecutters/cyborg name = "wirecutters" desc = "This cuts wires. With science." diff --git a/code/game/objects/items/weapons/tools/wrench.dm b/code/game/objects/items/weapons/tools/wrench.dm index 8745e65a1c..baaf357348 100644 --- a/code/game/objects/items/weapons/tools/wrench.dm +++ b/code/game/objects/items/weapons/tools/wrench.dm @@ -73,6 +73,13 @@ toolspeed = 0.1 origin_tech = list(TECH_MATERIAL = 5, TECH_ENGINEERING = 5) +/obj/item/weapon/tool/wrench/alien/magic + name = "pliers of molding" + desc = "A set of pliers that seems to mold to the shape of their target, housing a pink gem. Oddly seems to have a slightly slimey texture at the metal..." + catalogue_data = list(/datum/category_item/catalogue/anomalous/precursor_a/alien_wrench) + icon = 'icons/obj/abductor.dmi' + icon_state = "pliers" + /obj/item/weapon/tool/wrench/power name = "hand drill" desc = "A simple powered hand drill. It's fitted with a bolt bit." diff --git a/code/game/objects/random/misc_vr.dm b/code/game/objects/random/misc_vr.dm index ecd7468d13..fd9cf62989 100644 --- a/code/game/objects/random/misc_vr.dm +++ b/code/game/objects/random/misc_vr.dm @@ -235,3 +235,109 @@ prob(5);/obj/item/organ/internal/stomach, prob(5);/obj/item/organ/internal/voicebox, ) + +/obj/random/potion + name = "random potion" + desc = "A random potion." + icon_state = "potion" + spawn_nothing_percentage = 0 + +/obj/random/potion/item_to_spawn() + return pick(prob(20);/obj/item/weapon/reagent_containers/glass/bottle/potion/healing, + prob(4);/obj/item/weapon/reagent_containers/glass/bottle/potion/greater_healing, + prob(20);/obj/item/weapon/reagent_containers/glass/bottle/potion/fire_resist, + prob(20);/obj/item/weapon/reagent_containers/glass/bottle/potion/antidote, + prob(20);/obj/item/weapon/reagent_containers/glass/bottle/potion/water, + prob(8);/obj/item/weapon/reagent_containers/glass/bottle/potion/regeneration, + prob(10);/obj/item/weapon/reagent_containers/glass/bottle/potion/panacea, + prob(10);/obj/item/weapon/reagent_containers/glass/bottle/potion/magic, + prob(10);/obj/item/weapon/reagent_containers/glass/bottle/potion/lightness, + prob(4);/obj/item/weapon/reagent_containers/glass/bottle/potion/SOP, + prob(4);/obj/item/weapon/reagent_containers/glass/bottle/potion/shrink, + prob(4);/obj/item/weapon/reagent_containers/glass/bottle/potion/growth, + prob(20);/obj/item/weapon/reagent_containers/glass/bottle/potion/pain, + prob(10);/obj/item/weapon/reagent_containers/glass/bottle/potion/faerie, + prob(10);/obj/item/weapon/reagent_containers/glass/bottle/potion/relaxation, + prob(10);/obj/item/weapon/reagent_containers/glass/bottle/potion/speed, + prob(10);/obj/item/weapon/reagent_containers/glass/bottle/potion/attractiveness, + prob(4);/obj/item/weapon/reagent_containers/glass/bottle/potion/girljuice, + prob(4);/obj/item/weapon/reagent_containers/glass/bottle/potion/boyjuice, + prob(4);/obj/item/weapon/reagent_containers/glass/bottle/potion/badpolymorph, + prob(2);/obj/item/weapon/reagent_containers/glass/bottle/potion/bonerepair, + prob(1);/obj/item/weapon/reagent_containers/glass/bottle/potion/truepolymorph + ) + +/obj/random/potion_ingredient + name = "random potion ingredient" + desc = "A random potion." + icon_state = "ingredient" + spawn_nothing_percentage = 0 + +/obj/random/potion_ingredient/item_to_spawn() + return pick(prob(10);/obj/item/weapon/potion_material/blood_ruby, + prob(2);/obj/item/weapon/potion_material/ruby_eye, + prob(10);/obj/item/weapon/potion_material/golden_scale, + prob(10);/obj/item/weapon/potion_material/frozen_dew, + prob(10);/obj/item/weapon/potion_material/living_coral, + prob(4);/obj/item/weapon/potion_material/rare_horn, + prob(5);/obj/item/weapon/potion_material/moldy_bread, + prob(5);/obj/item/weapon/potion_material/glowing_gem, + prob(5);/obj/item/weapon/potion_material/giant_toe, + prob(2);/obj/item/weapon/potion_material/flesh_of_the_stars, + prob(2);/obj/item/weapon/potion_material/spinning_poppy, + prob(2);/obj/item/weapon/potion_material/salt_mage, + prob(10);/obj/item/weapon/potion_material/golden_grapes, + prob(5);/obj/item/weapon/potion_material/fairy_house, + prob(5);/obj/item/weapon/potion_material/thorny_bulb, + prob(5);/obj/item/weapon/potion_material/ancient_egg, + prob(5);/obj/item/weapon/potion_material/crown_stem, + prob(2);/obj/item/weapon/potion_material/red_ingot, + prob(2);/obj/item/weapon/potion_material/soft_diamond, + prob(2);/obj/item/weapon/potion_material/solid_mist, + prob(1);/obj/item/weapon/potion_material/spider_leg, + prob(1);/obj/item/weapon/potion_material/folded_dark + ) + +/obj/random/potion_base + name = "random potion base" + desc = "A random potion base." + icon_state = "base" + spawn_nothing_percentage = 0 + +/obj/random/potion_base/item_to_spawn() + return pick(prob(10);/obj/item/weapon/potion_base/aqua_regia, + prob(10);/obj/item/weapon/potion_base/ichor, + prob(10);/obj/item/weapon/potion_base/alkahest + ) + +/obj/random/fantasy_item + name = "random fantasy item" + desc = "A random fantasy item." + icon_state = "fantasy" + spawn_nothing_percentage = 0 + +/obj/random/fantasy_item/item_to_spawn() + return pick(prob(3);/obj/item/device/healthanalyzer/scroll, + prob(10);/obj/item/weapon/gun/energy/taser/magic, + prob(5);/obj/item/weapon/bluespace_harpoon/wand, + prob(10);/obj/item/device/slow_sizegun/magic, + prob(10);/obj/item/clothing/gloves/bluespace/magic, + prob(30);/obj/item/weapon/coin/gold, + prob(30);/obj/item/weapon/coin/silver, + prob(30);/obj/item/weapon/coin/platinum, + prob(20);/obj/item/weapon/material/sword/rapier, + prob(20);/obj/item/weapon/material/sword/longsword, + prob(20);/obj/item/clothing/head/helmet/bucket/wood, + prob(3);/obj/item/weapon/tool/wirecutters/alien/magic, + prob(3);/obj/item/weapon/tool/crowbar/alien/magic, + prob(3);/obj/item/weapon/tool/screwdriver/alien/magic, + prob(3);/obj/item/weapon/weldingtool/alien/magic, + prob(3);/obj/item/weapon/tool/wrench/alien/magic, + prob(3);/obj/item/weapon/surgical/bone_clamp/alien/magic, + prob(10);/obj/item/stack/material/gold, + prob(10);/obj/item/stack/material/silver, + prob(3);/obj/item/weapon/bone/skull, + prob(20);/obj/item/weapon/material/twohanded/staff, + prob(3);/obj/item/weapon/gun/energy/hooklauncher/ring, + prob(3);/obj/item/toy/eight_ball + ) diff --git a/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm b/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm index 6db060fed6..25554e9b4c 100644 --- a/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm +++ b/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm @@ -1441,6 +1441,10 @@ decals = null color = COLOR_OFF_WHITE +/decl/closet_appearance/wall_double/wooden + decals = null + color = WOOD_COLOR_RICH + /decl/closet_appearance/wall_double/medical decals = null color = COLOR_OFF_WHITE diff --git a/code/game/objects/structures/crates_lockers/closets/walllocker.dm b/code/game/objects/structures/crates_lockers/closets/walllocker.dm index 6be9205ef3..0693503fb6 100644 --- a/code/game/objects/structures/crates_lockers/closets/walllocker.dm +++ b/code/game/objects/structures/crates_lockers/closets/walllocker.dm @@ -80,6 +80,27 @@ /obj/structure/closet/walllocker/medical/east pixel_x = 32 dir = EAST + +/obj/structure/closet/walllocker/wooden + name = "wooden cabinet" + desc = "A wall mounted storage cabinet." + closet_appearance = /decl/closet_appearance/wall_double/wooden + +/obj/structure/closet/walllocker/wooden/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker/wooden/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker/wooden/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker/wooden/east + pixel_x = 32 + dir = EAST //VOREStation Add End //double-size "cabinet" lockers, from Killian diff --git a/code/game/objects/structures/crates_lockers/crates.dm b/code/game/objects/structures/crates_lockers/crates.dm index 56f5a3f38d..7dfaf18187 100644 --- a/code/game/objects/structures/crates_lockers/crates.dm +++ b/code/game/objects/structures/crates_lockers/crates.dm @@ -724,6 +724,15 @@ open_sound = 'sound/effects/wooden_closet_open.ogg' close_sound = 'sound/effects/wooden_closet_close.ogg' +//Chest +/obj/structure/closet/crate/chest + name = "chest" + desc = "A fancy chest made from wood and lined with red velvet." + icon = 'icons/obj/closets/chest.dmi' + closet_appearance = null + open_sound = 'sound/effects/wooden_closet_open.ogg' + close_sound = 'sound/effects/wooden_closet_close.ogg' + //Mining Cart /obj/structure/closet/crate/miningcar name = "mining cart" diff --git a/code/game/objects/structures/fence.dm b/code/game/objects/structures/fence.dm index 839269847a..a3133b264a 100644 --- a/code/game/objects/structures/fence.dm +++ b/code/game/objects/structures/fence.dm @@ -170,6 +170,41 @@ return FALSE return TRUE +/obj/structure/fence/wood + cuttable = FALSE + name = "fence" + desc = "A wooden fence. Not as effective as a wall, but generally it keeps people out." + description_info = "Projectiles can freely pass fences." + density = TRUE + anchored = TRUE + + icon = 'icons/obj/fence.dmi' + icon_state = "wood_straight" + +/obj/structure/fence/wood/end + icon_state = "wood_end" + +/obj/structure/fence/wood/corner + icon_state = "wood_corner" + +/obj/structure/fence/hedge + cuttable = FALSE + name = "hedge" + desc = "A large hedge. Not as effective as a wall, but generally it keeps people out." + description_info = "Projectiles can freely pass fences." + density = TRUE + anchored = TRUE + opacity = 1 + + icon = 'icons/obj/fence.dmi' + icon_state = "hedge_straight" + +/obj/structure/fence/hedge/end + icon_state = "hedge_end" + +/obj/structure/fence/hedge/corner + icon_state = "hedge_corner" + #undef CUT_TIME #undef CLIMB_TIME diff --git a/code/game/objects/structures/props/fantasy.dm b/code/game/objects/structures/props/fantasy.dm new file mode 100644 index 0000000000..8e3823f863 --- /dev/null +++ b/code/game/objects/structures/props/fantasy.dm @@ -0,0 +1,52 @@ +//props for more fantasy type settings + +/obj/structure/prop/fantasy + name = "some fantasy thing" + desc = "My description is broken, bug a developer." + icon = 'icons/obj/props/fantasy.dmi' + density = TRUE + anchored = TRUE + +/obj/structure/prop/fantasy/throne + name = "throne" + desc = "An ornate golden throne for the truly pompous." + icon_state = "throne" + +/obj/structure/prop/fantasy/anvil + name = "anvil" + desc = "A big solid chunk of cast steel used for smithing." + icon_state = "anvil" + +/obj/structure/prop/fantasy/grindstone + name = "grindstone" + desc = "A pedal powered, rough wheel that is used to sharpen and refine metal." + icon_state = "grindstone" + +/obj/structure/prop/fantasy/kiln + name = "kiln" + desc = "A large stone furnace." + icon_state = "kiln" + +/obj/structure/prop/fantasy/redbanner + name = "tapestry" + desc = "A red tapestry hanging from the wall." + icon_state = "redbanner" + density = FALSE + +/obj/structure/prop/fantasy/pinkbanner + name = "tapestry" + desc = "A red tapestry hanging from the wall." + icon_state = "pinkbanner" + density = FALSE + +/obj/structure/prop/fantasy/redbanner_standing + name = "banner" + desc = "A red banner hanging from a stand." + icon_state = "redbanner_stand" + density = FALSE + +/obj/structure/prop/fantasy/pinkbanner_standing + name = "banner" + desc = "A red banner hanging from a stand." + icon_state = "pinkbanner_stand" + density = FALSE diff --git a/code/game/objects/structures/stool_bed_chair_nest/bed.dm b/code/game/objects/structures/stool_bed_chair_nest/bed.dm index 1f24a35945..915720dee8 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/bed.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/bed.dm @@ -384,4 +384,58 @@ if(!anchored) to_chat(user," The bed isn't secured.") - return \ No newline at end of file + return + +// Bath + +/obj/structure/bed/bath + name = "wash tub" + desc = "A wooden tub that can be filled with water for washing yourself." + icon_state = "bath" + base_icon = "bath" + flags = OPENCONTAINER + var/amount_per_transfer_from_this = 5 + +/obj/structure/bed/bath/update_icon() + if(reagents.total_volume < 1) + icon_state = "bath" + else if(reagents.total_volume < 50) + icon_state = "bath1" + else if(reagents.total_volume < 150) + icon_state = "bath2" + else if(reagents.total_volume < 301) + icon_state = "bath3" + return // Doesn't care about material or anything else. + +/obj/structure/bed/bath/attackby(obj/item/I, mob/user) + if(istype(I, /obj/item/weapon/mop) || istype(I, /obj/item/weapon/soap)) //VOREStation Edit - "Allows soap and rags to be used on mopbuckets" + if(reagents.total_volume < 1) + to_chat(user, "\The [src] is out of water!") + else + reagents.trans_to_obj(I, 5) + to_chat(user, "You wet \the [I] in \the [src].") + playsound(src, 'sound/effects/slosh.ogg', 25, 1) + if(istype(I, /obj/item/weapon/reagent_containers/glass)) + update_icon() + return + else if(istype(I, /obj/item/weapon/grab)) + var/obj/item/weapon/grab/G = I + var/mob/living/affecting = G.affecting + if(has_buckled_mobs()) //Handles trying to buckle someone else to a chair when someone else is on it + to_chat(user, "\The [src] already has someone buckled to it.") + return + user.visible_message("[user] attempts to buckle [affecting] into \the [src]!") + if(do_after(user, 20, G.affecting)) + affecting.loc = loc + spawn(0) + if(buckle_mob(affecting)) + affecting.visible_message(\ + "[affecting.name] is buckled to [src] by [user.name]!",\ + "You are buckled to [src] by [user.name]!",\ + "You hear metal clanking.") + qdel(I) + + +/obj/structure/bed/bath/New() + create_reagents(300) + ..() diff --git a/code/game/objects/structures/watercloset.dm b/code/game/objects/structures/watercloset.dm index aff55b7225..4c16460a9c 100644 --- a/code/game/objects/structures/watercloset.dm +++ b/code/game/objects/structures/watercloset.dm @@ -124,6 +124,61 @@ else to_chat(user, "You need a tighter grip.") +/obj/structure/toilet/wooden + name = "wooden toilet" + desc = "It's basically a hole in a box with a bucket inside. This one seems remarkably clean." + icon_state = "toilet3" + open = 1 + +/obj/structure/toilet/wooden/attack_hand(mob/living/user as mob) + return //No lid + +/obj/structure/toilet/wooden/attackby(obj/item/I as obj, mob/living/user as mob) //simpler interactions + if(istype(I, /obj/item/weapon/grab)) + user.setClickCooldown(user.get_attack_speed(I)) + var/obj/item/weapon/grab/G = I + + if(isliving(G.affecting)) + var/mob/living/GM = G.affecting + + if(G.state>1) + if(!GM.loc == get_turf(src)) + to_chat(user, "[GM.name] needs to be on the toilet.") + return + if(open && !swirlie) + user.visible_message("[user] starts to give [GM.name] a swirlie!", "You start to give [GM.name] a swirlie!") + swirlie = GM + if(do_after(user, 30, GM)) + user.visible_message("[user] gives [GM.name] a swirlie!", "You give [GM.name] a swirlie!", "You hear a toilet flushing.") + if(!GM.internal) + GM.adjustOxyLoss(5) + swirlie = null + else + user.visible_message("[user] slams [GM.name] into the [src]!", "You slam [GM.name] into the [src]!") + GM.adjustBruteLoss(5) + else + to_chat(user, "You need a tighter grip.") + + if(cistern && !istype(user,/mob/living/silicon/robot)) //STOP PUTTING YOUR MODULES IN THE TOILET. + if(I.w_class > 3) + to_chat(user, "\The [I] does not fit.") + return + if(w_items + I.w_class > 5) + to_chat(user, "The cistern is full.") + return + user.drop_item() + I.loc = src + w_items += I.w_class + to_chat(user, "You carefully place \the [I] into the cistern.") + return + +/obj/structure/toilet/wooden/New() + open = 1 //just to make sure it works + icon_state = "toilet3" + return + +/obj/structure/toilet/wooden/update_icon() + return /obj/structure/urinal name = "urinal" diff --git a/code/game/turfs/simulated/wall_types_vr.dm b/code/game/turfs/simulated/wall_types_vr.dm index b25e6d6f9d..976fe96c8f 100644 --- a/code/game/turfs/simulated/wall_types_vr.dm +++ b/code/game/turfs/simulated/wall_types_vr.dm @@ -223,3 +223,17 @@ var/list/flesh_overlay_cache = list() /turf/simulated/wall/wood icon_state = "wood" icon = 'icons/turf/wall_masks_vr.dmi' + +/turf/simulated/wall/stonebricks + icon_state = "stonebrick" + icon = 'icons/turf/wall_masks_vr.dmi' + +/turf/simulated/wall/stonebricks/Initialize(mapload) + . = ..(mapload, "concrete") + +/turf/simulated/wall/stonelogs + icon_state = "stonelogs" + icon = 'icons/turf/wall_masks_vr.dmi' + +/turf/simulated/wall/stonelogs/Initialize(mapload) + . = ..(mapload, "concrete",MAT_LOG) \ No newline at end of file diff --git a/code/modules/awaymissions/redgate.dm b/code/modules/awaymissions/redgate.dm index e35eb541d9..9a49ede38d 100644 --- a/code/modules/awaymissions/redgate.dm +++ b/code/modules/awaymissions/redgate.dm @@ -889,3 +889,175 @@ /area/redgate/train/captain name = "Train Captain's Quarters" icon_state = "purple" + + +// fantasy areas + +/area/redgate/fantasy + name = "Fantasy" + icon_state = "red" + requires_power = 0 + +/area/redgate/fantasy/streets + name = "Fantasy outside" + icon_state = "red" + +/area/redgate/fantasy/tavern + name = "Fantasy tavern" + icon_state = "yellow" + +/area/redgate/fantasy/shop + name = "Fantasy shop" + icon_state = "yellow" + +/area/redgate/fantasy/alchemist + name = "Fantasy alchemist" + icon_state = "yellow" + +/area/redgate/fantasy/castle + name = "Fantasy castle" + icon_state = "yellow" + +/area/redgate/fantasy/blacksmith + name = "Fantasy blacksmith" + icon_state = "yellow" + +/area/redgate/fantasy/hedgemaze + name = "Fantasy hedgemaze" + icon_state = "green" + +/area/redgate/fantasy/butcher + name = "Fantasy butcher" + icon_state = "yellow" + +/area/redgate/fantasy/jewler + name = "Fantasy jewler" + icon_state = "yellow" + +/area/redgate/fantasy/restaurant + name = "Fantasy restaurant" + icon_state = "yellow" + +/area/redgate/fantasy/cafe + name = "Fantasy cafe" + icon_state = "yellow" + +/area/redgate/fantasy/house + name = "Fantasy house" + icon_state = "yellow" + +/area/redgate/fantasy/gambling + name = "Fantasy gambling den" + icon_state = "yellow" + +/area/redgate/fantasy/washhouse + name = "Fantasy wash house" + icon_state = "yellow" + +/area/redgate/fantasy/aliens + name = "Fantasy alien house" + icon_state = "purple" + +/area/redgate/fantasy/walls + name = "Fantasy green" + icon_state = "green" + +/area/redgate/fantasy/guardhouse + name = "Fantasy guard house" + icon_state = "yellow" + +/area/redgate/fantasy/mininghouse + name = "Fantasy mining house" + icon_state = "yellow" + +/area/redgate/fantasy/farmhouse + name = "Fantasy farm house" + icon_state = "yellow" + +/area/redgate/fantasy/church + name = "Fantasy church" + icon_state = "yellow" + +/area/redgate/fantasy/churchhouse + name = "Fantasy church house" + icon_state = "yellow" + +/area/redgate/fantasy/arena + name = "Fantasy arena" + icon_state = "yellow" + +/area/redgate/fantasy/redgate + name = "Fantasy redgate" + icon_state = "yellow" + +/area/redgate/fantasy/paladinhouse + name = "Fantasy paladin house" + icon_state = "yellow" + +/area/redgate/fantasy/druid + name = "Fantasy druid house" + icon_state = "yellow" + +/area/redgate/fantasy/bard + name = "Fantasy bard house" + icon_state = "yellow" + +/area/redgate/fantasy/rogue + name = "Fantasy rogue house" + icon_state = "yellow" + +/area/redgate/fantasy/grocery + name = "Fantasy grocery store" + icon_state = "yellow" + +/area/redgate/fantasy/bakery + name = "Fantasy bakery" + icon_state = "yellow" + +/area/redgate/fantasy/barbarian + name = "Fantasy barbarian house" + icon_state = "yellow" + +/area/redgate/fantasy/ranger + name = "Fantasy ranger house" + icon_state = "yellow" + +/area/redgate/fantasy/ratbasement + name = "Fantasy rat infested basement" + icon_state = "yellow" + +/area/redgate/fantasy/underground + name = "Fantasy underground" + icon_state = "red" + +/area/redgate/fantasy/dungeon + name = "Fantasy dungeon" + icon_state = "yellow" + +/area/redgate/fantasy/underwater + name = "Fantasy underwater" + icon_state = "bluenew" + +/area/redgate/fantasy/crypt + name = "Fantasy crypt" + icon_state = "green" + +/area/redgate/fantasy/caves + name = "Fantasy caves" + icon_state = "yellow" + +/area/redgate/fantasy/alienbasement + name = "Fantasy alien basement" + icon_state = "yellow" + +/area/redgate/fantasy/dark + name = "Fantasy dark" + icon_state = "green" + +/area/redgate/fantasy/mines + name = "Fantasy house" + icon_state = "green" + + + + diff --git a/code/modules/clothing/under/miscellaneous_vr.dm b/code/modules/clothing/under/miscellaneous_vr.dm index 9d4633bcf8..8c862dec8d 100644 --- a/code/modules/clothing/under/miscellaneous_vr.dm +++ b/code/modules/clothing/under/miscellaneous_vr.dm @@ -187,6 +187,12 @@ if(target_size < 0.1) target_size = 0.1 +/obj/item/clothing/gloves/bluespace/magic + name = "bracer of resilience" + desc = "A bracer that is said to make one resistent to size changing magic." + icon = 'icons/inventory/accessory/item_vr.dmi' + icon_state = "bs_magic" + //Same as Nanotrasen Security Uniforms /obj/item/clothing/under/ert armor = list(melee = 5, bullet = 10, laser = 10, energy = 5, bomb = 5, bio = 0, rad = 0) diff --git a/code/modules/food/glass/bottle_potion.dm b/code/modules/food/glass/bottle_potion.dm new file mode 100644 index 0000000000..486a2a158e --- /dev/null +++ b/code/modules/food/glass/bottle_potion.dm @@ -0,0 +1,151 @@ +/obj/item/weapon/reagent_containers/glass/bottle/potion + name = "healing potion" + desc = "A small green bottle containing some red liquid that claims to heal injuries." + icon = 'icons/obj/chemical.dmi' + icon_state = "bottle-5" + prefill = list("bicaridine" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/healing + +/obj/item/weapon/reagent_containers/glass/bottle/potion/greater_healing + name = "greater healing potion" + desc = "A small green bottle containing some thick red liquid that claims to rapidly heal injuries." + prefill = list("vermicetol" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/fire_resist + name = "fire resistance potion" + desc = "A small green bottle containing some orange liquid that claims to protect the drinker from fire." + prefill = list("dermaline" = 15, "kelotane" = 15) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/antidote + name = "antidote potion" + desc = "A small green bottle containing some green liquid that claims to cure poisoning." + prefill = list("anti_toxin" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/water + name = "water breathing potion" + desc = "A small green bottle containing some blue liquid that claims to allow the drinker to breathe under water." + prefill = list("dexalinp" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/regeneration + name = "regeneration potion" + desc = "A small green bottle containing some purple liquid that claims to regenerate severe wounds." + prefill = list("peridaxon" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/panacea + name = "panacea potion" + desc = "A small green bottle containing some white liquid that claims to cure all ailments." + prefill = list("spaceacillin" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/magic + name = "magic resistence potion" + desc = "A small green bottle containing some dark green liquid that claims to cure magical effects." + prefill = list("hyronalin" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/lightness + name = "feather weight potion" + desc = "A small green bottle containing some mysterious liquid that claims to make you feel lighter." + prefill = list("ickypak" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/SOP + name = "standard operating potion" + desc = "A small green bottle containing some yellow liquid that claims to be important." + prefill = list("myelamine" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/shrink + name = "diminution potion" + desc = "A small green bottle containing some swirling cyan liquid that claims to reduce the drinkers stature." + prefill = list("microcillin" = 1) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/growth + name = "fire giant potion" + desc = "A small green bottle containing some bubbling yellow liquid that claims to turn the drinker into a fire giant." + prefill = list("macrocillin" = 1, "capsaicin" = 5) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/pain + name = "grit potion" + desc = "A small green bottle containing some thin purple liquid that claims to power through even the most perilous injuries." + prefill = list("tramadol" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/faerie + name = "faerie dance potion" + desc = "A small green bottle containing some swishing pink liquid that claims to help you open your mind." + prefill = list("psilocybin" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/relaxation + name = "relaxation potion" + desc = "A small green bottle containing some still green liquid that claims to make everything feel just fine, really." + prefill = list("ambrosia_extract" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/speed + name = "blinding speed potion" + desc = "A small green bottle containing some bubbling orange liquid that claims to make you move at incredible speeds." + prefill = list("hyperzine" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/attractiveness + name = "love potion" + desc = "A small green bottle containing some light mint coloured liquid that claims to make you more attractive to potential partners." + prefill = list("menthol" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/girljuice + name = "girl transformation potion" + desc = "A small green bottle containing some pretty pink liquid that claims to turn the drinker into a woman." + prefill = list("gynorovir" = 1) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/boyjuice + name = "boy transformation potion" + desc = "A small green bottle containing some strong blue liquid that claims to turn the drinker into a man." + prefill = list("androrovir" = 1) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/badpolymorph + name = "unstable polymorph potion" + desc = "A small green bottle containing some uncomfortably green liquid that claims to transform the drinker wildly." + prefill = list("mutagen" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/bonerepair + name = "mending potion" + desc = "A small green bottle containing some pale blue liquid that claims to fix that which is broken." + prefill = list("osteodaxon" = 1) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/truepolymorph + name = "polymorph potion" + desc = "A small green bottle containing some strange purple liquid that claims to transform the drinker." + prefill = list("polymorph" = 1) + +//Failed potions + +/obj/item/weapon/reagent_containers/glass/bottle/potion/plain + name = "plain potion" + desc = "A small green bottle containing some plain transparent liquid." + prefill = list("water" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/ethanol + name = "thin potion" + desc = "A small green bottle containing some thin transparent liquid with a solvent scent." + prefill = list("ethanol" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/sugar + name = "sweet potion" + desc = "A small green bottle containing some white translucent liquid with a sweet scent." + prefill = list("sugar" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/capsaicin + name = "warm potion" + desc = "A small green bottle containing some red liquid." + prefill = list("capsaicin" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/soporific + name = "still potion" + desc = "A small green bottle containing some calm blue liquid." + prefill = list("stoxin" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/lipostipo + name = "thick potion" + desc = "A small green bottle containing some thick viscous liquid." + prefill = list("lipostipo" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/phoron + name = "volatile potion" + desc = "A small green bottle containing some volatile purple liquid." + prefill = list("phoron" = 10) + diff --git a/code/modules/food/kitchen/cooking_machines/oven.dm b/code/modules/food/kitchen/cooking_machines/oven.dm index bcebc851a0..45e6f20b40 100644 --- a/code/modules/food/kitchen/cooking_machines/oven.dm +++ b/code/modules/food/kitchen/cooking_machines/oven.dm @@ -153,3 +153,29 @@ return else ..() + +/obj/machinery/appliance/cooker/oven/yeoldoven + name = "oven" + desc = "Old fashioned cookies are ready, dear." + icon_state = "yeoldovenopen" + +/obj/machinery/appliance/cooker/oven/yeoldoven/update_icon() + if(!open) + if(!stat) + icon_state = "yeoldovenclosed_on" + if(cooking == TRUE) + icon_state = "yeoldovenclosed_cooking" + if(oven_loop) + oven_loop.start(src) + else + icon_state = "yeoldovenclosed_on" + if(oven_loop) + oven_loop.stop(src) + else + icon_state = "yeoldovenclosed_off" + if(oven_loop) + oven_loop.stop(src) + else + icon_state = "yeoldovenopen" + if(oven_loop) + oven_loop.stop(src) diff --git a/code/modules/food/kitchen/microwave.dm b/code/modules/food/kitchen/microwave.dm index dd30240eec..84bf690e2a 100644 --- a/code/modules/food/kitchen/microwave.dm +++ b/code/modules/food/kitchen/microwave.dm @@ -667,4 +667,205 @@ for(var/M in workingList) if(istype(M, circuit)) // Yes, we remove circuit twice. Yes, it's necessary. Yes, it's stupid. workingList -= M - return workingList \ No newline at end of file + return workingList + +/obj/machinery/microwave/cookingpot + name = "cooking pot" + icon_state = "cookingpot" + desc = "An old fashioned cooking pot above some logs." + +/obj/machinery/microwave/cookingpot/start() + src.visible_message("The cooking pot starts cooking.", "You hear a fire roar.") + src.operating = TRUE + src.icon_state = "cookingpot1" + SStgui.update_uis(src) + +/obj/machinery/microwave/cookingpot/abort() + operating = FALSE // Turn it off again aferwards + if(icon_state == "cookingpot1") + icon_state = "cookingpot" + SStgui.update_uis(src) + + +/obj/machinery/microwave/cookingpot/stop() + operating = FALSE // Turn it off again aferwards + if(icon_state == "cookingpot1") + icon_state = "cookingpot" + SStgui.update_uis(src) + +/obj/machinery/microwave/cookingpot/attackby(var/obj/item/O as obj, var/mob/user as mob) + if(src.broken > 0) + if(src.broken == 2 && O.is_screwdriver()) // If it's broken and they're using a screwdriver + user.visible_message( \ + "\The [user] starts to fix part of the cooking pot.", \ + "You start to fix part of the cooking pot." \ + ) + playsound(src, O.usesound, 50, 1) + if (do_after(user,20 * O.toolspeed)) + user.visible_message( \ + "\The [user] fixes part of the cooking pot.", \ + "You have fixed part of the cooking pot." \ + ) + src.broken = 1 // Fix it a bit + else if(src.broken == 1 && O.is_wrench()) // If it's broken and they're doing the wrench + user.visible_message( \ + "\The [user] starts to fix part of the cooking pot.", \ + "You start to fix part of the cooking pot." \ + ) + if (do_after(user,20 * O.toolspeed)) + user.visible_message( \ + "\The [user] fixes the cooking pot.", \ + "You have fixed the cooking pot." \ + ) + src.icon_state = "cookingpot" + src.broken = 0 // Fix it! + src.dirty = 0 // just to be sure + src.flags = OPENCONTAINER | NOREACT + else + to_chat(user, "It's broken!") + return 1 + + else if(src.dirty==100) // The microwave is all dirty so can't be used! + if(istype(O, /obj/item/weapon/reagent_containers/spray/cleaner) || istype(O, /obj/item/weapon/soap)) // If they're trying to clean it then let them + user.visible_message( \ + "\The [user] starts to clean the cooking pot.", \ + "You start to clean the cooking pot." \ + ) + if (do_after(user,20)) + user.visible_message( \ + "\The [user] has cleaned the cooking pot.", \ + "You have cleaned the cooking pot." \ + ) + src.dirty = 0 // It's clean! + src.broken = 0 // just to be sure + src.icon_state = "cookingpot" + src.flags = OPENCONTAINER | NOREACT + SStgui.update_uis(src) + else //Otherwise bad luck!! + to_chat(user, "It's dirty!") + return 1 + else if(is_type_in_list(O,acceptable_items)) + var/list/workingList = cookingContents() + if(workingList.len>=(max_n_of_items + circuit_item_capacity)) //Adds component_parts to the maximum number of items. changed 1 to actually just be the circuit item capacity var. + to_chat(user, "This [src] is full of ingredients, you cannot put more.") + return 1 + if(istype(O, /obj/item/stack) && O:get_amount() > 1) // This is bad, but I can't think of how to change it + var/obj/item/stack/S = O + new O.type (src) + S.use(1) + user.visible_message( \ + "\The [user] has added one of [O] to \the [src].", \ + "You add one of [O] to \the [src].") + return + else + // user.remove_from_mob(O) //This just causes problems so far as I can tell. -Pete - Man whoever you are, it's been years. o7 + user.drop_from_inventory(O,src) + user.visible_message( \ + "\The [user] has added \the [O] to \the [src].", \ + "You add \the [O] to \the [src].") + SStgui.update_uis(src) + return + else if (istype(O,/obj/item/weapon/storage/bag/plants)) // There might be a better way about making plant bags dump their contents into a microwave, but it works. + var/obj/item/weapon/storage/bag/plants/bag = O + var/failed = 1 + for(var/obj/item/G in O.contents) + if(!G.reagents || !G.reagents.total_volume) + continue + failed = 0 + if(contents.len>=(max_n_of_items + component_parts.len + circuit_item_capacity)) + to_chat(user, "This [src] is full of ingredients, you cannot put more.") + return 0 + else + bag.remove_from_storage(G, src) + contents += G + if(contents.len>=(max_n_of_items + component_parts.len + circuit_item_capacity)) + break + + if(failed) + to_chat(user, "Nothing in the plant bag is usable.") + return 0 + + if(!O.contents.len) + to_chat(user, "You empty \the [O] into \the [src].") + else + to_chat(user, "You fill \the [src] from \the [O].") + + SStgui.update_uis(src) + return 0 + + else if(istype(O,/obj/item/weapon/reagent_containers/glass) || \ + istype(O,/obj/item/weapon/reagent_containers/food/drinks) || \ + istype(O,/obj/item/weapon/reagent_containers/food/condiment) \ + ) + if (!O.reagents) + return 1 + for (var/datum/reagent/R in O.reagents.reagent_list) + if (!(R.id in acceptable_reagents)) + to_chat(user, "Your [O] contains components unsuitable for cookery.") + return 1 + return + else if(istype(O,/obj/item/weapon/grab)) + var/obj/item/weapon/grab/G = O + to_chat(user, "This is ridiculous. You can not fit \the [G.affecting] in this [src].") + return 1 + else if(O.is_screwdriver()) + default_deconstruction_screwdriver(user, O) + return + else if(O.is_crowbar()) + if(default_deconstruction_crowbar(user, O)) + return + else + user.visible_message( \ + "\The [user] begins [src.anchored ? "unsecuring" : "securing"] the cooking pot.", \ + "You attempt to [src.anchored ? "unsecure" : "secure"] the cooking pot." + ) + if (do_after(user,20/O.toolspeed)) + user.visible_message( \ + "\The [user] [src.anchored ? "unsecures" : "secures"] the cooking pot.", \ + "You [src.anchored ? "unsecure" : "secure"] the cooking pot." + ) + src.anchored = !src.anchored + else + to_chat(user, "You decide not to do that.") + else if(default_part_replacement(user, O)) + return + else if(istype(O, /obj/item/device/paicard)) + if(!paicard) + insertpai(user, O) + else + to_chat(user, "You have no idea what you can cook with this [O].") + ..() + SStgui.update_uis(src) + +/obj/machinery/microwave/cookingpot/broke() + src.icon_state = "cookingpotb" // Make it look all busted up and shit + src.visible_message("The cooking pot breaks!") //Let them know they're stupid + src.broken = 2 // Make it broken so it can't be used util fixed + src.flags = null //So you can't add condiments + src.operating = 0 // Turn it off again aferwards + SStgui.update_uis(src) + soundloop.stop() + src.ejectpai() // If it broke, time to yeet the PAI. + +/obj/machinery/microwave/cookingpot/dispose(var/message = 1) + for (var/atom/movable/A in cookingContents()) + A.forceMove(loc) + if (src.reagents.total_volume) + src.dirty++ + src.reagents.clear_reagents() + if(message) + to_chat(usr, "You dispose of the cooking pot contents.") + SStgui.update_uis(src) + +/obj/machinery/microwave/cookingpot/muck_start() + playsound(src, 'sound/effects/splat.ogg', 50, 1) // Play a splat sound + src.icon_state = "cookingpotbloody1" // Make it look dirty!! + +/obj/machinery/microwave/cookingpot/muck_finish() + src.visible_message("The cooking pot gets covered in muck!") + src.dirty = 100 // Make it dirty so it can't be used util cleaned + src.flags = null //So you can't add condiments + src.icon_state = "cookingpotbloody0" // Make it look dirty too + src.operating = 0 // Turn it off again aferwards + SStgui.update_uis(src) + soundloop.stop() diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm index 7ef5971f0f..ad2c558a73 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm @@ -954,6 +954,77 @@ /datum/say_list/catslug/custom/pilotslug speak = list("In the pipe, five my five.","Kick the tires and light the fires!","Bogeys on my tail!","GOOSE!","I'm really good at the stick.","I'm not doing nothing.","Heh.","Can you keep up?","Can't keep the sky from me.") +//Royal slug + +/mob/living/simple_mob/vore/alienanimals/catslug/custom/royalslug + name = "Ruler Purrton" + desc = "A golden-furred noodley bodied creature with thin arms and legs, and gloomy dark eyes. This one is adorned with a crown and red cloak, very fancy." + tt_desc = "Mollusca Felis Royallis" + icon_state = "catslugking" + icon_living = "catslugking" + icon_rest = "catslugking_rest" + icon_dead = "catslugking_dead" + catalogue_data = list(/datum/category_item/catalogue/fauna/catslug/custom/royalslug) + say_list_type = /datum/say_list/catslug/custom/royalslug + +/datum/category_item/catalogue/fauna/catslug/custom/royalslug + name = "Alien Wildlife - Catslug - Ruler Purrton" + desc = "Found in a castle beyond the redgate, Ruler Purrton\ + is a catslug who spends their days presiding over this low \ + technology town, living a life of luxury. Always seen with \ + their trademark crown and cloak, this litter critter seems \ + to just exude raw confidence and superiority. \ + \ + The Catslug is an omnivorous terrestrial creature.\ + Exhibiting properties of both a cat and a slug (hence its name)\ + it moves somewhat awkwardly. However, the unique qualities of\ + its body make it exceedingly flexible and smooth, allowing it to\ + wiggle into and move effectively in even extremely tight spaces.\ + Additionally, it has surprisingly capable hands, and moves quite\ + well on two legs or four. Caution is advised when interacting\ + with these creatures, they are quite intelligent, and proficient\ + tool users." + value = CATALOGUER_REWARD_TRIVIAL + +/datum/say_list/catslug/custom/royalslug + speak = list("Let them eat cake. Lots and lots of cake.", "Fetch my good cloak.", "I myself prefer my ancient eggs for breakfast!", "Have you come to pay tribute?", "How dare you intrude?", "Bring me the finest of fine finery.", "HARK!", "With great power comes great dinner.") + +//crypt slug + +/mob/living/simple_mob/vore/alienanimals/catslug/custom/cryptslug + name = "Keeper Sluguloth" + desc = "A dark-furred noodley bodied creature with thin arms and legs, and gloomy dark eyes. This one is adorned with a dark cloak that obscures most of it's body." + tt_desc = "Mollusca Felis Necrosis" + icon_state = "cryptslug" + icon_living = "cryptslug" + icon_rest = "cryptslug_rest" + icon_dead = "cryptslug_dead" + catalogue_data = list(/datum/category_item/catalogue/fauna/catslug/custom/cryptslug) + say_list_type = /datum/say_list/catslug/custom/cryptslug + +/datum/category_item/catalogue/fauna/catslug/custom/cryptslug + name = "Alien Wildlife - Catslug - Keeper Sluguloth" + desc = "Found in a deep beneath a town beyond the redgate, Sluguloth\ + is a catslug who spends their days lurking within dark dungeons \ + alongside monstrous beings of all sorts. Always seen within \ + their dark cloak, obscuring them, this litter critter seems \ + to just exude pure menance and up-to-no-goodness. \ + \ + The Catslug is an omnivorous terrestrial creature.\ + Exhibiting properties of both a cat and a slug (hence its name)\ + it moves somewhat awkwardly. However, the unique qualities of\ + its body make it exceedingly flexible and smooth, allowing it to\ + wiggle into and move effectively in even extremely tight spaces.\ + Additionally, it has surprisingly capable hands, and moves quite\ + well on two legs or four. Caution is advised when interacting\ + with these creatures, they are quite intelligent, and proficient\ + tool users." + value = CATALOGUER_REWARD_TRIVIAL + +/datum/say_list/catslug/custom/cryptslug + speak = list("I have a lot of nasty friends.", "Do not test me.", "I shall rise again!", "How dare you step foot in my domain?", "Dare you indluge in dark desires?", "I am become death, one day.", "Foul creature!", "I used to think my life was a tragedy, but now I realize it's kind of okay actually.") + + //============================= //Admin-spawn only catslugs end //============================= diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/bat.dm b/code/modules/mob/living/simple_mob/subtypes/vore/bat.dm new file mode 100644 index 0000000000..23ffa3d1b1 --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/vore/bat.dm @@ -0,0 +1,55 @@ +/mob/living/simple_mob/vore/bat + name = "giant bat" + desc = "Blimey, that's a big sky fox." + tt_desc = "Homo paramour" + + icon_state = "bat" + icon = 'icons/mob/vore.dmi' + + harm_intent_damage = 5 + melee_damage_lower = 2 + melee_damage_upper = 5 + + response_help = "nuzzles" + response_disarm = "flaps at" + response_harm = "bites" + + attacktext = list("bites","scratches") + + say_list_type = /datum/say_list/bat + ai_holder_type = /datum/ai_holder/simple_mob/retaliate + + faction = "vampire" + +// Activate Noms! +/mob/living/simple_mob/vore/bat + vore_active = 1 + vore_bump_chance = 50 + vore_pounce_chance = 50 + vore_standing_too = 1 + vore_ignores_undigestable = 0 + vore_default_mode = DM_DRAIN // They just want to drain you! + vore_digest_chance = 25 // But don't you dare try to escape... + vore_icons = SA_ICON_LIVING | SA_ICON_REST + +/datum/say_list/bat + speak = list("Chirp!") + emote_hear = list("chirps","pings","clicks") + emote_see = list("flaps","grooms itself") + +/mob/living/simple_mob/vore/bat/init_vore() + ..() + var/obj/belly/B = vore_selected + B.name = "stomach" + B.desc = "The giant bat has managed to swallow you alive, which is particularly impressive given that it's still a rather small creature. It's belly bulges out as you're squeezed into the oppressively tight stomach, and it lands to manage the weight, wings curling over your form beneath. The body groans under your strain, burbling and growling as it gets to work on it's feed. However, at least for now, it seems to do you no physical harm. Instead, the damp walls that squelch across your body try to leech out your energy through some less direct means." + B.mode_flags = DM_FLAG_THICKBELLY + B.belly_fullscreen = "yet_another_tumby" + B.digest_brute = 2 + B.digest_burn = 2 + B.digest_oxy = 1 + B.digestchance = 25 + B.absorbchance = 0 + B.escapechance = 15 + B.selective_preference = DM_DRAIN + B.escape_stun = 5 + diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/cryptdrake.dm b/code/modules/mob/living/simple_mob/subtypes/vore/cryptdrake.dm new file mode 100644 index 0000000000..2fb8d4cbb8 --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/vore/cryptdrake.dm @@ -0,0 +1,132 @@ +/mob/living/simple_mob/vore/cryptdrake + name = "crypt drake" + desc = "A massive drake-like creature with dark purple scales and a seemingly exposed skull." + catalogue_data = list(/datum/category_item/catalogue/fauna/greatwolf) + tt_desc = "Draconis necrotis" + icon = 'icons/mob/vore128x64.dmi' + icon_dead = "cryptdrake-dead" + icon_living = "cryptdrake" + icon_state = "cryptdrake" + icon_rest = "cryptdrake" + faction = "dragon" + old_x = -48 + old_y = 0 + vis_height = 92 + melee_damage_lower = 20 + melee_damage_upper = 15 + friendly = list("nudges", "sniffs on", "rumbles softly at", "nuzzles") + default_pixel_x = -48 + pixel_x = -48 + pixel_y = 0 + response_help = "bumps" + response_disarm = "shoves" + response_harm = "bites" + movement_cooldown = -1 + harm_intent_damage = 10 + melee_damage_lower = 10 + melee_damage_upper = 20 + maxHealth = 1000 + attacktext = list("mauled") + see_in_dark = 8 + minbodytemp = 0 + ai_holder_type = /datum/ai_holder/simple_mob/vore + max_buckled_mobs = 1 + mount_offset_y = 32 + mount_offset_x = -16 + can_buckle = TRUE + buckle_movable = TRUE + buckle_lying = FALSE + max_tox = 0 // immune to poison + + special_attack_min_range = 2 + special_attack_max_range = 4 + special_attack_cooldown = 30 SECONDS + + var/leap_warmup = 2 SECOND // How long the leap telegraphing is. + var/leap_sound = 'sound/weapons/spiderlunge.ogg' + +/mob/living/simple_mob/vore/cryptdrake + + vore_bump_chance = 25 + vore_digest_chance = 50 + vore_escape_chance = 5 + vore_pounce_chance = 100 + vore_active = 1 + vore_icons = 2 + vore_icons = SA_ICON_LIVING | SA_ICON_REST + vore_capacity = 2 + swallowTime = 50 + vore_ignores_undigestable = TRUE + vore_default_mode = DM_DIGEST + vore_pounce_maxhealth = 125 + vore_bump_emote = "tries to devour" + +/mob/living/simple_mob/vore/cryptdrake/Login() + . = ..() + if(!riding_datum) + riding_datum = new /datum/riding/simple_mob(src) + verbs |= /mob/living/simple_mob/proc/animal_mount + verbs |= /mob/living/proc/toggle_rider_reins + movement_cooldown = -1 + +/mob/living/simple_mob/vore/cryptdrake/init_vore() + . = ..() + var/obj/belly/B = vore_selected + B.name = "stomach" + B.desc = "The enormous beast snaps it's boney jaws around your form, effortlessly lifting you from the ground. Throwing it's head backwards, your body is tossed up momentarily as the maw parts wider, only for you to descend rapidly moments later. You're caught in the creature's throat for a moment, contracting dark purple flesh holding tightly onto you, there's no going back at this point. The peristaltic motions squeeze you down this tunnel towards your final destination, where you're soon relieved of the intense squelching to be pushed into a move flexible, stretching chamber. Immediately coated in caustic oozes, the world around you seems more than eager to ensure that you're soaked over every inch, wrinkled walls twisting and grinding around your body. The drake's stomach clenches and compresses over you rhythmically, attempting to eagerly add you to the soup of fluids that fill this sloshing gut. Omnipresent sounds of groaning, gurgling and burbling bodily functions signify just how active this process already is." + B.vore_sound = "Tauric Swallow" + B.release_sound = "Pred Escape" + B.mode_flags = DM_FLAG_THICKBELLY + B.fancy_vore = 1 + B.selective_preference = DM_DIGEST + B.vore_verb = "devour" + B.digest_brute = 3 + B.digest_burn = 2 + B.digest_oxy = 0 + B.digestchance = 50 + B.absorbchance = 0 + B.escapechance = 3 + B.escape_stun = 5 + B.contamination_color = "grey" + B.contamination_flavor = "Wet" + B.emote_lists[DM_DIGEST] = list( + "The drake growls in annoyance before clenching those wrinkled walls tight against your form, grinding away at you!", + "As the beast wanders about, you're forced to slip and slide around amidst a pool of thick digestive goop, sinking briefly into the thick, heavy walls!", + "You can barely hear the drake let out a pleased rumble as its stomach eagerly gurgles around its newfound meal!", + "As the thinning air begins to make you feel dizzy, menacing bworps and grumbles fill that dark, constantly shifting organ!", + "The constant, rhythmic kneading and massaging starts to take its toll along with the muggy heat, making you feel weaker and weaker!", + "The drake happily wanders around while digesting its meal, almost like it is trying to show off the hanging gut you've given it. Not like it made much of a difference on his already borderline obese form anyway~") + +/mob/living/simple_mob/vore/cryptdrake/do_special_attack(atom/A) //Mostly copied from hunter.dm + set waitfor = FALSE + if(!isliving(A)) + return FALSE + var/mob/living/L = A + if(!L.devourable || !L.allowmobvore || !L.can_be_drop_prey || !L.throw_vore || L.unacidable) + return FALSE + + set_AI_busy(TRUE) + visible_message(span("warning","\The [src]'s eyes flash ominously!")) + to_chat(L, span("danger","\The [src] focuses on you!")) + // Telegraph, since getting stunned suddenly feels bad. + do_windup_animation(A, leap_warmup) + sleep(leap_warmup) // For the telegraphing. + + if(L.z != z) //Make sure you haven't disappeared to somewhere we can't go + set_AI_busy(FALSE) + return FALSE + + // Do the actual leap. + status_flags |= LEAPING // Lets us pass over everything. + visible_message(span("critical","\The [src] leaps at \the [L]!")) + throw_at(get_step(L, get_turf(src)), special_attack_max_range+1, 1, src) + playsound(src, leap_sound, 75, 1) + + sleep(5) // For the throw to complete. It won't hold up the AI ticker due to waitfor being false. + + if(status_flags & LEAPING) + status_flags &= ~LEAPING // Revert special passage ability. + + set_AI_busy(FALSE) + if(Adjacent(L)) //We leapt at them but we didn't manage to hit them, let's see if we're next to them + L.Weaken(2) //get knocked down, idiot \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/peasant.dm b/code/modules/mob/living/simple_mob/subtypes/vore/peasant.dm new file mode 100644 index 0000000000..24d331a19f --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/vore/peasant.dm @@ -0,0 +1,72 @@ +/mob/living/simple_mob/vore/peasant + name = "peasant" + desc = "They're just about getting by." + tt_desc = "Homo Sapiens" + + icon_state = "peasantfa" + icon = 'icons/mob/vore.dmi' + + harm_intent_damage = 2 + melee_damage_lower = 1 + melee_damage_upper = 2 + + response_help = "pats" + response_disarm = "pushes" + response_harm = "punches" + + attacktext = list("punched","kicked") + + say_list_type = /datum/say_list/peasant + ai_holder_type = /datum/ai_holder/simple_mob/retaliate + + var/random_skin = 1 + var/list/skins = list( + "peasantfa", + "peasantfb", + "peasantfc", + "peasantma", + "peasantmb" + ) + + faction = "peasant" + +/mob/living/simple_mob/vore/peasant/New() + ..() + if(random_skin) + icon_living = pick(skins) + icon_rest = "[icon_living]asleep" + icon_dead = "[icon_living]-dead" + update_icon() + +// Activate Noms! +/mob/living/simple_mob/vore/peasant + vore_active = 1 + vore_bump_chance = 10 + vore_pounce_chance = 20 + vore_standing_too = 1 + vore_ignores_undigestable = 0 + vore_default_mode = DM_HOLD + vore_digest_chance = 25 // But don't you dare try to escape... + vore_icons = SA_ICON_LIVING | SA_ICON_REST + +/datum/say_list/peasant + speak = list("Fine day!","What was I doing again? Oh yeah, nothing.","How are ya?","I sure do love bread.","Where did I leave my scraps of cloth?","Sure is a good time to exist, I guess.") + emote_hear = list("yawns","'s stomach grumbles","shuffles") + emote_see = list("exists","just stands there","smiles","looks around") + +/mob/living/simple_mob/vore/peasant/init_vore() + ..() + var/obj/belly/B = vore_selected + B.name = "stomach" + B.desc = "You've somehow managed to get yourself eaten by one of the local peasants. After jamming you down into their stomach, you find yourself cramped up tight in a space that clearly shouldn't be able to accept you. They let out a relieved sigh as they heft around their new found weight, giving it a hearty pat, clearly content to get a good meal for once. The world around you groans and grumbles, but the gut is far from harmful to you right now, even as the walls clench down on your body." + B.mode_flags = DM_FLAG_THICKBELLY + B.belly_fullscreen = "yet_another_tumby" + B.digest_brute = 1 + B.digest_burn = 1 + B.digest_oxy = 0 + B.digestchance = 25 + B.absorbchance = 0 + B.escapechance = 15 + B.selective_preference = DM_HOLD + B.escape_stun = 5 + diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/succubi.dm b/code/modules/mob/living/simple_mob/subtypes/vore/succubi.dm new file mode 100644 index 0000000000..221c5b2278 --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/vore/succubi.dm @@ -0,0 +1,73 @@ +/mob/living/simple_mob/vore/succubus + name = "succubus" + desc = "She's giving you the 'come hither' look." + tt_desc = "Homo paramour" + + icon_state = "succubus" + icon = 'icons/mob/vore.dmi' + + harm_intent_damage = 5 + melee_damage_lower = 2 + melee_damage_upper = 5 + + response_help = "strokes" + response_disarm = "pushes" + response_harm = "bites" + + attacktext = list("swatted","bapped") + + say_list_type = /datum/say_list/succubus + ai_holder_type = /datum/ai_holder/simple_mob/retaliate + + var/random_skin = 1 + var/list/skins = list( + "succubus", + "succubusbob", + "succubusginger", + "succubusclothed", + "succubusbobclothed", + "succubusgingerclothed" + ) + + faction = "succubus" + +/mob/living/simple_mob/vore/succubus/New() + ..() + if(random_skin) + icon_living = pick(skins) + icon_rest = "[icon_living]asleep" + icon_dead = "[icon_living]-dead" + update_icon() + +// Activate Noms! +/mob/living/simple_mob/vore/succubus + vore_active = 1 + vore_bump_chance = 100 + vore_pounce_chance = 50 + vore_standing_too = 1 + vore_ignores_undigestable = 0 + vore_default_mode = DM_DRAIN // They just want to drain you! + vore_digest_chance = 25 // But don't you dare try to escape... + vore_icons = SA_ICON_LIVING | SA_ICON_REST + +/datum/say_list/succubus + speak = list("Come here cutie!","Let me get a good look at you!","Want to spend a little quality time together?","I don't bite. Much.","Like what you see?","Feel free to sample the goods.") + emote_hear = list("makes a kissing sound","giggles","lets out a needy whine") + emote_see = list("gestures for you to come over","winks","smiles","stretches") + +/mob/living/simple_mob/vore/succubus/init_vore() + ..() + var/obj/belly/B = vore_selected + B.name = "stomach" + B.desc = "You find yourself tightly compressed into the stomach of the succubus, with immense pressure squeezing down on you from every direction. The wrinkled walls of the gut knead over you, like a swelteringly hot, wet massage. You can feel movement from the outside, as though the demoness is running her hands over your form with delight. The world around you groans and gurgles, but the fluids that ooze into this place don't seem harmful, yet. Instead, you feel your very energy being steadily depleted, much to the joy of the woman who's claiming it all for herself." + B.mode_flags = DM_FLAG_THICKBELLY + B.belly_fullscreen = "yet_another_tumby" + B.digest_brute = 2 + B.digest_burn = 2 + B.digest_oxy = 1 + B.digestchance = 25 + B.absorbchance = 0 + B.escapechance = 15 + B.selective_preference = DM_DRAIN + B.escape_stun = 5 + diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/vampire.dm b/code/modules/mob/living/simple_mob/subtypes/vore/vampire.dm new file mode 100644 index 0000000000..603c27a8ba --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/vore/vampire.dm @@ -0,0 +1,85 @@ +/mob/living/simple_mob/vore/vampire + name = "vampire" + desc = "A large creature with a humanoid upperbody and more feral formed lower body, with four legs and two arms." + + icon_state = "count" + icon = 'icons/mob/vore.dmi' + + harm_intent_damage = 8 + melee_damage_lower = 3 + melee_damage_upper = 7 + + response_help = "caresses" + response_disarm = "wafts" + response_harm = "bites" + + attacktext = list("bites","sucks","drinks from") + + say_list_type = /datum/say_list/count + ai_holder_type = /datum/ai_holder/simple_mob/vore + + var/random_skin = 1 + var/list/skins = list( + "count", + "countess", + "countnude", + "countessnude" + ) + + faction = "vampire" + +/mob/living/simple_mob/vore/vampire/New() + ..() + if(random_skin) + icon_living = pick(skins) + icon_rest = "[icon_living]asleep" + icon_dead = "[icon_living]-dead" + update_icon() + +// Activate Noms! +/mob/living/simple_mob/vore/vampire + vore_active = 1 + vore_bump_chance = 10 + vore_pounce_chance = 50 + vore_standing_too = 1 + vore_ignores_undigestable = 0 + vore_default_mode = DM_DRAIN + vore_digest_chance = 25 + vore_icons = SA_ICON_LIVING | SA_ICON_REST + +/datum/say_list/count + speak = list("I vant to suck your-","I'm going to get a bite to drink.","All I have is time.","Your presence here is crypt-ic.","I like my coffee decoffinated.","There is bad blood between us.") + emote_hear = list("laughs maniacally","croans","hisses") + emote_see = list("wafts about","licks their lips","flaps a bit") + +/mob/living/simple_mob/vore/vampire/init_vore() + ..() + var/obj/belly/B = vore_selected + B.name = "stomach" + B.desc = "Having been rapidly gulped up by the vampire, you find yourself tightly contained with a set of groaning, wrinkled walls. It seems that the beast has decided against draining your lifeforce through you blood, and instead taking a more direct approach as it saps your strength from all around you. Your attacker seems content to just take that essence for now, but it is a gut afterall and struggling may set it off." + B.mode_flags = DM_FLAG_THICKBELLY + B.belly_fullscreen = "yet_another_tumby" + B.digest_brute = 3 + B.digest_burn = 0 + B.digest_oxy = 1 + B.digestchance = 25 + B.absorbchance = 0 + B.escapechance = 10 + B.selective_preference = DM_DRAIN + B.escape_stun = 5 + +/mob/living/simple_mob/vore/vampire/count + random_skin = 0 + icon_state = "count" + +/mob/living/simple_mob/vore/vampire/countess + random_skin = 0 + icon_state = "countess" + +/mob/living/simple_mob/vore/vampire/count_nude + random_skin = 0 + icon_state = "countnude" + +/mob/living/simple_mob/vore/vampire/countess_nude + random_skin = 0 + icon_state = "countessnude" diff --git a/code/modules/power/lighting_vr.dm b/code/modules/power/lighting_vr.dm index 8fe6a7452d..9b74578a1b 100644 --- a/code/modules/power/lighting_vr.dm +++ b/code/modules/power/lighting_vr.dm @@ -222,3 +222,27 @@ if(3) icon_state = "big_flamp-empty" */ + +/obj/item/weapon/light/bulb/torch + brightness_range = 6 + color = "#fabf87" + brightness_color = "#fabf87" + init_brightness_range = 6 + +/obj/machinery/light/small/torch + icon = 'icons/obj/lighting_vr.dmi' + name = "wall torch" + icon_state = "torch1" + base_state = "torch" + desc = "A small torch held in a wall sconce." + light_type = /obj/item/weapon/light/bulb/torch + shows_alerts = FALSE + anchored = TRUE + plane = ABOVE_MOB_PLANE + layer = ABOVE_MOB_LAYER + construct_type = null + overlay_color = LIGHT_COLOR_INCANDESCENT_BULB + overlay_above_everything = TRUE + +/obj/machinery/light/small/torch/attackby() + return diff --git a/code/modules/projectiles/guns/energy/bsharpoon_vr.dm b/code/modules/projectiles/guns/energy/bsharpoon_vr.dm index 5874f65640..51dded4153 100644 --- a/code/modules/projectiles/guns/energy/bsharpoon_vr.dm +++ b/code/modules/projectiles/guns/energy/bsharpoon_vr.dm @@ -232,3 +232,21 @@ flick("harpoon-1-change",src) icon_state = "harpoon-2" transforming = 0 + +/obj/item/weapon/bluespace_harpoon/wand + name = "teleportation wand" + desc = "An odd wand that weighs more than it looks like it should. It has a wire protruding from it and a glass-like tip, suggesting there may be more tech behind this than magic." + + icon = 'icons/obj/gun_vr.dmi' + icon_state = "harpoonwand-2" + +/obj/item/weapon/bluespace_harpoon/wand/update_icon() + if(transforming) + switch(mode) + if(0) + flick("harpoonwand-2-change", src) + icon_state = "harpoonwand-1" + if(1) + flick("harpoonwand-1-change",src) + icon_state = "harpoonwand-2" + transforming = 0 \ No newline at end of file diff --git a/code/modules/projectiles/guns/energy/stun.dm b/code/modules/projectiles/guns/energy/stun.dm index c5dd580c06..9fbf09c230 100644 --- a/code/modules/projectiles/guns/energy/stun.dm +++ b/code/modules/projectiles/guns/energy/stun.dm @@ -209,4 +209,15 @@ icon_state = "snubstunrevolver" item_state = "stunrevolver" w_class = ITEMSIZE_SMALL //small pistol is small - origin_tech = list(TECH_COMBAT = 3, TECH_MATERIAL = 3, TECH_POWER = 2) \ No newline at end of file + origin_tech = list(TECH_COMBAT = 3, TECH_MATERIAL = 3, TECH_POWER = 2) + +/* + * magic orb + */ + +/obj/item/weapon/gun/energy/taser/magic + name = "orb of lightning" + desc = "An orb filled with electrical energy, it looks oddly like a toy plasma orb..." + description_fluff = "" + icon_state = "orb" + diff --git a/code/modules/reagents/machinery/alembic.dm b/code/modules/reagents/machinery/alembic.dm new file mode 100644 index 0000000000..80096bc275 --- /dev/null +++ b/code/modules/reagents/machinery/alembic.dm @@ -0,0 +1,312 @@ +/obj/machinery/alembic + name = "Alembic" + desc = "A piece of glass chemical apparatus that is used to distill and concentrate chemicals." + icon = 'icons/obj/chemical.dmi' + icon_state = "alembic" + use_power = FALSE + anchored = TRUE + density = FALSE + layer = ABOVE_WINDOW_LAYER + vis_flags = VIS_HIDE + unacidable = TRUE + clicksound = "button" + clickvol = 60 + + var/potion_reagent = 0 + var/bubbling = 0 + var/base_reagent = 0 + var/product_potion = 0 + var/expected_base = 0 + +/obj/machinery/alembic/update_icon() + if(potion_reagent == 0 && base_reagent == 0) //Empty + icon_state = "alembic" + else if(potion_reagent != 0 && base_reagent == 0) //Has potion reagent but not base + icon_state = "alembic-base" + else if(potion_reagent == 0 && base_reagent != 0) //Has a base but no reagent + icon_state = "alembic-base" + else if(potion_reagent != 0 && base_reagent != 0 && !bubbling ) //Has a reagent but is not turned on + icon_state = "alembic-full" + else if(bubbling == 1) //is actively bubbling + icon_state = "alembic-bubble" + return + +/obj/machinery/alembic/attackby(var/obj/item/weapon/potion_material/O as obj, var/mob/user as mob) + if(istype(O,/obj/item/weapon/potion_material)) + if(potion_reagent != 0 ) + to_chat(user, SPAN_WARNING("There is already a reagent in the alembic!")) + return + else + src.potion_reagent = O + src.expected_base = O.base_reagent + src.product_potion = O.product_potion + user.drop_item() + O.loc = src + update_icon() + to_chat(user, SPAN_NOTICE("You place the [O] in the alembic.")) + src.updateUsrDialog() + return + else if(istype(O,/obj/item/weapon/potion_base)) + if(base_reagent != 0 ) + to_chat(user, SPAN_WARNING("There is already a base in the alembic!")) + return + else + src.base_reagent = O + user.drop_item() + O.loc = src + update_icon() + to_chat(user, SPAN_NOTICE("You place the [O] in the alembic.")) + src.updateUsrDialog() + return + else + to_chat(user, SPAN_WARNING("This item is no use in the alembic.")) + return + +/obj/machinery/alembic/attack_hand(mob/user as mob) + + if(potion_reagent == 0 || base_reagent == 0) //If there is nothing in there + to_chat(user, SPAN_WARNING("The alembic is not yet full!")) + return + else if(potion_reagent != 0 && base_reagent != 0 && !bubbling) //if there is something in there and it's not bubbling yet + bubbling = 1 + update_icon() + to_chat(user, SPAN_NOTICE("The alembic begins boiling the [potion_reagent] in the [base_reagent].")) + sleep 30 + bubbling = 0 + to_chat(user, SPAN_NOTICE("The alembic finishes brewing the potion!")) + spawn_potion() + potion_reagent = 0 + base_reagent = 0 + update_icon() + return + else if(bubbling) + to_chat(user, SPAN_WARNING("The alembic is already boiling!")) + return + +/obj/machinery/alembic/AltClick(mob/user) + if(potion_reagent == 0) + to_chat(user, SPAN_WARNING("There is nothing in the alembic!")) + return + else if(potion_reagent != 0 && !bubbling) //if there is something in there and it's not bubbling yet + if(!user.incapacitated() && Adjacent(user)) + user.put_in_hands(potion_reagent) + potion_reagent = 0 + update_icon() + else + return + else if(bubbling) + to_chat(user, SPAN_WARNING("The alembic is already boiling, it's too late to get your reagent back!")) + return + +/obj/machinery/alembic/proc/spawn_potion() + if(istype(base_reagent,expected_base)) + new product_potion(loc) + else + var/failed_product = pick(/obj/item/weapon/reagent_containers/glass/bottle/potion/plain, + /obj/item/weapon/reagent_containers/glass/bottle/potion/ethanol, + /obj/item/weapon/reagent_containers/glass/bottle/potion/sugar, + /obj/item/weapon/reagent_containers/glass/bottle/potion/capsaicin, + /obj/item/weapon/reagent_containers/glass/bottle/potion/soporific, + /obj/item/weapon/reagent_containers/glass/bottle/potion/lipostipo, + /obj/item/weapon/reagent_containers/glass/bottle/potion/phoron) + new failed_product(loc) + +//The actual ingredients! + +/obj/item/weapon/potion_material + name = "blood ruby" + desc = "An extremely hard but oddly brittle gem with a beautiful red colouration." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "blood_ruby" + var/base_reagent = /obj/item/weapon/potion_base/ichor + var/product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/healing + +/obj/item/weapon/potion_material/blood_ruby + +/obj/item/weapon/potion_material/ruby_eye + name = "ruby eye" + desc = "An odd gem in the shape of an eye, it has a strange static charge to the surface." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "ruby_eye" + base_reagent = /obj/item/weapon/potion_base/ichor + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/greater_healing + +/obj/item/weapon/potion_material/golden_scale + name = "golden scale" + desc = "A reptilian scale with an almost metalic texture and a shining gold surface." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "golden_scale" + base_reagent = /obj/item/weapon/potion_base/alkahest + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/fire_resist + +/obj/item/weapon/potion_material/frozen_dew + name = "frozen dew" + desc = "A bitter leaf with a small droplet of crystalised dew attached to it." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "frozen_dew" + base_reagent = /obj/item/weapon/potion_base/ichor + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/antidote + +/obj/item/weapon/potion_material/living_coral + name = "living coral" + desc = "Some coral that appears to be friving outside of the water, it has an oddly metallic scent." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "living_coral" + base_reagent = /obj/item/weapon/potion_base/aqua_regia + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/water + +/obj/item/weapon/potion_material/rare_horn + name = "rare horn" + desc = "A sharp, straight horn from some unknown animal." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "rare_horn" + base_reagent = /obj/item/weapon/potion_base/alkahest + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/regeneration + +/obj/item/weapon/potion_material/moldy_bread + name = "moldy bread" + desc = "A slice of bread that's clearly been left out for far too long." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "moldy_bread" + base_reagent = /obj/item/weapon/potion_base/aqua_regia + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/panacea + +/obj/item/weapon/potion_material/glowing_gem + name = "glowing gem" + desc = "An pretty but rough gem that is literally glowing green, it tingles to touch." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "glowing_gem" + base_reagent = /obj/item/weapon/potion_base/alkahest + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/magic + +/obj/item/weapon/potion_material/giant_toe + name = "giant toe" + desc = "One really large severed toe, in some state of suspended decomposition. It's gross and stinks." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "giant_toe" + base_reagent = /obj/item/weapon/potion_base/aqua_regia + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/lightness + +/obj/item/weapon/potion_material/flesh_of_the_stars + name = "flesh of the stars" + desc = "A rare slab of meat with an unknown origin, said to have fallen from the sky." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "flesh_of_the_stars" + base_reagent = /obj/item/weapon/potion_base/aqua_regia + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/bonerepair + +/obj/item/weapon/potion_material/spinning_poppy + name = "spinning poppy" + desc = "A small poppy flower that seems inclined to twirl without aid." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "spinning_poppy" + base_reagent = /obj/item/weapon/potion_base/aqua_regia + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/pain + +/obj/item/weapon/potion_material/salt_mage + name = "salt mage" + desc = "A statuette made from salt crystals, it's adorned with a little mages hat." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "salt_mage" + base_reagent = /obj/item/weapon/potion_base/alkahest + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/shrink + +/obj/item/weapon/potion_material/golden_grapes + name = "golden grapes" + desc = "A bunch of grapes with a shining golden skin, they smell strongly of some sort of solvent." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "golden_grapes" + base_reagent = /obj/item/weapon/potion_base/alkahest + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/growth + +/obj/item/weapon/potion_material/fairy_house + name = "fairy house" + desc = "A moderately large mushroom with a speckled red cap and... a door on the front?" + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "fairy_house" + base_reagent = /obj/item/weapon/potion_base/ichor + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/faerie + +/obj/item/weapon/potion_material/thorny_bulb + name = "thorny bulb" + desc = "A flesh green plant bulb covered in thorns, it has a sulfur rich aroma." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "thorny_bulb" + base_reagent = /obj/item/weapon/potion_base/aqua_regia + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/relaxation + +/obj/item/weapon/potion_material/ancient_egg + name = "ancient egg" + desc = "An egg, but seemingly really really old and long past rotten." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "ancient_egg" + base_reagent = /obj/item/weapon/potion_base/aqua_regia + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/speed + +/obj/item/weapon/potion_material/crown_stem + name = "crown stem" + desc = "An odd little flower that looks like a crown, the leaves have a minty aroma." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "crown_stem" + base_reagent = /obj/item/weapon/potion_base/alkahest + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/attractiveness + +/obj/item/weapon/potion_material/red_ingot + name = "red ingot" + desc = "An oddly red coloured block of iron, it seems rather brittle and wouldn't make for a good smithing material." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "red_ingot" + base_reagent = /obj/item/weapon/potion_base/alkahest + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/boyjuice + +/obj/item/weapon/potion_material/soft_diamond + name = "soft diamond" + desc = "A gem that looks much like a diamond, but is squishy to the touch." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "soft_diamond" + base_reagent = /obj/item/weapon/potion_base/ichor + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/girljuice + +/obj/item/weapon/potion_material/solid_mist + name = "solid mist" + desc = "A small purple stone that seems to be radiating some sort of mist." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "solid_mist" + base_reagent = /obj/item/weapon/potion_base/ichor + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/badpolymorph + +/obj/item/weapon/potion_material/spider_leg + name = "spider leg" + desc = "A severed limb from a spider, it seems to be oozing with green... something." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "spider_leg" + base_reagent = /obj/item/weapon/potion_base/aqua_regia + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/SOP + +/obj/item/weapon/potion_material/folded_dark + name = "folded dark" + desc = "A folded material that appears to be made of pure dark." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "folded_dark" + base_reagent = /obj/item/weapon/potion_base/ichor + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/truepolymorph + +//base ingredients + +/obj/item/weapon/potion_base/aqua_regia + name = "aqua regia" + desc = "A mixture of concentrated acids, be careful not to spill it! A base ingredient of many potions." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "aqua_regia" + +/obj/item/weapon/potion_base/ichor + name = "ichor" + desc = "A thick and heavy red reagent said to be tinged with the blood of gods. A base ingredient of many potions." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "ichor" + +/obj/item/weapon/potion_base/alkahest + name = "alkahest" + desc = "Also known as the universal solvent, said to be capable of dissolving metal rapidly. A base ingredient of many potions." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "alkahest" diff --git a/code/modules/reagents/machinery/dispenser/dispenser_presets.dm b/code/modules/reagents/machinery/dispenser/dispenser_presets.dm index 916c506a2e..40039f29d3 100644 --- a/code/modules/reagents/machinery/dispenser/dispenser_presets.dm +++ b/code/modules/reagents/machinery/dispenser/dispenser_presets.dm @@ -148,3 +148,33 @@ /obj/item/weapon/reagent_containers/chem_disp_cartridge/chaitea, /obj/item/weapon/reagent_containers/chem_disp_cartridge/decafchai ) + +/obj/machinery/chemical_dispenser/kettle //reskin of coffee dispenser + name = "kettle" + desc = "A kettle used for making hot drinks." + icon_state = "kettle" + ui_title = "kettle" + accept_drinking = 1 + +/obj/machinery/chemical_dispenser/kettle/full + spawn_cartridges = list( + /obj/item/weapon/reagent_containers/chem_disp_cartridge/coffee, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/cafe_latte, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/soy_latte, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/hot_coco, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/milk, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/cream, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/sugar, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/tea, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/ice, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/mint, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/orange, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/lemon, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/lime, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/berry, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/greentea, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/decaf, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/chaitea, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/decafchai + ) + diff --git a/code/modules/reagents/machinery/dispenser/reagent_tank.dm b/code/modules/reagents/machinery/dispenser/reagent_tank.dm index df1af4cfd8..c089c4c604 100644 --- a/code/modules/reagents/machinery/dispenser/reagent_tank.dm +++ b/code/modules/reagents/machinery/dispenser/reagent_tank.dm @@ -103,6 +103,11 @@ . = ..() reagents.add_reagent("water", 4000) +/obj/structure/reagent_dispensers/watertank/barrel + name = "water barrel" + desc = "A barrel for holding water." + icon_state = "waterbarrel" + //Fuel /obj/structure/reagent_dispensers/fueltank name = "fuel tank" @@ -463,6 +468,20 @@ . = ..() reagents.add_reagent("beer",1000) +/obj/structure/reagent_dispensers/beerkeg/wood + name = "beer keg" + desc = "A beer keg with a tap on it." + icon_state = "beertankfantasy" + +/obj/structure/reagent_dispensers/beerkeg/wine + name = "wine barrel" + desc = "A wine casket with a tap on it." + icon_state = "beertankfantasy" + +/obj/structure/reagent_dispensers/beerkeg/wine/Initialize() + . = ..() + reagents.add_reagent("redwine",1000) + /obj/structure/reagent_dispensers/beerkeg/fakenuke name = "nuclear beer keg" desc = "A beer keg in the form of a nuclear bomb! An absolute blast at parties!" @@ -492,3 +511,15 @@ reagents.splash_area(get_turf(src), 3) visible_message(span("danger", "The [src] bursts open, spreading oil all over the area.")) qdel(src) + +/obj/structure/reagent_dispensers/bloodbarrel + name = "blood barrel" + desc = "A beer keg." + icon = 'icons/obj/chemical_tanks.dmi' + icon_state = "bloodbarrel" + amount_per_transfer_from_this = 10 + +/obj/structure/reagent_dispensers/bloodbarrel/Initialize() + . = ..() + reagents.add_reagent("blood", 1000, list("donor"=null,"viruses"=null,"blood_DNA"=null,"blood_type"="O-","resistances"=null,"trace_chem"=null)) + diff --git a/code/modules/reagents/reagent_containers/glass.dm b/code/modules/reagents/reagent_containers/glass.dm index e902c81a86..064b110c82 100644 --- a/code/modules/reagents/reagent_containers/glass.dm +++ b/code/modules/reagents/reagent_containers/glass.dm @@ -377,3 +377,12 @@ amount_per_transfer_from_this = 20 possible_transfer_amounts = list(10,20,30,60,120) volume = 120 + +/obj/item/weapon/reagent_containers/glass/pint_mug + desc = "A rustic pint mug designed for drinking ale." + name = "pint mug" + icon = 'icons/obj/drinks.dmi' + icon_state = "pint_mug" + matter = list(MAT_WOOD = 50) + drop_sound = 'sound/items/drop/wooden.ogg' + pickup_sound = 'sound/items/pickup/wooden.ogg' diff --git a/code/modules/reagents/reagents/medicine_vr.dm b/code/modules/reagents/reagents/medicine_vr.dm index f862990bbc..4edc2ecdbb 100644 --- a/code/modules/reagents/reagents/medicine_vr.dm +++ b/code/modules/reagents/reagents/medicine_vr.dm @@ -139,3 +139,177 @@ M.adjust_nutrition(-20 * removed) if(M.weight < 500) M.weight += 0.3 + +/datum/reagent/polymorph + name = "Transforitine" + id = "polymorph" + description = "A chemical that instantly transforms the consumer into another creature." + taste_description = "luck" + reagent_state = LIQUID + color = "#a754de" + scannable = 1 + var/tf_type = /mob/living/simple_mob/animal/passive/mouse + var/tf_possible_types = list( + "mouse" = /mob/living/simple_mob/animal/passive/mouse, + "rat" = /mob/living/simple_mob/animal/passive/mouse/rat, + "giant rat" = /mob/living/simple_mob/vore/aggressive/rat, + "dust jumper" = /mob/living/simple_mob/vore/alienanimals/dustjumper, + "woof" = /mob/living/simple_mob/vore/woof, + "corgi" = /mob/living/simple_mob/animal/passive/dog/corgi, + "cat" = /mob/living/simple_mob/animal/passive/cat, + "chicken" = /mob/living/simple_mob/animal/passive/chicken, + "cow" = /mob/living/simple_mob/animal/passive/cow, + "lizard" = /mob/living/simple_mob/animal/passive/lizard, + "rabbit" = /mob/living/simple_mob/vore/rabbit, + "fox" = /mob/living/simple_mob/animal/passive/fox, + "fennec" = /mob/living/simple_mob/vore/fennec, + "cute fennec" = /mob/living/simple_mob/animal/passive/fennec, + "fennix" = /mob/living/simple_mob/vore/fennix, + "red panda" = /mob/living/simple_mob/vore/redpanda, + "opossum" = /mob/living/simple_mob/animal/passive/opossum, + "horse" = /mob/living/simple_mob/vore/horse, + "goose" = /mob/living/simple_mob/animal/space/goose, + "sheep" = /mob/living/simple_mob/vore/sheep, + "space bumblebee" = /mob/living/simple_mob/vore/bee, + "space bear" = /mob/living/simple_mob/animal/space/bear, + "voracious lizard" = /mob/living/simple_mob/vore/aggressive/dino, + "giant frog" = /mob/living/simple_mob/vore/aggressive/frog, + "jelly blob" = /mob/living/simple_mob/vore/jelly, + "wolf" = /mob/living/simple_mob/vore/wolf, + "direwolf" = /mob/living/simple_mob/vore/wolf/direwolf, + "great wolf" = /mob/living/simple_mob/vore/greatwolf, + "sect queen" = /mob/living/simple_mob/vore/sect_queen, + "sect drone" = /mob/living/simple_mob/vore/sect_drone, + "panther" = /mob/living/simple_mob/vore/aggressive/panther, + "giant snake" = /mob/living/simple_mob/vore/aggressive/giant_snake, + "deathclaw" = /mob/living/simple_mob/vore/aggressive/deathclaw, + "otie" = /mob/living/simple_mob/vore/otie, + "mutated otie" =/mob/living/simple_mob/vore/otie/feral, + "red otie" = /mob/living/simple_mob/vore/otie/red, + "defanged xenomorph" = /mob/living/simple_mob/vore/xeno_defanged, + "catslug" = /mob/living/simple_mob/vore/alienanimals/catslug, + "monkey" = /mob/living/carbon/human/monkey, + "wolpin" = /mob/living/carbon/human/wolpin, + "sparra" = /mob/living/carbon/human/sparram, + "saru" = /mob/living/carbon/human/sergallingm, + "sobaka" = /mob/living/carbon/human/sharkm, + "farwa" = /mob/living/carbon/human/farwa, + "neaera" = /mob/living/carbon/human/neaera, + "stok" = /mob/living/carbon/human/stok, + "weretiger" = /mob/living/simple_mob/vore/weretiger, + "dragon" = /mob/living/simple_mob/vore/bigdragon/friendly, + "leopardmander" = /mob/living/simple_mob/vore/leopardmander + ) + +/datum/reagent/polymorph/affect_blood(var/mob/living/carbon/target, var/removed) + var/mob/living/M = target + log_debug("polymorph start") + if(!istype(M)) + log_debug("polymorph istype") + return + if(M.tf_mob_holder) + log_debug("polymorph tf_holder") + var/mob/living/ourmob = M.tf_mob_holder + if(ourmob.ai_holder) + log_debug("polymorph ai") + var/datum/ai_holder/our_AI = ourmob.ai_holder + our_AI.set_stance(STANCE_IDLE) + M.tf_mob_holder = null + ourmob.ckey = M.ckey + var/turf/get_dat_turf = get_turf(target) + ourmob.loc = get_dat_turf + ourmob.forceMove(get_dat_turf) + ourmob.vore_selected = M.vore_selected + M.vore_selected = null + for(var/obj/belly/B as anything in M.vore_organs) + log_debug("polymorph belly") + B.loc = ourmob + B.forceMove(ourmob) + B.owner = ourmob + M.vore_organs -= B + ourmob.vore_organs += B + + ourmob.Life(1) + if(ishuman(M)) + log_debug("polymorph human") + for(var/obj/item/W in M) + log_debug("polymorph items") + if(istype(W, /obj/item/weapon/implant/backup) || istype(W, /obj/item/device/nif)) + log_debug("polymorph implants") + continue + M.drop_from_inventory(W) + + qdel(target) + return + else + log_debug("polymorph else") + if(M.stat == DEAD) //We can let it undo the TF, because the person will be dead, but otherwise things get weird. + log_debug("polymorph dead") + return + log_debug("polymorph not dead") + var/mob/living/new_mob = spawn_mob(M) + new_mob.faction = M.faction + + if(new_mob && isliving(new_mob)) + log_debug("polymorph new_mob") + for(var/obj/belly/B as anything in new_mob.vore_organs) + log_debug("polymorph new_mob belly") + new_mob.vore_organs -= B + qdel(B) + new_mob.vore_organs = list() + new_mob.name = M.name + new_mob.real_name = M.real_name + for(var/lang in M.languages) + new_mob.languages |= lang + M.copy_vore_prefs_to_mob(new_mob) + new_mob.vore_selected = M.vore_selected + if(ishuman(M)) + log_debug("polymorph ishuman part2") + var/mob/living/carbon/human/H = M + if(ishuman(new_mob)) + log_debug("polymorph ishuman(newmob)") + var/mob/living/carbon/human/N = new_mob + N.gender = H.gender + N.identifying_gender = H.identifying_gender + else + log_debug("polymorph gender else") + new_mob.gender = H.gender + else + log_debug("polymorph gender else 2") + new_mob.gender = M.gender + if(ishuman(new_mob)) + var/mob/living/carbon/human/N = new_mob + N.identifying_gender = M.gender + + for(var/obj/belly/B as anything in M.vore_organs) + B.loc = new_mob + B.forceMove(new_mob) + B.owner = new_mob + M.vore_organs -= B + new_mob.vore_organs += B + + new_mob.ckey = M.ckey + if(M.ai_holder && new_mob.ai_holder) + var/datum/ai_holder/old_AI = M.ai_holder + old_AI.set_stance(STANCE_SLEEP) + var/datum/ai_holder/new_AI = new_mob.ai_holder + new_AI.hostile = old_AI.hostile + new_AI.retaliate = old_AI.retaliate + M.loc = new_mob + M.forceMove(new_mob) + new_mob.tf_mob_holder = M + target.bloodstr.clear_reagents() //Got to clear all reagents to make sure mobs don't keep spawning. + target.ingested.clear_reagents() + target.touching.clear_reagents() + +/datum/reagent/polymorph/proc/spawn_mob(var/mob/living/target) + log_debug("polymorph proc spawn mob") + var/choice = pick(tf_possible_types) + tf_type = tf_possible_types[choice] + log_debug("polymorph [tf_type]") + if(!ispath(tf_type)) + log_debug("polymorph tf_type fail") + return + log_debug("polymorph tf_type pass") + var/new_mob = new tf_type(get_turf(target)) + return new_mob diff --git a/code/modules/vore/resizing/sizegun_slow_vr.dm b/code/modules/vore/resizing/sizegun_slow_vr.dm index d6edc19361..777e42a342 100644 --- a/code/modules/vore/resizing/sizegun_slow_vr.dm +++ b/code/modules/vore/resizing/sizegun_slow_vr.dm @@ -218,4 +218,11 @@ /obj/item/device/slow_sizegun/proc/color_box(list/box_segments, new_color, new_time) for(var/i in box_segments) - animate(i, color = new_color, time = new_time) \ No newline at end of file + animate(i, color = new_color, time = new_time) + +/obj/item/device/slow_sizegun/magic + name = "wand of growth and shrinking" + desc = "A wand said to be able to shrink or grow it's targets, it's encrusted with glowing gems and a... trigger?" + icon = 'icons/obj/gun_vr.dmi' + icon_state = "sizegun-magic-0" + base_icon_state = "sizegun-magic" diff --git a/icons/inventory/accessory/item_vr.dmi b/icons/inventory/accessory/item_vr.dmi index 67c951fb06..de59e5e17d 100644 Binary files a/icons/inventory/accessory/item_vr.dmi and b/icons/inventory/accessory/item_vr.dmi differ diff --git a/icons/misc/random_spawners.dmi b/icons/misc/random_spawners.dmi index 851218e6e3..e4b5b25085 100644 Binary files a/icons/misc/random_spawners.dmi and b/icons/misc/random_spawners.dmi differ diff --git a/icons/mob/alienanimals_x32.dmi b/icons/mob/alienanimals_x32.dmi index 16dffa37a3..f118a398d6 100644 Binary files a/icons/mob/alienanimals_x32.dmi and b/icons/mob/alienanimals_x32.dmi differ diff --git a/icons/mob/vore.dmi b/icons/mob/vore.dmi index ce831269b9..4c1ec088ac 100644 Binary files a/icons/mob/vore.dmi and b/icons/mob/vore.dmi differ diff --git a/icons/mob/vore128x64.dmi b/icons/mob/vore128x64.dmi index a8422c16bd..ef728e2a19 100644 Binary files a/icons/mob/vore128x64.dmi and b/icons/mob/vore128x64.dmi differ diff --git a/icons/obj/abductor.dmi b/icons/obj/abductor.dmi index e5ffc375a3..226e2abd63 100644 Binary files a/icons/obj/abductor.dmi and b/icons/obj/abductor.dmi differ diff --git a/icons/obj/chemical.dmi b/icons/obj/chemical.dmi index b904a5c2dc..2dbb310fde 100644 Binary files a/icons/obj/chemical.dmi and b/icons/obj/chemical.dmi differ diff --git a/icons/obj/chemical_potionreagents.dmi b/icons/obj/chemical_potionreagents.dmi new file mode 100644 index 0000000000..d9da43bf29 Binary files /dev/null and b/icons/obj/chemical_potionreagents.dmi differ diff --git a/icons/obj/chemical_tanks.dmi b/icons/obj/chemical_tanks.dmi index 2775483204..a172c575ee 100644 Binary files a/icons/obj/chemical_tanks.dmi and b/icons/obj/chemical_tanks.dmi differ diff --git a/icons/obj/closets/chest.dmi b/icons/obj/closets/chest.dmi new file mode 100644 index 0000000000..66e51b7d9d Binary files /dev/null and b/icons/obj/closets/chest.dmi differ diff --git a/icons/obj/cooking_machines.dmi b/icons/obj/cooking_machines.dmi index b8c3ea6f5d..3f6623cbd4 100644 Binary files a/icons/obj/cooking_machines.dmi and b/icons/obj/cooking_machines.dmi differ diff --git a/icons/obj/device.dmi b/icons/obj/device.dmi index 35911a76e8..6e3cd24503 100644 Binary files a/icons/obj/device.dmi and b/icons/obj/device.dmi differ diff --git a/icons/obj/drinks.dmi b/icons/obj/drinks.dmi index 3cc43086bb..be1c3a8172 100644 Binary files a/icons/obj/drinks.dmi and b/icons/obj/drinks.dmi differ diff --git a/icons/obj/fence.dmi b/icons/obj/fence.dmi index 31b1abef3c..0d8bc382db 100644 Binary files a/icons/obj/fence.dmi and b/icons/obj/fence.dmi differ diff --git a/icons/obj/furniture.dmi b/icons/obj/furniture.dmi index 485cc6a46e..6df4edab48 100644 Binary files a/icons/obj/furniture.dmi and b/icons/obj/furniture.dmi differ diff --git a/icons/obj/gun.dmi b/icons/obj/gun.dmi index a807f04c9a..f59d1369e1 100644 Binary files a/icons/obj/gun.dmi and b/icons/obj/gun.dmi differ diff --git a/icons/obj/gun_vr.dmi b/icons/obj/gun_vr.dmi index 538ff61b76..87369e81ea 100644 Binary files a/icons/obj/gun_vr.dmi and b/icons/obj/gun_vr.dmi differ diff --git a/icons/obj/kitchen.dmi b/icons/obj/kitchen.dmi index eda319d76b..d1162bad55 100644 Binary files a/icons/obj/kitchen.dmi and b/icons/obj/kitchen.dmi differ diff --git a/icons/obj/lighting_vr.dmi b/icons/obj/lighting_vr.dmi index 5af18932e8..5ecb4ac4e1 100644 Binary files a/icons/obj/lighting_vr.dmi and b/icons/obj/lighting_vr.dmi differ diff --git a/icons/obj/objects.dmi b/icons/obj/objects.dmi index 79c778bd12..269e75ffb6 100644 Binary files a/icons/obj/objects.dmi and b/icons/obj/objects.dmi differ diff --git a/icons/obj/props/fantasy.dmi b/icons/obj/props/fantasy.dmi new file mode 100644 index 0000000000..e6f4d38091 Binary files /dev/null and b/icons/obj/props/fantasy.dmi differ diff --git a/icons/obj/reagentfillings.dmi b/icons/obj/reagentfillings.dmi index 91d596a570..ad545f692f 100644 Binary files a/icons/obj/reagentfillings.dmi and b/icons/obj/reagentfillings.dmi differ diff --git a/icons/obj/stacks.dmi b/icons/obj/stacks.dmi index 2bf50ebc2f..1bcd94faea 100644 Binary files a/icons/obj/stacks.dmi and b/icons/obj/stacks.dmi differ diff --git a/icons/obj/watercloset.dmi b/icons/obj/watercloset.dmi index 7acb724e5b..847c97fc23 100644 Binary files a/icons/obj/watercloset.dmi and b/icons/obj/watercloset.dmi differ diff --git a/icons/turf/wall_masks_vr.dmi b/icons/turf/wall_masks_vr.dmi index 3c535a654f..ff773ba65b 100644 Binary files a/icons/turf/wall_masks_vr.dmi and b/icons/turf/wall_masks_vr.dmi differ diff --git a/maps/groundbase/groundbase_defines.dm b/maps/groundbase/groundbase_defines.dm index 9c9a131124..2faa9b21d2 100644 --- a/maps/groundbase/groundbase_defines.dm +++ b/maps/groundbase/groundbase_defines.dm @@ -220,7 +220,8 @@ list("Redgate - Hotsprings"), list("Redgate - Rain City"), list("Redgate - Islands Underwater","Redgate - Islands"), - list("Redgate - Moving Train", "Redgate - Moving Train Upper Level") + list("Redgate - Moving Train", "Redgate - Moving Train Upper Level"), + list("Redgate - Fantasy Dungeon", "Redgate - Fantasy Town") ) lateload_gb_north = list( diff --git a/maps/offmap_vr/common_offmaps.dm b/maps/offmap_vr/common_offmaps.dm index 11dd0a2734..47aab4f7de 100644 --- a/maps/offmap_vr/common_offmaps.dm +++ b/maps/offmap_vr/common_offmaps.dm @@ -314,7 +314,18 @@ /obj/effect/landmark/map_data/train height = 2 +/datum/map_template/common_lateload/redgate/fantasy + name = "Redgate - Fantasy Town" + desc = "A fantasy town full of low tech stuff." + mappath = 'maps/redgate/fantasy.dmm' +/datum/map_template/common_lateload/redgate/fantasy_dungeon + name = "Redgate - Fantasy Dungeon" + desc = "A fantasy dungeon with lots of monsters and loot." + mappath = 'maps/redgate/fantasy_dungeon.dmm' + +/obj/effect/landmark/map_data/fantasy + height = 2 ////////////////////////////////////////////////////////////////////////////////////// // Admin-use z-levels for loading whenever an admin feels like diff --git a/maps/redgate/fantasy.dmm b/maps/redgate/fantasy.dmm new file mode 100644 index 0000000000..02b40acea0 --- /dev/null +++ b/maps/redgate/fantasy.dmm @@ -0,0 +1,28435 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"ad" = ( +/obj/structure/bed/chair/sofa/left/purp{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"ag" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/washhouse) +"ah" = ( +/obj/structure/table/alien, +/obj/random/powercell/device, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"ai" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"aj" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/slice/bread/filled, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"al" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/gun/launcher/crossbow/bow, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"ao" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"ap" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/arrow/standard, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"aq" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/food/condiment/vinegar, +/obj/item/weapon/reagent_containers/food/condiment/vinegar, +/obj/item/weapon/reagent_containers/food/condiment/vinegar, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"ar" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"as" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"au" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/blacksmith) +"av" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"ax" = ( +/obj/item/weapon/material/knife/machete/hatchet/stone, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/druid) +"aA" = ( +/obj/item/weapon/reagent_containers/glass/bottle/potion/relaxation, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"aB" = ( +/obj/structure/table/woodentable, +/obj/machinery/alembic{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"aC" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"aE" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/twohanded/fireaxe{ + icon_state = "fireaxe_mask0"; + name = "big axe" + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"aI" = ( +/turf/simulated/floor/redgrid/animated, +/area/redgate/fantasy/aliens) +"aL" = ( +/obj/structure/closet/crate/wooden, +/obj/random/material/refined, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"aM" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"aN" = ( +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"aQ" = ( +/obj/structure/table/rack{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/shield/primitive, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"aS" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"aT" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"aU" = ( +/obj/structure/table/woodentable, +/obj/item/stack/material/diamond, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"aW" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"aY" = ( +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"aZ" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/fruitspawner/durian, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"bh" = ( +/obj/random/potion_ingredient, +/turf/simulated/floor/outdoors/mud, +/area/redgate/fantasy/streets) +"bj" = ( +/obj/structure/bed/chair/sofa/corner/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"bl" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"bn" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/pickaxe/hand, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"bo" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"bp" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/walls) +"bt" = ( +/turf/simulated/floor/wood/broken, +/area/redgate/fantasy/mininghouse) +"bu" = ( +/obj/structure/prop/fantasy/grindstone, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"bw" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/creamcheesebread, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"bx" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"by" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"bA" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"bC" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/shield/riot{ + color = "#A1662F" + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"bD" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/wizard/fake/realistic, +/obj/item/clothing/suit/wizrobe, +/obj/item/clothing/shoes/sandal, +/obj/item/weapon/staff, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"bE" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"bH" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"bI" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/accessory/gaiter/gray, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/gloves/black, +/obj/item/clothing/under/cuttop, +/obj/item/clothing/shoes/flats, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"bL" = ( +/turf/simulated/open, +/area/redgate/fantasy/mininghouse) +"bN" = ( +/obj/structure/bookcase/bookcart, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"bO" = ( +/obj/structure/fence/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"bQ" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"bR" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"bY" = ( +/obj/structure/flora/lily3, +/turf/simulated/floor/water, +/area/redgate/fantasy/paladinhouse) +"bZ" = ( +/obj/effect/floor_decal/borderfloorwhite/shifted{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"cb" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/fantasy/aliens) +"cc" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/fruitspawner/wheat, +/obj/fruitspawner/wheat, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"ce" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/fantasy/aliens) +"cf" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"ch" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"cj" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/fantasy/washhouse) +"ck" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"cl" = ( +/obj/structure/table/rack{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/material/sword/rapier, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"co" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"cq" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 1 + }, +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"cr" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"cs" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"ct" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"cu" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"cv" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"cx" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"cz" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"cA" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"cB" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"cC" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/shoes/boots/cowboy/fancy, +/obj/item/clothing/under/dress/singer/yellow, +/obj/item/clothing/head/rose_crown, +/obj/item/clothing/shoes/boots/singer/yellow, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/bard) +"cE" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"cG" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"cH" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"cK" = ( +/obj/effect/floor_decal/carpet/blue{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/fantasy/cafe) +"cL" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"cM" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"cS" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/meatbun, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"cT" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"cU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/pancakes, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"cV" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"cX" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/blacksmith) +"cZ" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"dc" = ( +/obj/structure/table/woodentable, +/obj/item/stack/medical/crude_pack, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"dd" = ( +/obj/structure/table/alien, +/obj/random/powercell, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"df" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/glass/bottle/potion/healing, +/obj/item/weapon/reagent_containers/glass/bottle/potion/healing, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"dg" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"dh" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/twohanded/baseballbat, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"di" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/reagent_containers/food/snacks/rawmeatball, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"dj" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"dk" = ( +/obj/structure/prop/machine/tube/starts_down, +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"dl" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"dm" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"dn" = ( +/obj/machinery/beehive, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"do" = ( +/obj/structure/table/woodentable, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"dt" = ( +/obj/structure/fence/wood/corner{ + dir = 1 + }, +/obj/structure/fence/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"du" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/bearmeat, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"dw" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/gloves/ring/material/silver, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"dx" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"dF" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/gun/launcher/crossbow/bow, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"dG" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 8 + }, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"dI" = ( +/obj/fruitspawner/gnomes, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"dK" = ( +/obj/structure/fitness/punchingbag, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"dL" = ( +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"dM" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/glass/bottle/potion/fire_resist, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"dO" = ( +/obj/fiftyspawner/iron, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"dQ" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"dU" = ( +/obj/structure/table/alien, +/obj/random/potion_base, +/obj/random/potion_base, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"dV" = ( +/obj/machinery/telecomms/relay/preset/station, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"dX" = ( +/obj/structure/prop/statue, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"dZ" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/obj/structure/prop/statue/pillar, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"eb" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"ec" = ( +/obj/structure/bed/chair/sofa/right/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"ef" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"eg" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/minihoe, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"ei" = ( +/obj/structure/bed/chair/sofa/bench/marble, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"ej" = ( +/obj/structure/table/rack{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/toy/cultsword, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"ek" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"el" = ( +/obj/fruitspawner/cabbage, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/fantasy/streets) +"eo" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"ep" = ( +/obj/structure/simple_door/sandstone, +/turf/simulated/floor/beach/sand/desert{ + outdoors = 1 + }, +/area/redgate/fantasy/arena) +"er" = ( +/obj/structure/bed/chair/sofa/bench/right{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"eu" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"ew" = ( +/obj/structure/closet/crate/wooden, +/obj/item/toy/character/thief, +/obj/item/clothing/accessory/gaiter/green, +/obj/item/clothing/gloves/black, +/obj/item/clothing/under/cuttop, +/obj/item/clothing/shoes/flats, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"ey" = ( +/obj/random/coin/sometimes, +/turf/simulated/floor/outdoors/mud, +/area/redgate/fantasy/streets) +"eA" = ( +/obj/machinery/fitness/punching_bag, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"eB" = ( +/obj/structure/fence/door{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"eC" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"eD" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/clothing/ears/earring/dangle/gold, +/obj/item/clothing/ears/earring/dangle/gold, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"eE" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"eF" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/storage/bible, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"eH" = ( +/obj/structure/toilet/wooden, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"eK" = ( +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"eM" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"eN" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/quicheslice/filled, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"eO" = ( +/obj/structure/closet/crate/wooden, +/obj/item/weapon/firework_star/weather/confetti, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"eQ" = ( +/obj/structure/table/woodentable, +/obj/random/potion_ingredient, +/obj/item/weapon/paper{ + info = "Apprentice, I have written out these instructions so that you may operate the alembic in your own time without me needing to watch over your every step.

The alembic is simple to operate, simply activate the spontaneous heating stone beneath it to begin boiling the contents. However, the contents that you choose are critical in creating a potion of any merit, and mixing the wrong materials may create something completely useless, wasting our resources!

You must mix two materials, and only ever two. One primary ingredient, this can be one of many materials with valuable alchemical properties. The other is a potion base, this will be essential to properly break down and transmute the ingredient into a potent potion. Once you have added the two, boil as above, and collect the distilate in a bottle. As for choosing your base, here is a short guide, but be aware that the properties of an ingredient are not always immediately apparent and some experimentation may be required:

Alkahest is a potent solvent and particularly useful for dissolving metals.

Aqua Regia is a heavily corrosive mixture of acids that readily dissolve most organic materials.

Ichor is a rich ferrous fluid that binds well to minerals, it can often break down gemstones.
"; + name = "alchemy instructions" + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"eR" = ( +/obj/structure/casino_table/craps{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"eS" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"eT" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/carrotcake, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/carrotcake, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"eV" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"eW" = ( +/obj/structure/table/marble, +/obj/item/weapon/flame/candle/candelabra, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"eX" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/accessory/maidcorset, +/obj/item/clothing/under/dress/black_corset, +/obj/item/weapon/handcuffs/cable/plantfiber, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"eY" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/outdoors/mud, +/area/redgate/fantasy/streets) +"eZ" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"fa" = ( +/obj/structure/window/basic, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"fb" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/bearmeat, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"fc" = ( +/turf/simulated/floor/carpet/brown, +/area/redgate/fantasy/farmhouse) +"ff" = ( +/obj/structure/table/rack{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/gun/launcher/crossbow, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"fh" = ( +/obj/structure/bed/chair/sofa/pew{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"fl" = ( +/obj/structure/table/woodentable, +/obj/random/instrument, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"fm" = ( +/obj/random/potion_base, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"fp" = ( +/turf/simulated/open, +/area/redgate/fantasy/streets) +"fr" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"fs" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/druid) +"ft" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"fu" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"fv" = ( +/obj/random/potion, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"fw" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"fx" = ( +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"fy" = ( +/obj/structure/prop/fantasy/kiln, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"fz" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/custom_library/fiction/truelovehathmyheart, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"fB" = ( +/obj/structure/closet/alien, +/obj/item/clothing/under/cohesion, +/obj/item/clothing/under/cohesion, +/obj/item/clothing/mask/gas/plaguedoctor, +/obj/item/clothing/mask/gas/plaguedoctor, +/obj/random/bluespace, +/obj/item/clothing/head/plaguedoctorhat, +/obj/item/clothing/head/plaguedoctorhat, +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"fD" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"fE" = ( +/obj/structure/bed/chair/sofa/right/purp{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"fH" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"fJ" = ( +/obj/structure/casino_table/craps, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"fL" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/purpledouble, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/bard) +"fM" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"fN" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"fQ" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"fT" = ( +/obj/item/frame/painting{ + pixel_y = 29 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"fY" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/device/flashlight/lantern, +/obj/item/device/flashlight/lantern, +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"ga" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"ge" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"gf" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"gg" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/gloves/combat/knight, +/obj/item/clothing/suit/storage/hooded/knight/robin, +/obj/item/clothing/head/welding/knight, +/obj/item/clothing/shoes/knight/black, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"gi" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"gk" = ( +/turf/simulated/wall/stonebricks, +/area/redgate/fantasy/church) +"gn" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/outdoors/mud, +/area/redgate/fantasy/streets) +"go" = ( +/obj/structure/prop/fantasy/anvil, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"gr" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"gx" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"gz" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"gC" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"gD" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/flatcap, +/obj/item/clothing/shoes/boots/winter/climbing, +/obj/item/clothing/under/color/ranger/green, +/obj/item/clothing/suit/storage/toggle/labcoat/neo_ranger, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"gE" = ( +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/redgate/fantasy/streets) +"gG" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"gK" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"gN" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/bun, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"gO" = ( +/obj/machinery/appliance/cooker/oven/yeoldoven, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"gP" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"gT" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_base, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/mininghouse) +"gU" = ( +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"gW" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"gX" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"ha" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"hg" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/structure/closet/cabinet, +/obj/item/clothing/head/fancy_crown, +/obj/item/clothing/suit/wizrobe/magusred, +/obj/item/weapon/material/sword/sabre{ + color = "#FFD700" + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"hi" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"hr" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"hs" = ( +/obj/structure/flora/pottedplant/largebush, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"ht" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"hv" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"hy" = ( +/obj/structure/bed/chair/sofa/right/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/washhouse) +"hA" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"hC" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"hD" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"hE" = ( +/obj/structure/closet/cabinet, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"hF" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 4 + }, +/obj/structure/closet/alien, +/obj/random/tool/alien, +/obj/random/firstaid, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"hI" = ( +/turf/simulated/floor/wood, +/area/redgate/fantasy/streets) +"hJ" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/alpine, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"hK" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/aliens) +"hQ" = ( +/obj/machinery/appliance/cooker/oven/yeoldoven, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"hR" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/hosdouble, +/obj/structure/curtain{ + color = "#FF0000" + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"hS" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"hT" = ( +/obj/structure/prop/fantasy/anvil, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"hU" = ( +/obj/structure/fence/hedge{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"hV" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"hW" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/paladinhouse) +"hX" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"hY" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"hZ" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/random/soap, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"ia" = ( +/obj/structure/bonfire/permanent, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"ic" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/fishing_rod/built, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"id" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"if" = ( +/obj/machinery/fitness/punching_bag, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"ig" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"ih" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"ii" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"ij" = ( +/obj/structure/undies_wardrobe, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"in" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"io" = ( +/obj/structure/bed/chair/wood, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"iq" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/blacksmith) +"ir" = ( +/obj/structure/closet/coffin, +/obj/random/humanoidremains, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/streets) +"is" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"it" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/druid) +"iu" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/under/primitive, +/obj/item/clothing/shoes/primitive, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"iw" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/wench, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"ix" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"iy" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/armor/combat/imperial, +/obj/item/clothing/shoes/knight/black, +/obj/item/clothing/gloves/combat/knight/brown, +/obj/item/clothing/head/helmet/gladiator, +/obj/item/weapon/shield/primitive, +/obj/item/weapon/handcuffs/cable/plantfiber, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"iD" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"iE" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"iH" = ( +/obj/structure/table/woodentable, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"iI" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/fantasy/farmhouse) +"iJ" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"iK" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wine, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"iL" = ( +/obj/structure/casino_table/roulette_chart, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"iQ" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/material/twohanded/fireaxe/foam, +/obj/item/weapon/material/twohanded/fireaxe/foam, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"iS" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/restaurant) +"iU" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"iV" = ( +/obj/structure/table/rack{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/material/sword/longsword, +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"iW" = ( +/obj/structure/prop/fantasy/kiln, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"iX" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/streets) +"iY" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"iZ" = ( +/obj/structure/window/phoronbasic/full, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"jb" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"jc" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/golden_cup, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"je" = ( +/obj/structure/casino_table/roulette_long, +/obj/item/roulette_ball/red, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"jf" = ( +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/aliens) +"jh" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"jj" = ( +/obj/structure/closet/walllocker/wooden/north, +/obj/item/weapon/material/knife/table, +/obj/item/weapon/material/knife/table, +/obj/item/weapon/material/knife/table, +/obj/item/weapon/material/knife/table, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"jl" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/bundle/custom_library/fiction/chroniclesofmargatavol1, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"jo" = ( +/obj/structure/table/woodentable, +/obj/fruitspawner/rose, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"jp" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"jq" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_base, +/obj/random/plushie, +/obj/random/plushie, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"jv" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/tofubread, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"jw" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"jx" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"jz" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/clothing/accessory/holster/machete/rapier/swords, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"jA" = ( +/obj/structure/prop/machine/nt_pod, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"jD" = ( +/obj/item/weapon/mop, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"jG" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"jI" = ( +/obj/structure/table/woodentable, +/obj/random/coin, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"jK" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 1 + }, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"jM" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/glass/rag, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"jO" = ( +/obj/structure/bed/chair/sofa/pew{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"jP" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"jQ" = ( +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"jR" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/obj/structure/table/woodentable, +/obj/random/coin, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"jS" = ( +/obj/structure/closet/crate/wooden, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"jX" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"jY" = ( +/obj/structure/fence/door/opened{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"jZ" = ( +/obj/structure/closet/crate/wooden, +/obj/random/fantasy_item, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"ka" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"kb" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/fantasy/washhouse) +"kc" = ( +/obj/structure/table/woodentable, +/obj/random/internal_organ, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"kg" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"ki" = ( +/obj/structure/bed/chair/sofa/left/black, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/fantasy/washhouse) +"kj" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"km" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/guardhouse) +"ko" = ( +/obj/structure/table/woodentable, +/obj/item/stack/medical/splint/ghetto, +/obj/item/stack/medical/splint/ghetto, +/obj/item/stack/medical/splint/ghetto, +/obj/item/stack/medical/splint/ghetto, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"kq" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"kv" = ( +/obj/effect/floor_decal/carpet/blue, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/fantasy/cafe) +"kw" = ( +/obj/structure/dirtybed, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"kx" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"kz" = ( +/obj/structure/closet/coffin, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"kA" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"kE" = ( +/obj/structure/prop/fantasy/throne, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"kF" = ( +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"kH" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/purpledouble, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"kJ" = ( +/obj/structure/table/gamblingtable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"kK" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/pen/crayon/blue{ + name = "chalk" + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"kL" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"kN" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"kO" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"kP" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"kS" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"kT" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"kU" = ( +/obj/item/weapon/reagent_containers/glass/bottle/potion/faerie, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"kX" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 4 + }, +/obj/structure/table/alien/blue, +/obj/random/potion, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"kY" = ( +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"la" = ( +/obj/structure/prop/fantasy/kiln, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"lb" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"ld" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"le" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"lf" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"lg" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"lj" = ( +/obj/structure/table/woodentable, +/obj/item/stack/material/iron, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"lk" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/custom_library/religious/wayofbleedingswan, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"ll" = ( +/obj/structure/table/woodentable, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"lm" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"lo" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/primitive, +/obj/item/clothing/under/primitive, +/obj/item/clothing/under/primitive, +/obj/item/clothing/under/primitive, +/obj/item/clothing/shoes/primitive, +/obj/item/clothing/shoes/primitive, +/obj/item/clothing/shoes/primitive, +/obj/item/clothing/shoes/primitive, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"lp" = ( +/obj/structure/table/alien, +/obj/structure/prop/machine/von_krabin, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"lq" = ( +/obj/structure/bed/bath, +/obj/random/soap, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"lt" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"lv" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"lx" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"ly" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/orangedouble, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"lz" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"lC" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"lF" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"lG" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"lH" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/shoes/boots/workboots/toeless, +/obj/item/clothing/under/overalls, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"lI" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/under/primitive, +/obj/item/clothing/shoes/primitive, +/obj/item/weapon/material/twohanded/staff, +/obj/item/clothing/accessory/poncho/roles/cloak{ + name = "simple cloak" + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"lJ" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"lK" = ( +/mob/living/simple_mob/vore/sheep, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"lM" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/druid) +"lO" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"lP" = ( +/mob/living/simple_mob/vore/alienanimals/catslug/custom/royalslug, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"lR" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"lS" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"lT" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"lW" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion, +/obj/random/potion, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"lY" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"ma" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/shovel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/blacksmith) +"md" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_base, +/obj/random/potion_base, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"me" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/random/coin, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"mi" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"mk" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"ml" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/fishing_net, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"mm" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/fruitspawner/potato, +/obj/fruitspawner/potato, +/obj/fruitspawner/potato, +/obj/fruitspawner/potato, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/lettuce, +/obj/fruitspawner/lettuce, +/obj/fruitspawner/carrot, +/obj/fruitspawner/carrot, +/obj/fruitspawner/carrot, +/obj/fruitspawner/apple, +/obj/fruitspawner/apple, +/obj/fruitspawner/apple, +/obj/fruitspawner/apple, +/obj/fruitspawner/berry, +/obj/fruitspawner/berry, +/obj/fruitspawner/berry, +/obj/fruitspawner/berry, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"mn" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"mo" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/obj/item/weapon/storage/box/matches, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"mp" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"mq" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/purpledouble, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"ms" = ( +/obj/structure/closet/cabinet, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"mt" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"mv" = ( +/obj/structure/table/fancyblack, +/obj/random/potion, +/turf/simulated/floor/carpet/tealcarpet, +/area/redgate/fantasy/castle) +"mw" = ( +/obj/structure/bed/chair/sofa/corp, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"mx" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"mz" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"mA" = ( +/obj/structure/prop/fantasy/redbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"mC" = ( +/obj/structure/fence/wood/corner{ + dir = 4 + }, +/obj/structure/fence/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"mD" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"mF" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/armor/crusader, +/obj/item/clothing/head/helmet/combat/crusader, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"mG" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/bible, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"mL" = ( +/obj/structure/closet/cabinet, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"mM" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"mO" = ( +/obj/structure/table/gamblingtable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"mQ" = ( +/obj/structure/prop/machine/nt_obelisk, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"mR" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"mT" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"mU" = ( +/obj/structure/redgate/away, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"mW" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/gloves/ring/material/diamond, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"mX" = ( +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/redgate/fantasy/paladinhouse) +"mZ" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"na" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"nb" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"ng" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"nj" = ( +/obj/structure/bed/chair/sofa/left/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"nm" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"nn" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/storage/bag/ore, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"nr" = ( +/turf/simulated/floor/wood/alt/panel/broken, +/area/redgate/fantasy/redgate) +"ns" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"nt" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/streets) +"nu" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"ny" = ( +/obj/structure/bed/chair/sofa/left/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/washhouse) +"nz" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/toy/snappop, +/obj/item/toy/snappop, +/obj/item/toy/snappop, +/obj/item/toy/snappop, +/obj/item/toy/snappop, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"nC" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"nD" = ( +/obj/structure/closet/crate/wooden, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"nE" = ( +/obj/item/stack/material/sandstone, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"nF" = ( +/obj/structure/casino_table/blackjack_r{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"nG" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/flamenco, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"nJ" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/cedouble, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"nK" = ( +/obj/random/soap, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"nM" = ( +/obj/structure/closet/crate/wooden, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/shovel/spade, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"nN" = ( +/obj/structure/table/marble, +/obj/item/weapon/surgical/scalpel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"nP" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"nR" = ( +/turf/simulated/wall/sandstone, +/area/redgate/fantasy/streets) +"nT" = ( +/obj/structure/bed/chair/sofa/pew, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"nU" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/gladiator, +/obj/item/clothing/head/helmet/gladiator, +/obj/item/clothing/under/gladiator, +/obj/item/clothing/head/helmet/gladiator, +/obj/item/clothing/shoes/sandal, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"nV" = ( +/obj/structure/bed/chair/sofa/pew{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"nX" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"nY" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/accessory/gaiter, +/obj/item/clothing/gloves/black, +/obj/item/clothing/under/cuttop/red, +/obj/item/clothing/shoes/flats, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"nZ" = ( +/obj/structure/table/bench/padded, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"oc" = ( +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"od" = ( +/obj/structure/closet/crate/wooden, +/obj/item/device/flashlight/lantern, +/obj/item/weapon/material/knife/tacknife/boot, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"oe" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/blacksmith) +"oh" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/fruitspawner/rhubarb, +/obj/fruitspawner/rhubarb, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"oi" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/fantasy/cafe) +"on" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"oo" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"op" = ( +/obj/structure/prop/statue/lion, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"oq" = ( +/obj/structure/closet/walllocker/wooden/north, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/fantasy/washhouse) +"os" = ( +/obj/structure/dirtybed, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"ot" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"ou" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"oz" = ( +/obj/structure/closet/walllocker/wooden/north, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"oA" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"oB" = ( +/obj/structure/table/woodentable, +/obj/random/potion, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"oD" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/fantasy/aliens) +"oE" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"oG" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"oH" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper{ + info = "Apprentice, I have written out these instructions so that you may operate the alembic in your own time without me needing to watch over your every step.

The alembic is simple to operate, simply activate the spontaneous heating stone beneath it to begin boiling the contents. However, the contents that you choose are critical in creating a potion of any merit, and mixing the wrong materials may create something completely useless, wasting our resources!

You must mix two materials, and only ever two. One primary ingredient, this can be one of many materials with valuable alchemical properties. The other is a potion base, this will be essential to properly break down and transmute the ingredient into a potent potion. Once you have added the two, boil as above, and collect the distilate in a bottle. As for choosing your base, here is a short guide, but be aware that the properties of an ingredient are not always immediately apparent and some experimentation may be required:

Alkahest is a potent solvent and particularly useful for dissolving metals.

Aqua Regia is a heavily corrosive mixture of acids that readily dissolve most organic materials.

Ichor is a rich ferrous fluid that binds well to minerals, it can often break down gemstones.
"; + name = "alchemy instructions" + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"oI" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 9 + }, +/obj/structure/prop/alien/computer/camera, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"oJ" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/tray, +/obj/item/weapon/tray, +/obj/item/weapon/tray, +/obj/item/weapon/material/knife{ + default_material = "gold" + }, +/obj/item/weapon/material/knife{ + default_material = "gold" + }, +/obj/item/weapon/material/knife{ + default_material = "gold" + }, +/obj/item/weapon/material/knife{ + default_material = "gold" + }, +/obj/item/weapon/material/knife{ + default_material = "gold" + }, +/obj/item/weapon/material/knife{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/fork{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/fork{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/fork{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/fork{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/fork{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/fork{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/spoon{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/spoon{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/spoon{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/spoon{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/spoon{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/spoon{ + default_material = "gold" + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"oK" = ( +/obj/structure/fence/hedge/corner, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"oL" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"oO" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"oV" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"oW" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/berryclafoutis, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"oX" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"pa" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"pb" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/coin/gold, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"pc" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/under/dress/westernbustle, +/obj/item/clothing/under/dress/westernbustle, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"pd" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"pe" = ( +/obj/structure/closet/alien, +/obj/random/multiple/voidsuit/vintage, +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"pg" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"pi" = ( +/obj/structure/bed/chair/sofa/corp/right, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"pj" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/shovel/spade, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"pl" = ( +/obj/structure/table/woodentable, +/obj/machinery/alembic{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"pn" = ( +/obj/structure/table/woodentable, +/obj/item/capture_crystal/random, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"pp" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/fruitspawner/lettuce, +/obj/fruitspawner/lettuce, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"pq" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/gloves/ring/material/gold, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"pt" = ( +/obj/structure/table/woodentable, +/obj/item/bodybag, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"pu" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"pv" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"pA" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"pB" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"pD" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"pF" = ( +/obj/structure/table/marble, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"pH" = ( +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"pI" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/potion_material/blood_ruby, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"pJ" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/sexyclown, +/obj/item/weapon/handcuffs/cable/plantfiber, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"pK" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/storage/apron/white, +/obj/item/clothing/under/lawyer/female, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"pM" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"pQ" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/westernbustle, +/obj/item/weapon/storage/wallet, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"pS" = ( +/obj/machinery/appliance/cooker/oven/yeoldoven, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"pU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/butch, +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"pW" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"pY" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"pZ" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"qa" = ( +/obj/structure/closet/alien, +/obj/random/grenade/less_lethal, +/obj/random/mainttoyloot/nofail, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"qb" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"qc" = ( +/obj/machinery/appliance/cooker/oven/yeoldoven, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"qd" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/toy/plushie/generic{ + name = "gelatinous cube plushie" + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"qf" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"qg" = ( +/obj/structure/closet/grave, +/obj/random/potion, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"qh" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"qk" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"qm" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"qp" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"qq" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"qs" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"qw" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"qA" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"qB" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/purpledouble, +/obj/structure/curtain{ + color = "#FF0000" + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/washhouse) +"qE" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"qF" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/cabbage, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"qI" = ( +/obj/item/weapon/potion_material/fairy_house, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"qK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/alt/broken, +/area/redgate/fantasy/house) +"qL" = ( +/obj/structure/bed/chair/sofa/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"qO" = ( +/obj/structure/table/woodentable, +/obj/machinery/alembic{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"qP" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"qQ" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"qR" = ( +/obj/structure/closet/cabinet, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"qS" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"qT" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"qU" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"qX" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"qZ" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"rc" = ( +/obj/structure/table/woodentable, +/obj/random/coin, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"rd" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"rf" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"rg" = ( +/obj/structure/closet/crate/wooden, +/obj/item/weapon/pickaxe/gold, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"rh" = ( +/obj/structure/closet/crate/wooden, +/obj/random/instrument, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"ri" = ( +/obj/structure/table/gamblingtable, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"rk" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"rl" = ( +/obj/random/fantasy_item, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"rp" = ( +/obj/structure/prop/fantasy/grindstone, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/blacksmith) +"ru" = ( +/obj/item/weapon/potion_base/aqua_regia, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"rv" = ( +/obj/structure/closet/crate/wooden, +/obj/item/weapon/material/star/ninja, +/obj/item/weapon/material/star/ninja, +/obj/item/weapon/material/star/ninja, +/obj/item/weapon/material/star/ninja, +/obj/item/weapon/material/star/ninja, +/obj/item/clothing/accessory/gaiter/charcoal, +/obj/item/clothing/under/shiny/catsuit, +/obj/item/clothing/head/shiny_hood, +/obj/item/clothing/accessory/shiny/gloves, +/obj/item/clothing/accessory/shiny/socks, +/obj/random/potion, +/obj/item/weapon/handcuffs/legcuffs/bola, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"rx" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"ry" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"rz" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"rB" = ( +/obj/structure/dirtybed, +/turf/simulated/floor/wood/alt/broken, +/area/redgate/fantasy/rogue) +"rC" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/jewler) +"rD" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"rE" = ( +/obj/structure/window/phoronbasic/full, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"rF" = ( +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/druid) +"rG" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"rJ" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_base, +/obj/random/potion_base, +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"rL" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"rM" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"rN" = ( +/turf/simulated/floor/carpet, +/area/redgate/fantasy/church) +"rO" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/gloves/ring/material/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"rP" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"rQ" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"rU" = ( +/obj/structure/fence/wood{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"rY" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/kettle/full, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"rZ" = ( +/turf/simulated/floor/beach/sand/desert{ + outdoors = 1 + }, +/area/redgate/fantasy/arena) +"sa" = ( +/obj/fruitspawner/glowshroom, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/fantasy/druid) +"sb" = ( +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"sc" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"se" = ( +/obj/structure/fence/wood/end, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"sg" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/waiter, +/obj/item/clothing/shoes/dress, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"sh" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"sj" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"sk" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/obj/item/clothing/under/skirt/loincloth, +/obj/item/clothing/suit/storage/fluff/loincloth, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/head/fish, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"sl" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"sn" = ( +/obj/structure/table/woodentable, +/obj/item/bee_smoker, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"so" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"sp" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"sq" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"ss" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/stack/material/gold, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"st" = ( +/obj/random/internal_organ, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"su" = ( +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"sw" = ( +/obj/structure/table/rack{ + color = "#A1662F"; + material = "wood" + }, +/obj/fruitspawner/bloodrose, +/obj/fruitspawner/bloodrose, +/obj/fruitspawner/bloodrose, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"sD" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"sE" = ( +/obj/structure/table/woodentable, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"sH" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/aliens) +"sK" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"sL" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"sN" = ( +/obj/structure/table/rack{ + color = "#A1662F"; + material = "wood" + }, +/obj/random/material/refined, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"sP" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"sR" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/shop) +"sS" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"sX" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 1 + }, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"sY" = ( +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"sZ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/handcuffs, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"tc" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/material/knife/tacknife, +/obj/item/weapon/material/knife/tacknife, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"td" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"te" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"tf" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/bard) +"tg" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_base, +/obj/random/potion_base, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"tj" = ( +/obj/structure/table/hardwoodtable, +/obj/item/clothing/ears/skrell/chain/silver, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"tk" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 9 + }, +/turf/simulated/floor/water/deep/ocean/diving{ + edge_blending_priority = 3; + name = "well" + }, +/area/redgate/fantasy/streets) +"tm" = ( +/obj/item/frame/painting{ + pixel_y = 29 + }, +/obj/structure/bed/chair/sofa/right/brown, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"tp" = ( +/obj/structure/fence/wood/end{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"tt" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"tu" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"tw" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/toy/colorballoon, +/obj/item/toy/colorballoon, +/obj/item/toy/colorballoon, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"ty" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"tA" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"tB" = ( +/obj/structure/bed/chair/sofa/right/purp{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"tC" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/fruitspawner/celery, +/obj/fruitspawner/celery, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"tG" = ( +/obj/structure/closet/walllocker/wooden/north, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/glass_extra/straw, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"tJ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"tK" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"tM" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"tN" = ( +/obj/structure/closet/grave, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"tO" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/structure/closet/walllocker/wooden/north, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"tT" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"tU" = ( +/turf/simulated/floor/water, +/area/redgate/fantasy/streets) +"tV" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"tW" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 1 + }, +/obj/structure/table/alien/blue, +/obj/item/weapon/paper/alien{ + info = "Thus far the mission has been a success, we've managed to integrate ourselves into the local community without arousing suspicion.

We had initially overestimated the technological level of the locals, and their initial encounters with our equipment did cause a concern. However, we were able to latch onto their superstitious beliefs in magic to explain away the abilities that we possess. To enhance this perception, we've taken to hiding our technology in more mundane looking materials, and the townsfolk appear to be content with this.
" + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"tX" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/fantasy/farmhouse) +"ua" = ( +/obj/structure/bed/chair/sofa/bench/left{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"ub" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"uc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"ud" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/reagent_containers/food/drinks/golden_cup, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"ue" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"ug" = ( +/turf/simulated/floor/wood/alt/broken, +/area/redgate/fantasy/house) +"uh" = ( +/obj/fruitspawner/carrot, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/fantasy/streets) +"ui" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"uj" = ( +/obj/structure/fence/hedge/corner{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"ul" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/toy/cultsword, +/obj/item/toy/cultsword, +/obj/item/toy/cultsword, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"um" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"uo" = ( +/obj/structure/bed/chair/sofa/corner/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"up" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"uq" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/cookie, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"ur" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"us" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"ut" = ( +/obj/structure/bed/chair/sofa/corner/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"uu" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/structure/closet/walllocker/wooden/south, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"uz" = ( +/turf/simulated/wall/stonebricks{ + can_open = 1 + }, +/area/redgate/fantasy/castle) +"uC" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/tacknife/boot, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"uD" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"uH" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 8 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"uM" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"uN" = ( +/obj/structure/closet/grave, +/obj/random/fantasy_item, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"uQ" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"uR" = ( +/obj/structure/table/rack{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/material/sword/katana, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"uT" = ( +/obj/item/frame/painting{ + pixel_y = 29 + }, +/obj/structure/bed/chair/sofa/left/brown, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"uU" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"uV" = ( +/obj/structure/bed/chair/sofa/left/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"uW" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"uY" = ( +/obj/structure/prop/fantasy/kiln, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"uZ" = ( +/obj/structure/closet/cabinet, +/obj/item/device/flashlight/lantern, +/obj/item/clothing/under/redpyjamas, +/obj/item/clothing/under/assistantformal, +/obj/item/weapon/storage/wallet, +/obj/item/clothing/mask/gas/plaguedoctor, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"va" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/cafe) +"vb" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/meatbread, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"ve" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"vf" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/bard) +"vg" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"vh" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"vl" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/clothing/gloves/ring/material/silver, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"vm" = ( +/obj/structure/table/rack{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/melee/chainofcommand{ + name = "iron whip" + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"vn" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/bundle/custom_library/fiction/silence, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"vo" = ( +/obj/fiftyspawner/gold, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"vp" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/gloves/ring/material/void_opal, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"vq" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/material/twohanded/spear/foam, +/obj/item/weapon/material/twohanded/spear/foam, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"vt" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"vv" = ( +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"vw" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/mask/chewable/candy/lolli, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"vx" = ( +/obj/effect/floor_decal/carpet/blue{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/fantasy/cafe) +"vz" = ( +/obj/structure/table/fancyblack, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"vC" = ( +/obj/effect/floor_decal/borderfloorwhite/shifted{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"vH" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/accessory/bracelet/friendship, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"vI" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"vJ" = ( +/obj/structure/bed/chair/sofa/corner/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"vK" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"vL" = ( +/obj/structure/table/woodentable, +/obj/item/bee_pack, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"vM" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/washhouse) +"vO" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"vQ" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"vR" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wine, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"vS" = ( +/obj/structure/bed/chair/sofa/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"vT" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"vU" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"vX" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"vY" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"vZ" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/custom_library/fiction/blacksmithandkinglybloke, +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"wb" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/bard) +"wc" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"wd" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"we" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"wf" = ( +/obj/structure/table/woodentable, +/obj/random/meat, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"wg" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"wh" = ( +/obj/item/weapon/shovel/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"wi" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"wj" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"wm" = ( +/obj/effect/floor_decal/carpet/blue{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/fantasy/cafe) +"wo" = ( +/obj/structure/curtain, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"wq" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"wr" = ( +/obj/effect/rune, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"ws" = ( +/obj/structure/fence/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"wt" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"wu" = ( +/turf/simulated/floor/water/deep, +/area/redgate/fantasy/druid) +"ww" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"wA" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/ascetic, +/obj/item/clothing/shoes/knight, +/obj/item/clothing/gloves/combat/knight/brown, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"wE" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"wF" = ( +/obj/structure/closet/grave/dirthole, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"wG" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/rogue) +"wH" = ( +/obj/structure/closet/crate/wooden, +/obj/random/material, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"wI" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/arena) +"wL" = ( +/obj/structure/closet/coffin, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"wO" = ( +/obj/machinery/microwave/cookingpot, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"wP" = ( +/obj/structure/fireplace, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"wQ" = ( +/obj/structure/prop/statue/pillar, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"wR" = ( +/obj/structure/dogbed, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"wT" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"wU" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 1 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/redgate/fantasy/castle) +"wX" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"wY" = ( +/obj/structure/table/woodentable, +/obj/random/coin, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"wZ" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"xa" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/accessory/stethoscope, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"xb" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/beetsoup, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"xc" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"xe" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"xf" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"xg" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/storage/apron/white, +/obj/item/clothing/gloves/black, +/obj/item/clothing/mask/gas/plaguedoctor, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"xh" = ( +/obj/structure/flora/lily1, +/turf/simulated/floor/water, +/area/redgate/fantasy/paladinhouse) +"xi" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"xj" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"xk" = ( +/obj/structure/bed/chair/sofa/corner/brown, +/turf/simulated/floor/carpet/brown, +/area/redgate/fantasy/farmhouse) +"xl" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"xm" = ( +/obj/structure/fence/hedge/end{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"xp" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"xq" = ( +/obj/machinery/appliance/cooker/oven/yeoldoven, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"xt" = ( +/obj/structure/bed/double/padded, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"xu" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/potion_material/frozen_dew, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"xy" = ( +/obj/structure/bed/chair/sofa/corner/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"xz" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/wizard/fake/realistic{ + color = "#00000" + }, +/obj/item/clothing/suit/wizrobe/fake{ + color = "#000000" + }, +/obj/item/weapon/staff/broom, +/obj/item/clothing/shoes/sandal, +/obj/item/weapon/material/knife/stone/bone, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"xA" = ( +/obj/structure/closet/crate/chest, +/obj/random/potion_ingredient, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"xB" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"xE" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"xF" = ( +/turf/simulated/open, +/area/redgate/fantasy/house) +"xH" = ( +/obj/structure/casino_table/roulette_table/long, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"xI" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"xJ" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"xK" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"xL" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"xO" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"xP" = ( +/obj/machinery/appliance/cooker/oven/yeoldoven, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"xR" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"xS" = ( +/turf/simulated/open, +/area/redgate/fantasy/aliens) +"xT" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/kettle/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"xU" = ( +/obj/structure/table/rack{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/material/knife/machete/hatchet/unathiknife, +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"xW" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"xX" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"xY" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 4 + }, +/obj/structure/table/alien/blue, +/obj/random/potion, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"xZ" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"yb" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"yd" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/fruitspawner/eggplant, +/obj/fruitspawner/eggplant, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"yf" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/accessory/bracelet/material/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"yg" = ( +/obj/structure/table/woodentable, +/obj/fruitspawner/watermelon, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"yi" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/random/soap_common, +/obj/random/soap_common, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"yl" = ( +/obj/structure/closet/crate/chest, +/obj/random/potion, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/obj/item/weapon/storage/box/matches, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"yp" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/obj/structure/prop/statue/pillar, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"yq" = ( +/obj/structure/bed/chair/sofa/pew/left, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"yw" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"yy" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"yA" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/pen/crayon/red{ + name = "chalk" + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"yB" = ( +/obj/structure/closet/coffin, +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"yC" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"yD" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"yE" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"yH" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"yI" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/ears/earring/dangle/gold, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"yL" = ( +/obj/random/fantasy_item, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"yO" = ( +/obj/effect/fake_sun, +/obj/effect/landmark/map_data/fantasy, +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/walls) +"yQ" = ( +/obj/structure/fence/hedge, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"yR" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/bard) +"yT" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"yV" = ( +/obj/structure/table/rack{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/material/sword/longsword, +/obj/structure/prop/fantasy/redbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"yW" = ( +/obj/structure/bed/chair/sofa/left/purp{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"yY" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"za" = ( +/obj/structure/fence/hedge/end{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"zb" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"zc" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"zd" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/formalred, +/obj/item/clothing/shoes/heels, +/obj/item/clothing/mask/veil, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"ze" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"zg" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/gambling) +"zi" = ( +/obj/structure/table/woodentable, +/obj/random/plushie, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"zj" = ( +/obj/structure/fence/hedge/end{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"zn" = ( +/obj/structure/reagent_dispensers/beerkeg/wood, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"zo" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"zp" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle/candelabra/everburn, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"zq" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"zw" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"zx" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"zz" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/fantasy/aliens) +"zB" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"zC" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"zD" = ( +/obj/structure/bed/chair/sofa/corner/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/fantasy/farmhouse) +"zF" = ( +/turf/simulated/floor/carpet/tealcarpet, +/area/redgate/fantasy/castle) +"zI" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 4 + }, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"zK" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"zP" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"zS" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"zU" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"zV" = ( +/obj/structure/table/bench/padded, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"Aa" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/kettle/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"Ab" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"Ac" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"Ad" = ( +/obj/structure/table/woodentable, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"Ae" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Af" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"Ag" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"Ai" = ( +/obj/structure/table/woodentable, +/obj/item/toy/figure/ranger, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"Aj" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Al" = ( +/obj/structure/table/hardwoodtable, +/obj/item/paint_palette, +/obj/item/paint_palette, +/obj/item/paint_brush, +/obj/item/paint_brush, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"An" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"Ao" = ( +/obj/structure/closet/crate/wooden, +/obj/item/device/flashlight/lantern, +/obj/item/weapon/material/knife/tacknife/boot, +/obj/random/fantasy_item, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"Ap" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Aq" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/moneybag, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"As" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/bun, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"At" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/bakery) +"Au" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper/crumpled, +/obj/item/weapon/paper/crumpled, +/obj/item/weapon/paper/crumpled, +/obj/item/weapon/paper/crumpled, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"Av" = ( +/obj/structure/closet/crate/chest, +/obj/random/potion, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"Aw" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/churchhouse) +"Az" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"AA" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"AD" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/clothing/head/woodcirclet, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"AF" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/church) +"AH" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"AJ" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"AL" = ( +/obj/item/weapon/shovel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"AN" = ( +/obj/structure/table/hardwoodtable, +/obj/item/canvas/twentyfour_twentyfour, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"AO" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"AQ" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/custom_library/fiction/myrock, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"AR" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/stone/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"AS" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"AU" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"AV" = ( +/obj/structure/bed/chair/sofa/corner/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"AW" = ( +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/fantasy/aliens) +"AY" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/bundle/custom_library/fiction/manfromsnowyriver, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Ba" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/xenomeatbread, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"Bb" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/tool/wrench, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"Bd" = ( +/obj/structure/bed/chair/sofa/right/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"Bg" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = -23 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = -23; + pixel_y = -9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"Bh" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"Bk" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/mininghouse) +"Bl" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/fantasy/washhouse) +"Bn" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"Bp" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Bq" = ( +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"Br" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"By" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"Bz" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/material/knife/tacknife/boot, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/blacksmith) +"BA" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/obj/item/weapon/material/sword/longsword, +/obj/item/clothing/suit/armor/combat/imperial, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"BC" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"BD" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/mininghouse) +"BE" = ( +/obj/structure/prop/alien/power, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"BF" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"BG" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"BH" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"BM" = ( +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"BN" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/greendouble, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/house) +"BQ" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"BT" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/material/sword/foam, +/obj/item/weapon/material/sword/foam, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"BY" = ( +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"Ca" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/bottle/potion, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Cc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"Cf" = ( +/obj/structure/table/woodentable, +/obj/structure/closet/walllocker/wooden/south, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Cg" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Ci" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/armor/combat/imperial, +/obj/item/clothing/shoes/knight/black, +/obj/item/clothing/gloves/combat/knight/brown, +/obj/item/clothing/head/helmet/gladiator, +/obj/item/weapon/shield/primitive, +/obj/item/weapon/handcuffs/cable/plantfiber, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"Ck" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"Cm" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"Co" = ( +/turf/simulated/open, +/area/redgate/fantasy/castle) +"Cp" = ( +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"Cu" = ( +/obj/structure/closet/crate/wooden, +/obj/item/device/flashlight/lantern, +/obj/item/weapon/material/knife/tacknife/boot, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"Cv" = ( +/obj/structure/casino_table/blackjack_m{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"Cw" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/broken, +/area/redgate/fantasy/mininghouse) +"Cy" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Cz" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"CC" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"CE" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"CF" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"CG" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"CH" = ( +/turf/simulated/wall/stonebricks, +/area/redgate/fantasy/streets) +"CI" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/material/knife/stone/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"CK" = ( +/obj/structure/closet/crate/wooden, +/obj/item/weapon/material/sword/longsword, +/obj/item/clothing/accessory/holster/machete/rapier/swords, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"CL" = ( +/obj/structure/prop/machine/stamper, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"CM" = ( +/obj/structure/prop/alien/pod/hybrid, +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"CN" = ( +/obj/structure/table/woodentable, +/obj/random/meat, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"CQ" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/washhouse) +"CR" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"CX" = ( +/obj/structure/fence, +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"CY" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"Db" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"Dc" = ( +/obj/structure/closet/coffin, +/obj/random/humanoidremains, +/obj/random/bluespace, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/streets) +"Dd" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Dg" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/kettle/full, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"Dh" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"Dj" = ( +/mob/living/simple_mob/animal/passive/fish/koi, +/turf/simulated/floor/water, +/area/redgate/fantasy/paladinhouse) +"Dk" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_base, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"Dm" = ( +/obj/structure/closet/crate/wooden, +/obj/random/material/precious, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Dn" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"Do" = ( +/obj/structure/closet/crate/chest, +/obj/item/clothing/accessory/bracelet/material/gold, +/obj/item/clothing/ears/earring/dangle/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/random/potion_base, +/obj/item/weapon/picnic_blankets_carried, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"Dq" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Ds" = ( +/obj/structure/bed/chair/sofa/brown, +/turf/simulated/floor/carpet/brown, +/area/redgate/fantasy/farmhouse) +"Dt" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Du" = ( +/obj/structure/undies_wardrobe, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"Dw" = ( +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/mininghouse) +"Dz" = ( +/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"DE" = ( +/obj/structure/table/woodentable, +/obj/random/potion_base, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"DI" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"DL" = ( +/obj/effect/floor_decal/carpet/blue{ + dir = 1 + }, +/obj/effect/floor_decal/carpet/blue{ + dir = 4 + }, +/obj/effect/floor_decal/carpet/blue{ + dir = 5 + }, +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle/candelabra/everburn, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/fantasy/cafe) +"DN" = ( +/obj/structure/simple_door/iron, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/streets) +"DO" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"DQ" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"DR" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"DS" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/twobread, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"DT" = ( +/obj/structure/bed/chair/wood/wings, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"DU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/tool/crowbar, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"DV" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"DY" = ( +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/redgate/fantasy/hedgemaze) +"Ea" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/streets) +"Eb" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/blacksmith) +"Ec" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Ef" = ( +/obj/structure/closet/crate/wooden, +/obj/random/material/precious, +/obj/random/material/precious, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"Ei" = ( +/turf/simulated/wall/wood{ + can_open = 1 + }, +/area/redgate/fantasy/house) +"Ej" = ( +/obj/structure/flora/lily2, +/turf/simulated/floor/water, +/area/redgate/fantasy/paladinhouse) +"Ek" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/obj/random/potion, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"Em" = ( +/turf/simulated/wall/stonebricks, +/area/redgate/fantasy/castle) +"Eo" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/fruitspawner/potato, +/obj/fruitspawner/potato, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Eq" = ( +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Er" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/fruitspawner/carrot, +/obj/fruitspawner/carrot, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Es" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"Ew" = ( +/obj/structure/closet/crate/wooden, +/obj/item/device/flashlight/lantern, +/obj/item/weapon/material/knife/tacknife/boot, +/obj/random/instrument, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"Ez" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"EB" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"EC" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"ED" = ( +/obj/structure/table/alien, +/obj/random/potion_ingredient, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"EJ" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/aliens) +"EK" = ( +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/paladinhouse) +"EO" = ( +/obj/structure/closet/walllocker/wooden/east, +/obj/item/weapon/potion_base/alkahest, +/obj/item/weapon/potion_base/aqua_regia, +/obj/item/weapon/potion_base/ichor, +/obj/random/potion_base, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"ER" = ( +/obj/structure/kitchenspike, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"EV" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wine, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"EX" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"EY" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/double, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Fa" = ( +/obj/structure/prop/machine/conduit/starts_on, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"Fc" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"Fd" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/armor/combat/imperial, +/obj/item/clothing/shoes/knight/black, +/obj/item/clothing/gloves/combat/knight/brown, +/obj/item/clothing/head/helmet/gladiator, +/obj/item/weapon/shield/primitive, +/obj/item/weapon/handcuffs/cable/plantfiber, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"Fe" = ( +/obj/structure/table/rack{ + color = "#A1662F"; + material = "wood" + }, +/obj/fruitspawner/poppies, +/obj/fruitspawner/poppies, +/obj/fruitspawner/poppies, +/obj/fruitspawner/poppies, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Ff" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"Fg" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Fh" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"Fi" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Fj" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/bard) +"Fm" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 5 + }, +/obj/structure/table/alien/blue, +/obj/random/maintenance/medical, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"Fn" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/pirate, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Fo" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/cowboy/rustler, +/obj/item/clothing/shoes/boots/cowboy/classic, +/obj/item/clothing/under/cowboy/tan, +/obj/item/clothing/accessory/cowboy_vest, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"Fq" = ( +/obj/structure/table/rack{ + color = "#A1662F"; + material = "wood" + }, +/obj/fruitspawner/telriis, +/obj/fruitspawner/telriis, +/obj/fruitspawner/telriis, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Fs" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/bottle/potion/relaxation, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Fw" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 5 + }, +/turf/simulated/floor/water/deep/ocean/diving{ + edge_blending_priority = 3; + name = "well" + }, +/area/redgate/fantasy/streets) +"Fy" = ( +/obj/structure/table/hardwoodtable, +/obj/random/potion_base, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"FB" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/pickaxe/four_pick, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"FD" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/tray, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"FE" = ( +/obj/structure/signpost, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"FH" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 8 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"FM" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"FP" = ( +/obj/structure/table/woodentable, +/obj/item/toy/figure/ninja, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"FQ" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/gloves/knuckledusters, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"FS" = ( +/obj/structure/table/marble, +/obj/item/weapon/surgical/retractor, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"FV" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"FX" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"FZ" = ( +/obj/structure/dirtybed, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"Gb" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/pickaxe, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Gc" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"Gd" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"Ge" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/storage/wallet, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Gf" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/roastbeef, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"Gi" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"Gj" = ( +/obj/structure/closet/crate/chest, +/obj/random/instrument, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"Gk" = ( +/obj/structure/closet/cabinet, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"Gl" = ( +/turf/simulated/floor/outdoors/mud, +/area/redgate/fantasy/streets) +"Go" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/collectable/tophat, +/obj/item/clothing/under/gentlesuit, +/obj/item/weapon/cane, +/obj/item/clothing/gloves/white, +/obj/item/clothing/glasses/monocle, +/obj/item/clothing/shoes/dress, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Gp" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"Gs" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"Gt" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/tacknife/combatknife, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"Gu" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"Gw" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"Gx" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"Gy" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"Gz" = ( +/obj/structure/table/woodentable, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"GC" = ( +/obj/fruitspawner/pumpkin, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/fantasy/streets) +"GE" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"GG" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"GJ" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/random/potion, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"GL" = ( +/obj/item/weapon/reagent_containers/food/snacks/old/taco, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"GM" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"GP" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/wench, +/obj/item/weapon/storage/wallet, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"GR" = ( +/obj/item/stack/material/sandstone, +/turf/simulated/floor/outdoors/mud, +/area/redgate/fantasy/streets) +"GT" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"GV" = ( +/obj/structure/fence/hedge/corner{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"GX" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/bone/horn, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"Ha" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/melee/classic_baton, +/obj/item/weapon/melee/classic_baton, +/obj/item/weapon/melee/classic_baton, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"Hb" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Hc" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Hd" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"He" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/tavern) +"Hg" = ( +/obj/structure/table/alien, +/obj/random/fantasy_item, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"Hj" = ( +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Hk" = ( +/obj/structure/bed/chair/sofa/corner/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"Hl" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"Hn" = ( +/obj/item/weapon/tool/wrench/brass, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"Ho" = ( +/obj/structure/prop/fantasy/anvil, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Hr" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"Hu" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/alchemist) +"Hx" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/custom_library/fiction/myrock, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Hy" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/ore/iron, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Hz" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"HA" = ( +/obj/structure/table/gamblingtable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"HC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"HD" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"HE" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/book/custom_library/fiction/blacksmithandkinglybloke, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"HF" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/reddouble, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"HH" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"HJ" = ( +/obj/structure/reagent_dispensers/beerkeg/wine, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"HK" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"HL" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"HM" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"HO" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/grocery) +"HP" = ( +/turf/simulated/floor/wood/alt/broken, +/area/redgate/fantasy/rogue) +"HQ" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"HS" = ( +/obj/structure/closet/crate/wooden, +/obj/random/fantasy_item, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"HT" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"HU" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/bard) +"HW" = ( +/obj/structure/prop/alien/pod/open, +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"HY" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"Ib" = ( +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"Id" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle/candelabra/everburn, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"If" = ( +/obj/random/potion_base, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Ig" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Ij" = ( +/obj/structure/table/woodentable, +/obj/random/plushielarge, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Ik" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"In" = ( +/turf/simulated/floor/water, +/area/redgate/fantasy/druid) +"Ip" = ( +/obj/structure/table/hardwoodtable, +/obj/random/potion_base, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"Iq" = ( +/obj/structure/prop/fantasy/throne, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"Ix" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"Iy" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"IA" = ( +/obj/structure/dirtybed, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"IB" = ( +/obj/structure/largecrate/birds, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"IC" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/roulette_balls_fancy, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"ID" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/carpet, +/obj/item/toy/character/warrior, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"IF" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/kettle/full, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/fantasy/washhouse) +"IG" = ( +/turf/simulated/shuttle/wall/alien, +/area/redgate/fantasy/aliens) +"II" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"IJ" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/farmhouse) +"IK" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"IL" = ( +/mob/living/simple_mob/vore/pakkun/fire, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"IM" = ( +/obj/structure/closet/walllocker/wooden/north, +/obj/item/weapon/material/knife/table, +/obj/item/weapon/material/knife/table, +/obj/item/weapon/material/knife/table, +/obj/item/weapon/material/knife/table, +/obj/item/weapon/material/knife/table, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"IP" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"IS" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/headband/maid, +/obj/item/clothing/head/headband/maid/modern, +/obj/item/clothing/accessory/maid_arms, +/obj/item/clothing/accessory/maid_neck, +/obj/item/clothing/accessory/maidcorset, +/obj/item/clothing/under/dress/maid, +/obj/item/clothing/under/dress/maid/janitor, +/obj/item/clothing/under/dress/maid/under_maid, +/obj/item/clothing/shoes/dress, +/obj/item/clothing/gloves/white, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"IY" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 6 + }, +/obj/structure/table/alien/blue, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"Ja" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"Jd" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"Je" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 6 + }, +/turf/simulated/floor/water/deep/ocean/diving{ + edge_blending_priority = 3; + name = "well" + }, +/area/redgate/fantasy/streets) +"Jf" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Jg" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Jh" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Ji" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/wedding/floofdress, +/obj/item/clothing/mask/veil, +/obj/item/clothing/shoes/heels, +/obj/item/clothing/head/crown, +/obj/item/clothing/gloves/evening, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"Jk" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/chaplain_hood, +/obj/item/clothing/suit/storage/hooded/chaplain_hoodie, +/obj/item/clothing/under/rank/chaplain, +/obj/item/clothing/shoes/dress, +/obj/item/weapon/storage/bible/booze, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"Jm" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/custom_library/fiction/irishairmanforseesdeath, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Jn" = ( +/obj/structure/bookcase, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"Jo" = ( +/obj/structure/closet/crate/wooden, +/obj/item/device/flashlight/lantern, +/obj/item/weapon/material/knife/tacknife/boot, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"Jr" = ( +/obj/structure/bed/chair/sofa/pew, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Js" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/picnic_blankets_carried, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Jt" = ( +/obj/structure/table/alien, +/obj/structure/prop/machine/biosyphon, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"Ju" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"Jv" = ( +/obj/item/frame/painting{ + pixel_y = 29 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Jz" = ( +/obj/structure/fence, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"JC" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"JD" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/picnic_blankets_carried, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"JE" = ( +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/washhouse) +"JH" = ( +/obj/structure/table/woodentable, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"JL" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"JM" = ( +/obj/structure/table/woodentable, +/obj/item/seeds/random, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"JN" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"JO" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/bundle/custom_library/fiction/ghostship, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"JP" = ( +/obj/structure/closet/crate/chest, +/obj/item/instrument/violin/golden, +/obj/random/instrument, +/obj/random/potion_base, +/obj/item/weapon/material/sword/rapier, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/bard) +"JT" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/accessory/jacket/gambler, +/obj/item/clothing/under/suit_jacket/gambler, +/obj/item/clothing/shoes/boots/jungle, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"JU" = ( +/obj/structure/fence/hedge/end, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"JW" = ( +/obj/structure/closet/crate/wooden, +/obj/item/device/flashlight/lantern, +/obj/item/weapon/material/knife/tacknife/boot, +/obj/random/material, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"JX" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"JY" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"JZ" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Ka" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/material/sword/sabre, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"Kb" = ( +/obj/structure/table/woodentable, +/obj/item/stack/medical/splint/ghetto, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Kc" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"Kd" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/gothic, +/obj/item/clothing/shoes/boots/duty, +/obj/item/clothing/gloves/evening{ + color = "#000000" + }, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/house) +"Ki" = ( +/obj/item/weapon/material/gravemarker, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"Kk" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/cabbage, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Km" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/house) +"Kq" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"Ks" = ( +/obj/structure/prop/statue/pillar, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/redgate/fantasy/streets) +"Ku" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"Kx" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"KA" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"KB" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/twohanded/staff, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"KE" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"KH" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"KI" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"KK" = ( +/obj/item/weapon/reagent_containers/food/snacks/worm, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"KM" = ( +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"KP" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/light/small/torch, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"KS" = ( +/obj/structure/table/woodentable, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"KU" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"KV" = ( +/obj/structure/prop/fantasy/redbanner_standing, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"KW" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"KZ" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/washhouse) +"La" = ( +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Ld" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"Lf" = ( +/obj/structure/casino_table/blackjack_l{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"Lg" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/custom_library/fiction/woodysgotwood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Lh" = ( +/obj/structure/prop/machine/nt_biocan, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/aliens) +"Lj" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/risottoballs, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"Lk" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"Ll" = ( +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"Ln" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/material/sword/longsword, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"Lo" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Lp" = ( +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/beach/sand/desert{ + outdoors = 1 + }, +/area/redgate/fantasy/arena) +"Lq" = ( +/obj/random/mouseremains, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"Lr" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"Lv" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"Lw" = ( +/obj/structure/bed/chair/wood/wings, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"Ly" = ( +/obj/machinery/appliance/cooker/oven/yeoldoven, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"Lz" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"LA" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/redgate/fantasy/hedgemaze) +"LE" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"LI" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"LJ" = ( +/obj/random/coin/sometimes, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"LK" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"LN" = ( +/obj/structure/closet/crate/wooden, +/obj/item/weapon/storage/bag/ore, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/mininghouse) +"LR" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"LU" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"LV" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"LX" = ( +/turf/simulated/wall/log, +/area/redgate/fantasy/streets) +"LY" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/obj/random/pouch, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"LZ" = ( +/mob/living/simple_mob/vore/alienanimals/teppi, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"Ma" = ( +/turf/simulated/floor/water/deep, +/area/redgate/fantasy/streets) +"Md" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"Mh" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"Mj" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"Ml" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"Mn" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"Mo" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"Mp" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"Mq" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"Ms" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Mt" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Mu" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"Mv" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"Mw" = ( +/obj/structure/bed/chair/sofa/brown, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"My" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Mz" = ( +/obj/structure/fence/wood, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"MB" = ( +/obj/structure/bed/chair/sofa/right/purp{ + dir = 8 + }, +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"MC" = ( +/obj/structure/prop/machine/gravygen, +/turf/simulated/floor/redgrid/animated, +/area/redgate/fantasy/aliens) +"MD" = ( +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"ME" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"MG" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"MI" = ( +/obj/structure/table/woodentable, +/obj/item/toy/bouquet, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"MJ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/potion_material/thorny_bulb, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"MK" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"MM" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/ears/earring/stud/gold, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"MN" = ( +/obj/structure/table/rack{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/material/twohanded/longsword, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"MO" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/primitive, +/obj/item/clothing/under/primitive, +/obj/item/clothing/under/primitive, +/obj/item/clothing/shoes/primitive, +/obj/item/clothing/shoes/primitive, +/obj/item/clothing/shoes/primitive, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"MP" = ( +/obj/structure/fireplace, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"MQ" = ( +/obj/structure/table/hardwoodtable, +/obj/item/canvas/twentythree_twentythree, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"MU" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"MX" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"MZ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/rag, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"Nb" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"Nc" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"Ne" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"Ng" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"Nk" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"Nn" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/bottle/wine, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"Np" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"Nu" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"Nv" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Nw" = ( +/obj/item/weapon/material/knife/machete/hatchet/stone/bone, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"Nx" = ( +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"Ny" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/match, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Nz" = ( +/obj/structure/bed/chair/sofa/corner/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"NA" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"NB" = ( +/obj/effect/floor_decal/carpet/blue, +/obj/effect/floor_decal/carpet/blue{ + dir = 8 + }, +/obj/effect/floor_decal/carpet/blue{ + dir = 10 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/fantasy/cafe) +"NC" = ( +/obj/effect/floor_decal/carpet/blue{ + dir = 1 + }, +/obj/effect/floor_decal/carpet/blue{ + dir = 8 + }, +/obj/effect/floor_decal/carpet/blue{ + dir = 9 + }, +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle/candelabra/everburn, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/fantasy/cafe) +"NH" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"NI" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"NJ" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/gun/launcher/crossbow/bow, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"NL" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"NM" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/mininghouse) +"NP" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"NR" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"NT" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/berrymuffin/berry, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"NW" = ( +/obj/fruitspawner/plumphelmet, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"NZ" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"Ob" = ( +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"Oc" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Od" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/pickaxe/five_pick, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Of" = ( +/obj/structure/table/woodentable, +/obj/item/stack/medical/ointment/simple, +/obj/item/stack/medical/ointment/simple, +/obj/item/stack/medical/ointment/simple, +/obj/item/stack/medical/ointment/simple, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Ok" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/mask/pig, +/obj/item/clothing/under/kilt, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"Ol" = ( +/obj/fruitspawner/gnomes, +/turf/simulated/floor/outdoors/mud, +/area/redgate/fantasy/streets) +"Om" = ( +/obj/structure/flora/pottedplant/fern, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"Or" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"Os" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Ot" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"Ov" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/obj/random/mug, +/obj/random/coin, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"Ow" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/bone/skull, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"Ox" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Oy" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"Oz" = ( +/obj/machinery/appliance/cooker/oven/yeoldoven, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"OE" = ( +/obj/structure/prop/fantasy/pinkbanner_standing, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"OH" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"OI" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/fiftyspawner/sifwood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"OJ" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/accessory/gaiter/tan, +/obj/item/clothing/gloves/black, +/obj/item/clothing/under/oldwoman, +/obj/item/clothing/shoes/flats, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"OK" = ( +/obj/structure/closet/crate/chest, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/flame/candle/candelabra, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"OM" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"ON" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"OQ" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/material/twohanded/longsword, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"OS" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"OT" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"OU" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"OX" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"OY" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"Pa" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/redgate) +"Pb" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Pc" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/accessory/gaiter/charcoal, +/obj/item/clothing/gloves/black, +/obj/item/clothing/under/cuttop, +/obj/item/clothing/shoes/flats, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"Pd" = ( +/obj/structure/table/woodentable, +/obj/item/stack/medical/crude_pack, +/obj/item/stack/medical/crude_pack, +/obj/item/stack/medical/crude_pack, +/obj/item/stack/medical/crude_pack, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Pf" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/tray, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"Ph" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/glass/bottle/potion/antidote, +/obj/item/weapon/reagent_containers/glass/bottle/potion/antidote, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"Pj" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/barbarian) +"Pl" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Pn" = ( +/obj/structure/prop/fantasy/anvil, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"Pr" = ( +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"Ps" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/shovel/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"Pu" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"Pw" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"Px" = ( +/turf/simulated/floor/water, +/area/redgate/fantasy/paladinhouse) +"Py" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/machete, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"Pz" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"PB" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"PF" = ( +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/house) +"PG" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/structure/closet/walllocker/wooden/south, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"PH" = ( +/obj/structure/table/rack{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/material/knife/machete/hatchet/unathiknife, +/obj/structure/prop/fantasy/redbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"PI" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 4 + }, +/obj/structure/table/alien/blue, +/obj/item/weapon/surgical/FixOVein/alien, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"PJ" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/food/snacks/funnelcake, +/obj/item/weapon/reagent_containers/food/snacks/funnelcake, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"PK" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/accessory/gaiter/blue, +/obj/item/clothing/gloves/black, +/obj/item/clothing/under/cuttop, +/obj/item/clothing/shoes/flats, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"PL" = ( +/obj/structure/table/gamblingtable, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"PM" = ( +/obj/structure/table/marble, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"PO" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"PP" = ( +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"PQ" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/random/plushie, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"PT" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"PU" = ( +/obj/item/weapon/potion_material/blood_ruby, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"PV" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/streets) +"PW" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"PX" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"PZ" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"Qb" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/random/fantasy_item, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"Qf" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Qh" = ( +/obj/structure/bed/chair/sofa/left/purp{ + dir = 4 + }, +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"Qi" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/storage/apron/white, +/obj/item/weapon/storage/wallet, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"Qj" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"Qn" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"Qr" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Qu" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/bananabread, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"Qv" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Qy" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"QA" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/meatsteak, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"QF" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/device/flashlight/lantern, +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"QL" = ( +/obj/structure/fence/hedge/corner{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"QN" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"QP" = ( +/obj/structure/table/woodentable, +/obj/item/stack/medical/crude_pack, +/obj/item/stack/medical/crude_pack, +/obj/item/stack/medical/crude_pack, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"QQ" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wine, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"QR" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"QS" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"QT" = ( +/obj/fiftyspawner/gold, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"QU" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"QW" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"QZ" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Rb" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"Rg" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"Ri" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Rj" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/reagent_containers/food/snacks/chocolatebar, +/obj/item/weapon/reagent_containers/food/snacks/chocolatebar, +/obj/fruitspawner/apple, +/obj/fruitspawner/apple, +/obj/fruitspawner/apple, +/obj/fruitspawner/apple, +/obj/fruitspawner/banana, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"Rl" = ( +/obj/structure/table/woodentable, +/obj/item/toy/character/cleric, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"Rm" = ( +/obj/structure/bed/chair/sofa/corp, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"Ro" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/obj/structure/prop/statue/pillar, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"Rp" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/croissant, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"Rq" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"Rs" = ( +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/fantasy/aliens) +"Ru" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"Rv" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Rw" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"Rx" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"Ry" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"Rz" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"RA" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/bundle/custom_library/fiction/coldmountain, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"RC" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/cherrypie, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"RE" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"RF" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"RG" = ( +/obj/structure/reagent_dispensers/beerkeg/wood, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"RI" = ( +/obj/structure/bed/chair/sofa/left/brown, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"RM" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"RN" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/ranger) +"RO" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"RR" = ( +/obj/structure/closet/crate/chest, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/obj/random/material/precious, +/obj/random/material/precious, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"RS" = ( +/obj/structure/prop/fantasy/grindstone, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"RT" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"RU" = ( +/obj/structure/closet/crate/wooden, +/obj/random/fantasy_item, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"RV" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/head/rose_crown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"RW" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"RX" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/bluedress, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Sa" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"Sd" = ( +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"Sf" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"Sj" = ( +/obj/item/weapon/ore/coal, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/mininghouse) +"Sm" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Sn" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/mininghouse) +"So" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"Sr" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"Ss" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"St" = ( +/obj/structure/table/woodentable, +/obj/random/potion_ingredient, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"Sv" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"Sw" = ( +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"Sy" = ( +/obj/structure/table/alien, +/obj/structure/prop/machine/core/starts_on, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"SB" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"SE" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/rank/bartender/skirt, +/obj/item/clothing/under/rank/bartender, +/obj/item/clothing/shoes/sandal/clogs, +/obj/item/clothing/shoes/sandal/clogs, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"SF" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"SJ" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"SL" = ( +/obj/structure/prop/machine/nt_cruciforge/starts_working, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/aliens) +"SM" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"SN" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"SO" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"SS" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"SW" = ( +/obj/structure/table/woodentable, +/obj/item/seeds/random, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"SX" = ( +/obj/structure/closet/crate/wooden, +/obj/random/material/refined, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"SZ" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"Ta" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"Tb" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/fantasy/aliens) +"Te" = ( +/obj/structure/bed/chair/sofa/corner/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"Th" = ( +/obj/random/material, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/mininghouse) +"Ti" = ( +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"Tj" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/fiftyspawner/hardwood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"Tk" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Tn" = ( +/obj/effect/floor_decal/shuttle/handicap, +/obj/machinery/door/airlock/alien/blue/public, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"To" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/blacksmith) +"Tp" = ( +/obj/structure/bookcase, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"Tu" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/accessory/bracelet/material/gold, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"Tv" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Tz" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"TD" = ( +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"TE" = ( +/turf/simulated/floor/outdoors/sidewalk/side, +/area/redgate/fantasy/streets) +"TG" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/towel/random, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"TH" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/chefhat, +/obj/item/clothing/suit/chef/classic, +/obj/item/clothing/under/rank/chef, +/obj/item/clothing/shoes/boots, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"TJ" = ( +/obj/structure/closet/crate/chest, +/obj/item/weapon/storage/box/matches, +/obj/item/weapon/storage/fancy/blackcandle_box, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/storage/fancy/whitecandle_box, +/obj/random/potion_ingredient, +/obj/random/fantasy_item, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"TK" = ( +/obj/structure/closet/cabinet, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"TL" = ( +/obj/structure/table/alien, +/obj/random/fantasy_item, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/fantasy/aliens) +"TM" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"TN" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"TO" = ( +/obj/structure/bed/chair/sofa/pew/right, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"TP" = ( +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"TR" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/meat/grubmeat, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"TS" = ( +/obj/machinery/fitness/punching_bag, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"TT" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/random/soap, +/obj/random/soap, +/obj/random/soap, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"Ua" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/accessory/bracelet/material/glass, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"Uc" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/maid/sexy, +/obj/item/weapon/handcuffs/cable/plantfiber, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"Ug" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"Ui" = ( +/obj/structure/table/woodentable, +/obj/fruitspawner/banana, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Uj" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/storage/apron, +/obj/item/clothing/under/dress/hightrousers, +/obj/item/clothing/shoes/sandal/clogs, +/obj/item/weapon/storage/wallet, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"Un" = ( +/obj/structure/bed/chair/comfy/blue, +/turf/simulated/floor/carpet/tealcarpet, +/area/redgate/fantasy/castle) +"Ur" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Us" = ( +/mob/living/simple_mob/animal/passive/cow, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"Uu" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/butcher) +"Uv" = ( +/obj/structure/easel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Uw" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"Ux" = ( +/obj/structure/closet/crate/wooden, +/obj/random/material, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Uy" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"Uz" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"UA" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"UB" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/old/horseburger, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"UF" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"UG" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"UI" = ( +/obj/structure/table/woodentable, +/obj/item/toy/figure/bandit, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"UJ" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"UK" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"UM" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wine, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"UP" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"UQ" = ( +/obj/structure/table/woodentable, +/obj/item/stack/medical/splint/ghetto, +/obj/item/stack/medical/splint/ghetto, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"US" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"UT" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/washhouse) +"UV" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"UW" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"UX" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/bible, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"UY" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"UZ" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Va" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Ve" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"Vh" = ( +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"Vj" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"Vk" = ( +/obj/structure/prop/fantasy/pinkbanner_standing, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"Vl" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"Vm" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/bundle/custom_library/religious/zoroastrianism, +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Vo" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 1 + }, +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"Vp" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"Vs" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 1 + }, +/obj/structure/table/alien/blue, +/obj/random/potion, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"Vz" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/hightrousers, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"VD" = ( +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"VE" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"VF" = ( +/obj/structure/table/woodentable, +/obj/random/potion, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"VH" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"VI" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"VK" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"VL" = ( +/obj/machinery/fitness/punching_bag, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"VM" = ( +/obj/structure/prop/machine/smelter, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"VR" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"VS" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"VT" = ( +/obj/structure/flora/pottedplant/largebush, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"VU" = ( +/obj/structure/prop/fantasy/grindstone, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"VW" = ( +/obj/structure/fence/wood/end{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"VX" = ( +/obj/structure/bed/chair/sofa/right/brown, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"VY" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"VZ" = ( +/turf/simulated/floor/outdoors/sidewalk, +/area/redgate/fantasy/streets) +"Wa" = ( +/obj/item/weapon/melee/umbrella/random, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"Wc" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"Wd" = ( +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"We" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/mininghouse) +"Wf" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"Wg" = ( +/obj/structure/table/gamblingtable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"Wj" = ( +/obj/structure/table/woodentable, +/obj/random/potion, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"Wk" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 10 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"Wn" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/house) +"Wq" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"Ws" = ( +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"Wt" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/house) +"Wu" = ( +/obj/structure/foodcart, +/turf/simulated/floor/outdoors/mud, +/area/redgate/fantasy/streets) +"Wv" = ( +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"Wx" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"Wy" = ( +/mob/living/simple_mob/vore/wolftaur/clown{ + name = "jestaur" + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Wz" = ( +/obj/fruitspawner/potato, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/fantasy/streets) +"WA" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"WB" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"WC" = ( +/obj/structure/closet/crate/chest, +/obj/item/weapon/gun/launcher/crossbow/bow, +/obj/item/weapon/arrow/standard, +/obj/item/weapon/arrow/standard, +/obj/item/weapon/arrow/standard, +/obj/item/weapon/arrow/standard, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"WF" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"WH" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/meat/chicken, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"WP" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/toy/stickhorse, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"WQ" = ( +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"WT" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/picnic_blankets_carried, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"WU" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/food/snacks/bun, +/obj/item/weapon/reagent_containers/food/snacks/bun, +/obj/item/weapon/reagent_containers/food/snacks/bun, +/obj/item/weapon/reagent_containers/food/snacks/bun, +/obj/item/weapon/reagent_containers/food/snacks/bun, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"WV" = ( +/obj/structure/table/woodentable, +/obj/item/glass_jar, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"WW" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/clothing/gloves/ring/material/gold, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"WZ" = ( +/obj/structure/closet/crate/wooden, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/random/potion_base, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"Xf" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"Xg" = ( +/obj/structure/bed/chair/sofa/corp/left, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"Xk" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"Xl" = ( +/mob/living/simple_mob/vore/alienanimals/teppi/baby, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"Xm" = ( +/obj/structure/bed/chair/sofa/pew{ + dir = 1 + }, +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Xn" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"Xp" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"Xr" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/gun/launcher/crossbow/bow, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"Xs" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"Xx" = ( +/obj/structure/table/woodentable, +/obj/structure/closet/walllocker/wooden/north, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"Xy" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 10 + }, +/turf/simulated/floor/water/deep/ocean/diving{ + edge_blending_priority = 3; + name = "well" + }, +/area/redgate/fantasy/streets) +"XB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/map_effect/interval/effect_emitter/smoke/fire, +/obj/structure/bonfire, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"XC" = ( +/obj/structure/bed, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"XD" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"XE" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"XF" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"XG" = ( +/obj/structure/bed/chair/sofa/right/black, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/fantasy/washhouse) +"XH" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"XI" = ( +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"XJ" = ( +/obj/item/frame/painting{ + pixel_y = 29 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"XL" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"XO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"XP" = ( +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/small{ + pixel_y = 13 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"XU" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"XV" = ( +/obj/effect/floor_decal/carpet/blue, +/obj/effect/floor_decal/carpet/blue{ + dir = 4 + }, +/obj/effect/floor_decal/carpet/blue{ + dir = 6 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/fantasy/cafe) +"XX" = ( +/turf/simulated/shuttle/wall/alien/hard_corner, +/area/redgate/fantasy/aliens) +"XY" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"Ya" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Yb" = ( +/obj/structure/closet/grave, +/obj/random/fantasy_item, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"Ye" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"Yg" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"Yk" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"Yn" = ( +/obj/structure/closet/crate/chest, +/obj/item/device/slow_sizegun/magic, +/obj/item/toy/character/wizard, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"Yo" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"Yq" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Yr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/wooden, +/obj/random/fishing_junk, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"Ys" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Yt" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/fantasy/streets) +"Yu" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"Yv" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"Yx" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/soup/onion, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"YC" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/bundle/custom_library/fiction/poemsforarainyday, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"YD" = ( +/obj/structure/bed/chair/sofa/bench{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"YG" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"YK" = ( +/obj/structure/fireplace, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"YN" = ( +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"YO" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/meatpie, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"YP" = ( +/mob/living/simple_mob/vore/alienanimals/teppi, +/turf/simulated/floor/wood, +/area/redgate/fantasy/streets) +"YQ" = ( +/obj/machinery/light/flicker, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/aliens) +"YR" = ( +/obj/random/mouseremains, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"YT" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"YU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/surgical/scalpel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Za" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"Zb" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"Ze" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"Zg" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Zi" = ( +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/redgate/fantasy/streets) +"Zj" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"Zk" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/house) +"Zn" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"Zo" = ( +/obj/item/weapon/ore/coal, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Zp" = ( +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Zq" = ( +/obj/effect/floor_decal/milspec/color/black/half, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"Zr" = ( +/obj/structure/table/woodentable, +/obj/random/potion, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"Zs" = ( +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/bard) +"Zu" = ( +/obj/structure/prop/fantasy/redbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/beach/sand/desert{ + outdoors = 1 + }, +/area/redgate/fantasy/arena) +"Zv" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"Zw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"Zx" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"ZB" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"ZC" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion, +/obj/random/pouch, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"ZD" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/custom_library/fiction/starsandsometimesfallingones, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"ZE" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/ore/coal, +/obj/item/weapon/ore/coal, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"ZH" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"ZI" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"ZJ" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"ZK" = ( +/mob/living/simple_mob/animal/passive/chicken, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"ZL" = ( +/obj/effect/floor_decal/plaque, +/turf/simulated/shuttle/wall/alien/blue/hard_corner, +/area/redgate/fantasy/aliens) +"ZN" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"ZP" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/gloves/ring/material/iron, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"ZS" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/potion_material/golden_scale, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"ZW" = ( +/obj/structure/bed/chair/sofa/corner/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"ZZ" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/toy/snowglobe/snowvillage, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) + +(1,1,1) = {" +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +yO +"} +(2,1,1) = {" +bp +aW +aW +aW +IK +aW +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +IK +aW +aW +aW +xl +KM +Ze +KM +Lq +KM +KM +Ze +KM +KM +KM +Ze +KM +KM +xl +aW +IK +aW +aW +aW +aW +IK +aW +aW +aW +aW +IK +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +IK +aW +aW +bp +"} +(3,1,1) = {" +bp +aW +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +KM +KM +KM +KM +KM +KM +KM +KM +KM +KM +KM +KM +KM +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +aW +So +So +So +aW +bp +"} +(4,1,1) = {" +bp +aW +ix +IK +zq +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +hU +Wv +Wv +Wv +Wv +Wv +Wv +Wv +hU +DY +LA +DY +hU +Wv +Wv +Wv +hU +Wv +Wv +Wv +Wv +Wv +Wv +bp +KM +JW +KM +Jo +KM +od +KM +Jo +KM +Ao +KM +Jo +KM +bp +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +dL +dL +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +dL +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +dL +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +Or +Or +Or +aW +bp +"} +(5,1,1) = {" +bp +qk +bp +aW +Dn +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +hU +Wv +oK +yQ +yQ +yQ +zj +Wv +hU +DY +DY +DY +hU +Wv +za +Wv +hU +Wv +za +Wv +oK +yQ +yQ +bp +KM +cT +KM +cT +KM +cT +KM +cT +KM +cT +KM +cT +KM +bp +Wt +Qr +La +La +La +La +La +La +La +Wt +dL +dL +zg +oc +xZ +NL +xZ +oc +oc +Ab +oc +oc +Ab +oc +oc +oc +Ab +oc +oc +zg +dL +sH +xS +xS +fx +Bg +mQ +dd +lp +ED +Sy +ED +Fa +XX +CM +Nx +su +Nx +pe +sH +dL +Wt +ug +Fs +pl +te +Fi +If +os +Fi +Wt +iu +Fi +Fi +Wt +dL +dL +dL +nR +nR +nR +nR +nR +nR +nR +dL +dL +dL +bp +aW +Mh +Mh +Mh +aW +bp +"} +(6,1,1) = {" +bp +aW +bp +bp +bp +bp +dL +tU +tU +tU +dL +dL +dL +dL +dL +dL +dL +hU +Wv +hU +Wv +Wv +Wv +Wv +Wv +hU +Wv +Wv +Wv +hU +Wv +uj +yQ +GV +Wv +hU +Wv +hU +Wv +Av +bp +KM +KM +KM +KM +KM +KM +KM +KM +KM +KM +KM +KM +OH +bp +Wt +La +uc +La +La +uc +La +tg +La +Wt +Gl +dL +zg +EB +PL +mO +Wg +Vj +gC +gC +gC +gC +iL +gC +gC +nF +Cv +Lf +oc +zg +dL +sH +dV +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +fx +IG +HW +AW +AW +AW +fB +sH +dL +Wt +Fi +Fi +MJ +Fi +Fi +ug +Fi +aA +Wt +os +Fi +Fi +Wt +dL +nE +dL +nR +ey +Gl +Gl +Gl +GR +Gl +dL +dL +dL +bp +aW +aW +mz +aW +aW +bp +"} +(7,1,1) = {" +bp +aW +bp +dL +dL +dL +tU +tU +tU +tU +tU +dL +dL +dL +dL +dL +dL +hU +Wv +hU +Wv +oK +yQ +yQ +yQ +GV +Wv +Wv +Wv +hU +Wv +Wv +Wv +Wv +Wv +hU +Wv +hU +Wv +JU +bp +KM +Jo +KM +Cu +KM +Ew +KM +Jo +KM +Jo +KM +Cu +KM +bp +Wt +La +La +uc +uc +La +uc +uc +La +Wt +Gl +dL +zg +EB +PL +ih +ri +pM +YN +fJ +YN +YN +je +YN +YN +YN +hY +oc +oc +zg +dL +sH +CL +EJ +SL +aI +aI +MC +aI +aI +EJ +EJ +fx +XX +Ng +AW +TL +AW +Nx +sH +dL +Wt +QZ +Fi +Fi +ug +Fi +Fi +Fi +Fi +Wt +ug +Fi +Fi +Wt +dL +dL +dL +nR +Gl +Gl +Gl +Gl +Gl +nR +dL +Gl +dL +bp +bp +bp +bp +bp +aW +bp +"} +(8,1,1) = {" +bp +aW +bp +dL +dL +dL +tU +tU +Ma +tU +tU +tU +tU +dL +dL +dL +dL +hU +Wv +hU +Wv +hU +Wv +Wv +Wv +Wv +Wv +Wv +Wv +uj +yQ +yQ +yQ +yQ +yQ +QL +Wv +hU +Wv +Wv +bp +Zr +eV +zi +cT +JN +cT +KM +cT +jR +cT +Zn +OU +Zn +bp +Wt +La +La +IB +uc +uc +uc +La +La +Wt +Gl +dL +zg +EB +PL +kJ +HA +II +AA +eR +AA +AA +xH +AA +AA +AA +pv +oc +oc +zg +Gl +sH +VM +EJ +Lh +aI +aI +aI +aI +aI +EJ +EJ +fx +bH +Nx +AW +AW +AW +Nx +sH +dL +Wt +Fi +Fi +Fi +Fi +Fi +Jf +Fi +Jf +Wt +Fi +Fi +os +Wt +dL +nR +dL +dL +GR +Gl +Gl +Gl +Gl +nR +dL +Gl +dL +dL +dL +dL +dL +bp +aW +bp +"} +(9,1,1) = {" +bp +aW +bp +dL +dL +tU +tU +Ma +Ma +Ma +Ma +tU +tU +tU +dL +dL +dL +hU +Wv +hU +Wv +hU +Wv +oK +yQ +yQ +yQ +QL +Wv +Wv +Wv +Wv +Wv +Wv +Wv +hU +Wv +hU +Wv +JU +bp +bp +bp +bp +bp +bp +bp +xl +bp +bp +bp +bp +bp +bp +bp +Wt +ZJ +La +La +uc +uc +uc +DU +NI +Wt +Gl +dL +zg +oc +cx +Md +cx +oc +oc +fN +oc +oc +fN +oc +oc +oc +oc +oc +oc +zg +Gl +sH +jA +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +fx +XX +dk +Nx +Bq +Nx +Nx +sH +dL +Wt +os +ug +Fi +Fi +aA +ru +Fi +kU +Wt +os +GL +Fi +Wt +dL +dL +dL +dL +dL +dI +nR +nR +nR +dL +dL +Gl +dI +dL +dL +dL +dL +bp +aW +bp +"} +(10,1,1) = {" +bp +aW +bp +dL +dL +tU +tU +Ma +Ma +Ma +Ma +Ma +tU +tU +tU +dL +dL +hU +Wv +hU +Wv +hU +Wv +hU +Wv +Wv +Wv +hU +yQ +yQ +yQ +yQ +yQ +zj +Wv +hU +Wv +hU +Wv +Wv +Wv +Wv +hU +ua +YD +er +bp +aW +bp +dL +dL +dL +dL +dL +dL +Wt +Wt +Wt +Wt +Wt +tT +Wt +Wt +Wt +Wt +Gl +dL +zg +zg +zg +zg +zg +zg +zg +zg +zg +Ye +zg +zg +zg +zg +Xx +SB +Yu +zg +Gl +sH +jA +fx +fx +qa +BE +dU +Jt +Hg +ah +Hg +Fa +sH +sH +sH +sH +Rq +XX +sH +dL +Wt +Wt +Wt +Wt +rd +Wt +Wt +Wt +Wt +Wt +Fi +Fi +ug +Wt +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +dL +nR +nR +nR +dL +bp +is +bp +"} +(11,1,1) = {" +bp +qk +bp +dL +tU +tU +Ma +Ma +Ma +Ma +Ma +Ma +Ma +tU +tU +dL +dL +hU +Wv +hU +Wv +xm +Wv +hU +Wv +za +xA +hU +Wv +Wv +Wv +Wv +Wv +Wv +Wv +hU +Wv +uj +yQ +yQ +QL +Wv +hU +Wv +Wv +Wv +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +zg +Xn +HK +HK +zg +Gl +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +dL +dL +sH +jf +YQ +sH +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +rd +Fi +Fi +Fi +Wt +dL +nE +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +nR +bh +Gl +Gl +bp +aW +bp +"} +(12,1,1) = {" +bp +aW +bp +dL +tU +tU +Ma +Ma +Ma +Ma +Ma +Ma +Ma +tU +tU +dL +dL +hU +Wv +hU +Wv +Wv +Wv +xm +Wv +uj +yQ +oK +yQ +zj +Wv +JU +yQ +QL +Wv +hU +Wv +Wv +Wv +Wv +hU +Wv +hU +xA +Wv +Wv +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +Wt +Wt +Ya +Wt +Wt +Wt +tT +Wt +Wt +dL +Gl +wG +wG +wG +wG +wG +Gl +wG +wG +wG +wG +wG +Gl +zg +gK +HK +HK +zg +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +hK +jf +jf +sH +Gl +Wt +Wt +rd +Wt +Wt +Wt +Wt +Wt +Gl +Wt +Fi +QZ +UB +Wt +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +dL +nR +Gl +GR +Gl +bp +aW +bp +"} +(13,1,1) = {" +bp +aW +bp +dL +tU +Ma +Ma +Ma +Ma +Ma +Ma +Ma +tU +tU +dL +dL +dL +hU +Wv +hU +Wv +za +Wv +Wv +Wv +Wv +Wv +hU +Wv +Wv +Wv +Wv +Wv +hU +Wv +hU +Wv +oK +zj +Wv +hU +Wv +uj +zj +Wv +JU +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +Wt +zd +La +uC +Wt +La +La +La +Wt +dL +Gl +wG +RR +sN +cl +wG +Gl +wG +IA +bl +IA +wG +Gl +zg +kq +HK +HK +zg +Gl +Wt +Wt +Wt +Wt +Wt +rd +Wt +Wt +Gl +sH +sH +sH +sH +sH +sH +sH +Tn +ZL +sH +Gl +Wt +Fi +Fi +te +te +te +te +Wt +rd +Wt +Wt +Wt +Wt +Wt +dL +dL +nR +nR +Gl +nR +nR +nR +dL +dL +dL +Gl +nE +nR +Gl +Gl +Gl +bp +aW +bp +"} +(14,1,1) = {" +bp +aW +bp +dL +tU +tU +Ma +Ma +Ma +Ma +Ma +tU +tU +tU +dL +dL +dL +hU +Wv +hU +Wv +hU +Wv +JU +yQ +QL +Wv +hU +Wv +DY +DY +DY +Wv +hU +Wv +xm +Wv +hU +Wv +Wv +hU +Wv +Wv +Wv +Wv +Wv +bp +aW +bp +dL +dL +Gl +Gl +Gl +Gl +Gl +Gl +Wt +rv +La +La +Wt +La +La +wf +Wt +dL +Gl +wG +HP +bl +bl +wG +Gl +wG +Pc +HP +nY +wG +Gl +zg +IC +HK +HK +zg +Gl +Wt +SO +ry +Wt +Fi +Fi +Fi +Wt +Gl +sH +oI +ga +dG +ga +ga +dG +ga +Wk +sH +Gl +Wt +dh +Fi +Fi +Fi +Fi +Fi +Wt +XO +XO +Ms +HC +XO +Wt +dL +dL +Gl +nR +Gl +Gl +Gl +Gl +Gl +nR +dI +Gl +dL +nR +ey +Gl +Gl +bp +aW +bp +"} +(15,1,1) = {" +bp +aW +bp +dL +dL +tU +tU +tU +Ma +tU +tU +tU +tU +dL +dL +dL +dL +hU +Wv +hU +Wv +hU +Wv +Wv +Wv +hU +Wv +hU +Wv +DY +LA +DY +Wv +hU +Wv +Wv +Wv +hU +Wv +za +uj +yQ +yQ +yQ +QL +Wv +bp +aW +bp +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Gl +Wt +ab +La +pA +Wt +Dt +CG +NI +Ya +dL +Gl +wG +tc +bl +Mv +wG +Gl +wG +FZ +bl +IA +wG +Gl +zg +Gz +JT +dQ +zg +Gl +Wt +Ae +Fi +rd +st +Nv +Fi +Wt +Gl +sH +tW +Pr +vC +Pr +vC +Pr +vC +Zq +sH +Gl +Wt +FQ +Fi +Fi +Fi +Fi +ug +Wt +XO +qK +XO +qK +Ms +Wt +dL +dL +nR +Gl +Gl +Ol +Gl +Gl +GR +nR +dL +Gl +dL +nR +Gl +Gl +Gl +bp +aW +bp +"} +(16,1,1) = {" +bp +aW +bp +dL +dL +dL +tU +tU +tU +tU +tU +dL +dL +dL +dL +dL +dL +hU +Wv +hU +Wv +uj +yQ +zj +Wv +hU +Wv +hU +Wv +DY +DY +DY +Wv +hU +Wv +za +Wv +hU +Wv +hU +Wv +Wv +Wv +Wv +hU +Wv +bp +aW +bp +Wt +Fi +Fi +Fi +Fi +Fi +Wt +Gl +Wt +La +La +La +tT +La +Ri +La +Wt +dL +Gl +wG +CI +bl +bl +wG +Gl +wG +bI +bl +ew +wG +Gl +zg +zg +zg +zg +zg +Gl +Wt +Wt +Wt +Wt +Nv +io +gi +Wt +Gl +sH +Dh +Pr +cb +Pr +Rs +Pr +ce +Zq +sH +Gl +Wt +dc +Fi +Fi +Fi +Fi +Fi +Wt +HC +Ms +XB +XO +XO +Wt +dL +dL +nR +GR +Gl +Gl +Gl +Gl +Gl +nR +dL +Gl +dL +nR +dL +nR +nR +bp +is +bp +"} +(17,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +hU +Wv +hU +Wv +Wv +Wv +Wv +Wv +hU +Wv +hU +Wv +Wv +Wv +Wv +Wv +hU +Wv +hU +Wv +hU +Wv +hU +Wv +oK +zj +Wv +xm +Wv +bp +qk +bp +Wt +Fi +Fi +Fi +Fi +Fi +Wt +Gl +Wt +La +EY +FP +Wt +eA +La +iU +Wt +dL +Gl +wG +GJ +bl +HP +wG +Gl +wG +rB +bl +IA +wG +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Wt +Nv +ry +rd +Fi +Nv +Jf +Wt +Gl +sH +Dh +Pr +Tb +Pr +oD +Pr +zz +Zq +sH +Gl +Wt +Kb +ug +Fi +Fi +Fi +Fi +Wt +XO +XO +XO +XO +qK +Wt +dL +dL +nR +Gl +Gl +Gl +Gl +Gl +Gl +nR +dL +Gl +dL +dL +dL +dL +dI +bp +aW +bp +"} +(18,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +KV +gE +gE +gE +Vk +dL +dL +dL +dL +dL +hU +Wv +uj +yQ +yQ +yQ +zj +Wv +hU +Wv +uj +yQ +zj +Wv +JU +yQ +GV +Wv +hU +yQ +GV +Wv +uj +yQ +GV +Wv +Wv +Wv +Wv +bp +aW +bp +Wt +Fi +IL +eO +Fi +Fi +Wt +Gl +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +dL +Gl +wG +RU +bl +rh +wG +Gl +wG +PK +bl +OJ +wG +Wt +Wt +Wt +Wt +Wt +Wt +Gl +Wt +XC +Aq +Wt +QZ +kc +Cy +Wt +Gl +sH +Vs +Pr +bZ +Pr +bZ +Pr +bZ +Zq +sH +Gl +Wt +Fi +Fi +Jf +Jf +Jf +Jf +Wt +qK +XO +XO +XO +HC +Wt +dL +dL +nR +Gl +Gl +nR +nR +Gl +Gl +Gl +dL +Gl +dL +dL +dL +dL +dL +bp +aW +bp +"} +(19,1,1) = {" +bp +qk +bp +dL +dL +dL +dL +gE +Ks +gE +Ks +gE +dL +dL +dL +dL +dL +xm +Wv +Wv +Wv +Wv +Wv +Wv +Wv +hU +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +hU +Wv +Wv +Wv +Wv +xm +Wv +Wv +JU +QL +Wv +bp +aW +bp +Wt +Fi +Fi +Fi +Fi +Fi +rd +Gl +Gl +Gl +Gl +Gl +dL +dL +dL +dL +dL +dL +Gl +wG +wG +tu +wG +wG +tu +wG +wG +tu +wG +wG +Wt +Qr +rl +uc +uc +Wt +Gl +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Gl +sH +Fm +fw +zI +hF +xY +kX +PI +IY +sH +Gl +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +dL +dL +dL +nE +dL +dL +dL +dL +dL +nR +dL +Gl +dL +dL +dL +Gl +nR +bp +aW +bp +"} +(20,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +gE +gE +gE +gE +gE +dL +dL +dL +dL +dL +Wv +Wv +JU +yQ +yQ +yQ +yQ +yQ +GV +Wv +JU +yQ +yQ +yQ +yQ +yQ +yQ +yQ +GV +yQ +yQ +QL +Wv +Wv +Wv +Wv +Wv +hU +Wv +bp +aW +bp +Wt +Fi +Fi +Fi +Fi +Fi +Wt +Gl +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +dL +dL +Gl +wG +ec +bl +bl +Ta +bl +Ta +bl +bl +EX +wG +Wt +fm +La +uc +fv +Wt +Gl +Gl +Gl +Gl +Wt +QZ +Js +iH +Wt +Gl +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +dL +nR +Gl +Gl +Gl +bp +aW +bp +"} +(21,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +gE +Ks +gE +Ks +gE +dL +dL +dL +dL +dL +za +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +hU +Wv +Wv +Wv +Wv +uj +yQ +yQ +yQ +zj +Wv +uj +yQ +bp +aW +bp +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Gl +Wt +lH +Fi +Wt +Fi +ry +Fi +Wt +dL +dL +Gl +wG +qL +bl +bl +bl +Ob +Ob +Ob +bl +bl +HH +Wt +Wt +Ei +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Fi +Jf +Fi +Wt +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +gn +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +nR +Gl +Gl +GR +bp +is +bp +"} +(22,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +KV +gE +gE +gE +Vk +dL +dL +dL +dL +dL +hU +yQ +yQ +QL +Wv +za +Wv +JU +yQ +yQ +yQ +yQ +yQ +yQ +QL +Wv +hU +Wv +Wv +za +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +bp +aW +bp +dL +dL +Gl +Gl +Gl +Gl +Gl +Gl +Wt +Fi +Fi +rd +Fi +Fi +te +Wt +dL +dL +Gl +wG +qL +bl +HP +bl +PB +wY +PB +bl +bl +HH +Wt +Ap +La +Wt +iU +La +La +NI +NI +La +Wt +vt +Fi +Fi +Wt +Wt +Wt +Wt +Wt +Wt +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +dL +dL +dL +dL +nR +Gl +Gl +Gl +bp +aW +bp +"} +(23,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +hU +Wv +Av +hU +Wv +hU +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +hU +Wv +hU +Wv +oK +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +QL +Wv +bp +aW +bp +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Gl +Wt +qw +aS +Wt +QZ +Fi +Cy +Wt +dL +dL +Gl +wG +qL +bl +bl +bl +Gt +PB +PB +bl +bl +PB +Wt +La +La +tT +La +La +Ri +Yq +Yq +La +Wt +Fi +Dq +Fi +Wt +Wt +nm +zU +La +Wt +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +FE +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +LJ +dL +bp +aW +bp +"} +(24,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +hU +Wv +JU +GV +Wv +hU +Wv +JU +yQ +yQ +yQ +yQ +QL +Wv +uj +yQ +GV +Wv +xm +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +xm +Wv +bp +aW +bp +Wt +xy +eo +eo +eo +Nz +Wt +Gl +Wt +Wt +Wt +Wt +Fi +Dq +Jf +Wt +dL +dL +Gl +wG +ZW +Zj +kP +bl +Vh +Vh +Vh +HP +bl +HM +Wt +JY +qT +Wt +Fn +La +Zg +La +La +Va +Wt +cf +Fi +hJ +Wt +Wt +ct +La +La +tT +Gl +Gl +dL +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +dL +Gl +dL +Pj +Pj +Pj +Pj +Pj +Pj +Pj +Pj +dL +Gl +Gl +dL +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +bp +aW +bp +"} +(25,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +hU +Wv +Wv +Wv +Wv +hU +Wv +Wv +Wv +Wv +Wv +Wv +hU +Wv +Wv +Wv +Wv +Wv +Wv +Wv +za +Wv +Wv +Wv +Wv +za +Wv +Wv +Wv +bp +qk +bp +Wt +vS +Fi +Fi +Fi +by +Wt +Gl +Wt +Fi +Fi +rd +Fi +Fi +Fi +Wt +dL +dL +Gl +wG +wG +wG +wG +wG +wG +wG +wG +wG +wG +wG +Wt +Wt +Wt +Wt +Wt +tT +Wt +Ya +Wt +Wt +Wt +Wt +rd +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Gl +Gl +dL +CQ +HJ +zn +Mu +TM +wZ +zb +CQ +vY +ny +hy +CQ +dL +Gl +dL +Pj +td +Cm +Pj +sk +Cm +Cm +Pj +dL +Gl +Gl +dL +CQ +qp +CC +Wd +wo +Wd +CY +CQ +bp +aW +bp +"} +(26,1,1) = {" +bp +qk +bp +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +uj +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +zj +Wv +JU +yQ +yQ +yQ +yQ +bp +aW +bp +Wt +vS +Fi +yL +Dq +Fi +rd +Gl +Wt +SO +yb +Wt +md +yb +Fi +rd +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +CQ +kb +kb +kb +kb +kb +kb +Uw +zb +JE +ag +CQ +dL +Gl +dL +Pj +Cm +Tz +Pj +bo +Bn +Cm +vK +dL +Gl +Gl +dL +CQ +qp +Wd +Wd +CQ +SN +gf +CQ +bp +is +bp +"} +(27,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +Wt +uV +Fi +yb +Fi +Fi +Wt +Gl +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +gn +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +CQ +oq +JE +JE +vM +JE +kb +CQ +Uc +JE +qB +CQ +dL +Gl +dL +Pj +UK +Cm +Pj +Cm +aE +Cm +Pj +dL +Gl +Gl +dL +SJ +Wd +Wd +Wd +CQ +CQ +CQ +CQ +bp +aW +bp +"} +(28,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +KV +TE +dL +dL +dL +dL +dL +bp +aW +bp +Wt +Wt +rd +Wt +rd +Wt +Wt +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +FE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +CQ +IF +vM +vM +vM +JE +Bl +CQ +CQ +CQ +CQ +CQ +dL +Gl +dL +Pj +Uy +Cm +Pj +Cm +Cm +Cm +Pj +dL +Gl +Gl +dL +SJ +pc +Wd +Wd +wo +Wd +CY +CQ +bp +aW +bp +"} +(29,1,1) = {" +bp +aW +bp +dL +TE +VZ +VZ +VZ +VZ +TE +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +TE +dL +dL +dL +dL +dL +bp +aW +bp +Wt +pW +Fi +Wt +Fi +Fi +Wt +Gl +Wt +Wt +Wt +Wt +rd +Wt +Wt +dL +Gl +Gl +dL +va +va +gX +gX +va +va +gX +gX +va +va +dL +dL +dL +dL +dL +Pa +Pa +Pa +Pa +Pa +Pa +Pa +Pa +Pa +Pa +Pa +vQ +Pa +Pa +Pa +dL +Gl +Gl +dL +CQ +kb +JE +JE +JE +JE +kb +CQ +vY +ny +hy +CQ +dL +Gl +dL +Pj +Pj +Cz +Pj +Pj +Cz +Pj +Pj +dL +Gl +Gl +dL +CQ +Wd +Wd +Hl +CQ +SN +gf +CQ +bp +aW +bp +"} +(30,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +KV +TE +dL +dL +dL +dL +dL +bp +aW +bp +Wt +iD +cB +Wt +vt +jp +Wt +Gl +Wt +pW +Fi +Fi +Fi +te +Wt +dL +Gl +Gl +dL +va +uo +XU +qs +qs +qs +qs +lz +ut +va +dL +dL +dL +dL +dL +Pa +Jd +PP +PP +PP +PP +PP +PP +PP +Pa +PP +cA +cA +PP +Pa +dL +Gl +Gl +dL +SJ +XG +JE +KZ +KZ +JE +kb +Uw +zb +JE +ag +CQ +dL +Gl +dL +Pj +sh +Cm +RM +Cm +Cm +Cm +Pj +dL +Gl +Gl +dL +CQ +DQ +DQ +Wd +CQ +CQ +CQ +CQ +bp +aW +bp +"} +(31,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +Wt +Cy +aS +Wt +Ae +dg +Wt +Gl +Wt +iD +Fi +Dq +Fi +Cy +Wt +dL +Gl +Gl +dL +gX +nj +NC +wm +NB +qs +qs +zp +Ju +va +va +va +va +va +dL +Pa +Ow +PP +nr +PP +PP +PP +PP +PP +Pa +PP +oB +Jd +PP +vQ +eK +Gl +Gl +dL +SJ +ki +JE +vM +vM +JE +kb +CQ +pJ +JE +qB +CQ +dL +Gl +dL +Pj +Cm +Cm +Cm +Cm +dK +Cm +vK +dL +Gl +Gl +eK +lY +Wd +Wd +Wd +wo +Wd +CY +CQ +bp +aW +bp +"} +(32,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +qk +bp +Wt +Wt +Wt +Wt +Wt +Wt +Wt +dL +Wt +qf +Fi +Fi +Fi +Jf +Wt +dL +Gl +Gl +dL +gX +MX +vx +oi +kv +qs +qs +qs +qs +va +ii +qs +Ov +va +dL +Pa +PP +PP +PP +PP +wr +PP +PP +PP +Pa +PP +Jd +Jd +PP +Pa +eK +Gl +Gl +dL +CQ +cj +JE +vM +vM +JE +Bl +CQ +CQ +CQ +CQ +CQ +dL +Gl +dL +Pj +Cm +Cm +Gs +Cm +Cm +Cm +Pj +dL +Gl +Gl +dL +CQ +Wd +Wd +Hl +CQ +SN +gf +CQ +bp +is +bp +"} +(33,1,1) = {" +bp +qk +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +Wt +Cy +Ox +as +Fi +QZ +Wt +dL +Gl +Gl +dL +va +zp +vx +oi +kv +qs +wc +wc +qs +va +MG +qs +qs +va +dL +Pa +PP +PP +PP +PU +PP +PP +wr +PP +Pa +PP +Xp +Xp +so +Pa +eK +Gl +Gl +dL +Uw +kb +JE +UT +UT +JE +kb +CQ +vY +ny +hy +CQ +dL +Gl +dL +Pj +Cm +Cm +fb +Cm +Cm +Cm +Cz +dL +Gl +Gl +dL +CQ +AO +Wd +Wd +CQ +CQ +CQ +CQ +bp +aW +bp +"} +(34,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Em +wT +wT +wT +Em +dL +dL +dL +ei +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +Wt +Wt +Wt +Wt +Wt +Wt +Wt +dL +Gl +Gl +dL +va +tt +vx +oi +kv +Db +wc +qs +tM +va +lv +lF +qs +va +dL +Pa +PP +PP +wr +PP +mU +PU +PP +PP +iE +PP +PP +PP +PP +iE +eK +Gl +Gl +dL +CQ +kb +kb +kb +kb +kb +kb +Uw +zb +JE +ag +CQ +dL +Gl +dL +Pj +wX +Cm +Cm +Nw +dK +Cm +Pj +dL +Gl +Gl +dL +SJ +qp +Wd +Wd +wo +Wd +CY +CQ +bp +aW +bp +"} +(35,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Em +Em +VL +VU +VL +Em +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +yw +qs +vx +oi +kv +Db +wc +qs +qs +yw +qs +qs +qs +va +dL +Pa +PP +PP +PP +PU +PP +PP +wr +PP +Pa +PP +PP +PP +PP +Pa +eK +Gl +Gl +dL +CQ +UP +gG +xB +UP +gG +xB +CQ +eX +JE +qB +CQ +dL +Gl +dL +Pj +UV +Cm +OX +Cm +Cm +Cm +Pj +dL +Gl +Gl +dL +CQ +qp +DO +Wd +CQ +SN +gf +CQ +bp +aW +bp +"} +(36,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Em +Em +aQ +XI +XI +XI +HS +Em +Em +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +He +He +He +He +He +hD +He +He +He +He +He +He +dL +Gl +Gl +dL +va +Bd +DL +cK +XV +Db +Aa +qs +Fc +va +qs +qs +qs +va +dL +Pa +PP +PP +PP +PP +wr +PP +PP +PP +Pa +GT +PP +PP +so +Pa +eK +Gl +Gl +dL +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +dL +Gl +dL +Pj +Pj +Pj +Pj +Pj +Pj +Pj +Pj +dL +Gl +Gl +dL +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +bp +aW +bp +"} +(37,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +Em +wT +wT +wT +Em +Em +Em +Em +wT +wT +wT +Em +Em +Em +Em +Em +Em +uR +XI +XI +Hz +XI +XI +KI +wT +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +Zv +bx +gx +He +Xk +Xk +Xk +He +Xk +Xk +Xk +He +dL +Gl +Gl +dL +va +vJ +zc +qs +qs +qs +wc +qs +kO +va +Uj +ve +sL +va +dL +Pa +Jd +PP +nr +PP +PP +PP +PP +PP +Pa +AQ +PP +DR +PP +vQ +eK +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +Wt +dm +Fi +Wt +Vz +ry +Fi +Wt +bp +is +bp +"} +(38,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +sD +Yv +Yv +GM +GM +Yv +Em +Lw +fl +RV +sD +JL +Em +YG +YG +YG +cZ +XI +XI +XI +YG +XI +XI +XI +wT +dL +dL +TE +dL +dL +dL +dL +dL +bp +qk +bp +dL +dL +hD +sl +US +uu +He +RO +US +US +He +RO +US +US +hD +dL +Gl +Gl +dL +va +va +va +va +va +va +va +va +va +va +va +va +va +va +dL +Pa +GX +PP +PP +PP +PP +PP +nr +PP +Pa +ZD +PP +PP +PP +Pa +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +Wt +SO +Fi +Wt +iD +Fi +Fi +Wt +bp +aW +bp +"} +(39,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +sD +JL +Yv +sD +sD +JL +Em +Yv +lm +lm +lm +Yv +Em +YG +YG +YG +Em +MN +XI +XI +oo +XI +XI +Gp +wT +dL +ei +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +hD +hQ +US +US +He +ot +US +nX +He +ot +US +nX +hD +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Pa +Jd +PP +Xp +Xp +Xp +Xp +PP +PP +Pa +GT +PP +PP +PP +Pa +dL +Gl +Gl +dL +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Gl +RN +RN +RN +RN +RN +RN +RN +RN +RN +RN +RN +RN +RN +RN +dL +Gl +Gl +dL +Wt +yb +Fi +Wt +cf +Fi +jq +Wt +bp +aW +bp +"} +(40,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +WB +Yv +Yv +sD +sD +Iy +Em +Lv +Yv +Yv +Yv +tV +Em +YG +Tk +Em +Em +Em +ff +XI +XI +XI +gg +Em +Em +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +SE +US +US +He +GP +US +XL +He +pQ +US +XL +He +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Pa +Pa +Pa +Pa +Pa +Pa +Pa +Pa +Pa +Pa +Pa +Pa +iE +Pa +Pa +dL +Gl +Gl +dL +Hc +QZ +cz +di +Wt +SO +ry +Wt +Gl +RN +gD +Ws +Ws +WC +RN +mL +Ws +qb +pd +pd +qb +ZC +RN +dL +Gl +Gl +dL +Wt +Wt +rd +Wt +Wt +rd +Wt +Wt +bp +aW +bp +"} +(41,1,1) = {" +bp +qk +bp +dL +TE +dL +dL +dL +dL +dL +dL +Em +Em +Qh +fE +Yv +Yv +Yv +Yv +Em +Yv +Yv +Do +Yv +Yv +Em +YG +YG +Em +Uv +Em +Em +VL +XI +VL +Em +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +He +ar +He +He +He +ar +He +He +He +ar +He +He +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Pa +xz +PP +PP +PP +Pa +dL +Gl +Gl +dL +Wt +Fi +Fi +Fi +rd +Fi +Ae +Wt +Gl +RN +Ix +Ws +Ws +Ws +RN +Pw +Ws +Uz +VR +VR +Ws +Ws +RN +dL +Gl +Gl +dL +Wt +qd +Fi +ry +Fi +Fi +BT +Wt +bp +aW +bp +"} +(42,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +Em +YG +YK +Yv +yW +Yv +Yv +Yv +Em +Yv +mD +pZ +Sv +Yv +Em +YG +YG +Em +Jv +YG +Em +Em +Em +Em +Em +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +QQ +US +US +Xk +rL +US +US +QN +bx +US +US +He +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rC +sP +rC +rC +rC +rC +rC +rC +rC +rC +rC +dL +Pa +hX +PP +PP +PP +vQ +eK +Gl +Gl +dL +rd +Fi +Dq +Fi +Wt +Wt +Wt +Wt +Gl +RN +Ws +Ws +Ws +Ws +we +Ws +Ws +Ws +VR +VR +Ws +Ws +we +dL +Gl +Gl +dL +Hc +PQ +Fi +Fi +Cy +Fi +vq +Wt +bp +is +bp +"} +(43,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +Em +YG +Yv +Yv +tB +Yv +Yv +Yv +Em +Yv +Yv +sD +Yv +Yv +Em +YG +YG +Em +Jv +YG +Lo +YG +Al +Em +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +SF +US +US +Xk +DI +US +uQ +Xk +mt +US +hS +He +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rC +rM +rM +rM +Wc +rC +ss +rM +uM +mM +rC +dL +Pa +Jd +iJ +xc +sq +Pa +dL +Gl +Gl +dL +Wt +te +te +Fi +rd +Fi +Fi +Wt +Gl +RN +Ai +FX +MK +wR +RN +HY +Ws +Ws +VI +VI +Ws +Ws +RN +dL +Gl +Gl +dL +Wt +PQ +Fi +Fi +Cy +Fi +iQ +Wt +bp +aW +bp +"} +(44,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +Em +Em +MB +ad +Yv +Yv +Yv +Yv +Em +Yv +ou +Pu +ZI +Yv +Em +YG +YG +Em +tm +YG +YG +YG +yA +Em +dL +dL +dL +dL +KV +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +tO +US +US +Ug +DI +US +US +US +US +sp +US +hD +dL +Gl +Gl +dL +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +dL +rC +pK +rM +rM +JH +rC +la +rM +hT +rM +rC +dL +Pa +Pa +Pa +Pa +Pa +Pa +dL +Gl +Gl +dL +Hc +Cy +qw +us +Wt +RX +UZ +Wt +Gl +RN +RN +RN +RN +RN +RN +RN +RN +MK +Ws +Ws +MK +um +PO +dL +Gl +Gl +eK +rd +Fi +Fi +Fi +Ij +Fi +nz +Wt +bp +aW +bp +"} +(45,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +hg +qU +Ru +Yv +Yv +Yv +Em +Yv +Yv +Yv +Yv +Yv +cZ +YG +YG +Em +uT +YG +Uv +YG +MQ +Em +dL +dL +dL +TE +VZ +VZ +dL +dL +dL +dL +dL +bp +qk +bp +dL +dL +He +UY +US +US +MZ +DI +US +QN +QN +US +US +US +hD +dL +Gl +Gl +dL +oe +fy +Zx +go +Cp +Cp +oe +zC +CN +DE +oe +dL +rC +ij +rM +rM +Qy +rC +pb +rM +rM +rM +sP +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +RN +RN +RN +we +RN +RN +RN +dL +Gl +Gl +dL +Wt +Fi +Fi +yb +UI +Fi +WP +Wt +bp +aW +bp +"} +(46,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +Du +MD +Ti +Yv +Yv +tV +Em +Ll +ck +ck +ck +KP +Em +mA +YG +cZ +YG +YG +SM +YG +AN +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +cv +US +US +Xk +DI +US +Xk +Xk +US +Xk +qE +He +dL +Gl +Gl +dL +bR +dO +Cp +Cp +Cp +Cp +oe +Cp +Cp +Af +oe +dL +rC +jx +nJ +rM +rM +rC +aU +rM +rM +Ef +rC +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +RN +Vp +Ws +Ws +NZ +Ws +RN +dL +Gl +Gl +dL +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +bp +aW +bp +"} +(47,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +cE +hR +ID +Yv +Yv +Yv +Em +Ji +kF +mq +qP +Wa +Em +YG +Tk +Em +Em +Em +Em +Em +Em +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +RO +US +Xk +Xk +DI +US +Xk +Xk +US +Xk +hv +He +dL +Gl +Gl +dL +oe +mp +rc +mp +mp +Cp +oe +wO +Cp +Cp +oe +dL +rC +rC +rC +eC +rC +rC +rC +eC +rC +rC +rC +dL +Wt +Wt +Wt +Wt +Wt +Wt +dL +Gl +Gl +dL +At +At +At +At +At +At +At +At +At +At +At +At +At +At +At +Gl +RN +Ws +Ws +tK +Ws +Ws +RN +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +is +bp +"} +(48,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +Em +Em +Em +Em +cZ +Em +Em +Em +Em +Em +Em +Em +Em +YG +YG +Em +XI +XI +SZ +XI +XI +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +US +US +US +US +US +sp +bA +bA +US +US +hS +He +dL +Gl +Gl +dL +oe +iq +iq +iq +iq +Cp +xO +Cp +gr +Cp +oe +dL +rC +rM +rM +rM +eD +vl +WW +rM +ZS +Bh +rC +dL +Wt +qQ +Sd +JX +Sd +Wt +dL +Gl +Gl +dL +At +WF +Hr +xq +Oz +ek +ek +Rj +PX +At +uU +hC +hC +rz +At +Gl +RN +Ws +Ws +MK +Ws +Ws +RN +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(49,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +HT +Lo +cZ +YG +YG +YG +YG +YG +YG +YG +YG +YG +YG +YG +YG +Em +XI +eE +Ib +ud +XI +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +hD +US +QN +QN +QN +US +US +US +US +US +US +US +hD +dL +Gl +Gl +dL +oe +rp +iq +iq +au +wd +oe +Qi +co +HE +oe +dL +rC +rM +Qy +rM +rM +rM +rM +rM +rM +rM +rC +dL +Wt +Vl +Sd +Sd +Sd +QW +eK +Gl +Gl +dL +Lr +Hr +hC +hC +hC +hC +hC +hC +hC +At +hC +hC +hC +oO +At +Gl +RN +RN +RN +RN +RN +RN +RN +dL +Gl +Gl +dL +bp +bp +bp +bp +bp +bp +bp +bp +bp +aW +bp +"} +(50,1,1) = {" +bp +qk +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +LE +YG +Em +YG +YG +YG +SM +YG +YG +YG +YG +YG +SM +YG +YG +Em +XI +kF +kF +kF +XI +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +hD +uQ +Xk +Ug +Xk +mt +US +US +US +US +Xk +qE +hD +dL +Gl +Gl +dL +cX +iq +iq +iq +au +Cp +oe +oe +oe +oe +oe +dL +rC +xE +Qy +rM +rM +tA +rM +rM +rM +Gy +rC +dL +Wt +iw +Sd +dl +ng +Wt +eK +Gl +Gl +dL +Lr +Qn +hC +hC +hC +hC +hC +hC +hC +na +hC +hC +hC +hC +At +Gl +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +bp +aW +aW +IK +aW +Xr +dF +Xr +bp +aW +bp +"} +(51,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +Em +Em +Em +Em +Em +Em +Em +cZ +Em +Em +Em +Em +Em +Em +Em +Em +YG +YG +Em +Nu +FH +kF +uH +UW +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +qk +bp +dL +dL +He +uQ +Xk +Xk +Xk +mt +US +QN +QN +US +Xk +jK +He +dL +Gl +Gl +dL +oe +Bz +iq +iq +au +Cp +oe +LY +Cp +Cp +oe +dL +rC +rM +Qy +rM +rM +rM +rM +rM +rM +rM +rC +dL +Wt +Wt +ch +Wt +Wt +Wt +eK +Gl +Gl +dL +Lr +NT +gN +RC +uq +Rp +YO +cU +hC +At +TH +Gc +xt +ll +At +Gl +Wt +Wt +Wt +Wt +Wt +Wt +Wt +dL +Gl +Gl +dL +bp +aW +Rz +Or +cu +aW +aW +aW +bp +aW +bp +"} +(52,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +Em +Em +Em +Eq +YG +YG +YG +Lo +YG +YG +YG +Lo +YG +YG +YG +Lo +YG +Em +Zp +YG +Em +XI +kF +kF +kF +XI +Em +eK +eK +eK +TE +eK +eK +eK +eK +eK +eK +bp +bp +aW +bp +bp +dL +He +MP +bA +bA +bA +US +US +Xk +Rb +US +Fh +Hk +He +dL +Gl +Gl +dL +oe +ma +iq +To +iq +Cp +xO +Cp +Cp +CK +oe +dL +rC +rM +Ua +Tu +yI +MM +dw +pq +mW +vp +rC +dL +Wt +Ku +Sd +eu +VE +QW +eK +Gl +Gl +dL +At +hC +hC +hC +hC +hC +hC +hC +hC +At +At +Wt +Wt +Wt +Wt +Wt +Wt +sw +Fi +Fi +ry +Fi +Hc +dL +Gl +Gl +dL +bp +aW +Rz +Or +cu +aW +aW +aW +bp +is +bp +"} +(53,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +Em +Em +mA +YG +YG +Ys +YG +Ys +YG +Ys +YG +Ys +YG +Ys +YG +Ys +YG +YG +Em +YG +YG +Em +Nu +FH +kF +uH +UW +Em +eK +eK +eK +TE +eK +eK +eK +eK +eK +eK +bp +jz +aW +aW +bp +dL +He +US +US +US +US +hS +He +He +He +ar +He +He +He +dL +Gl +Gl +dL +oe +oe +Eb +oe +oe +oe +oe +Gi +Cp +Cp +oe +dL +rC +rM +rM +rM +rM +rM +rM +rM +rM +rM +rC +dL +Wt +ge +Sd +Sd +Sd +Wt +eK +Gl +Gl +dL +na +hC +hC +hC +hC +hC +hC +hC +hC +At +dL +Wt +nG +Fi +Fi +nD +Wt +Fe +Fi +JM +Fi +Fi +Wt +dL +Gl +Gl +eK +xl +aW +Rz +Or +cu +aW +aW +aW +xl +aW +bp +"} +(54,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +Em +Eq +YG +YG +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +YG +Em +YG +YG +cZ +XI +kF +kF +kF +XI +Em +gE +gE +gE +gE +eK +eK +eK +eK +eK +eK +bp +sb +aW +aW +bp +dL +He +VX +Xk +US +Xk +qE +He +dL +dL +TE +dL +dL +dL +dL +Gl +Gl +FE +dL +dL +TE +dL +oe +mp +aL +Cp +Cp +Cp +oe +dL +rC +xE +rM +rM +rM +rM +rM +rM +rM +Gy +rC +dL +Wt +ge +Sd +By +Sd +ch +eK +Gl +Gl +dL +At +hC +hC +hC +hC +hC +hC +hC +hC +At +dL +Wt +iD +Fi +Fi +Fi +rd +Fi +Fi +MI +Fi +Fi +rd +dL +Gl +Gl +dL +bp +aW +Rz +Or +cu +aW +aW +aW +bp +aW +bp +"} +(55,1,1) = {" +bp +aW +bp +dL +TE +dL +Em +Em +dX +YG +YG +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +YG +Em +mA +YG +Em +Nu +FH +UG +uH +UW +Em +gE +gE +gE +gE +OE +eK +eK +eK +eK +eK +bp +Mh +aW +aW +bp +dL +He +AV +jG +US +Fh +Hk +He +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +oe +Bb +Cp +Cp +Cp +wH +oe +dL +rC +rM +vH +yf +rM +rM +rM +ZP +rO +rM +rC +dL +Wt +Gd +Sd +Mp +Sd +Wt +dL +Gl +Gl +dL +At +nP +bw +vb +lR +DS +Qu +jv +Ba +At +dL +Wt +Cy +HF +yb +Fi +Wt +Fq +yb +JM +Fi +Fi +Wt +dL +Gl +Gl +dL +bp +aW +aW +mz +aW +iy +Fd +iy +bp +aW +bp +"} +(56,1,1) = {" +bp +aW +bp +dL +TE +dL +iZ +YG +YG +YG +YG +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +YG +Em +YG +Tk +Em +Em +Em +Em +Em +Em +Em +gE +gE +gE +gE +gE +eK +eK +eK +eK +eK +bp +bp +xl +bp +bp +dL +He +He +He +hD +hD +He +He +dL +Gl +Gl +gn +Gl +Gl +Gl +gn +Gl +Gl +Gl +Gl +Gl +dL +oe +oe +oe +bR +oe +oe +oe +dL +rC +rC +sP +sP +rC +eC +rC +sP +sP +rC +rC +dL +Wt +Wt +Wt +Wt +Wt +Wt +dL +Gl +Gl +dL +At +At +Lr +Lr +At +At +Lr +Lr +At +At +dL +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Hc +Wt +Wt +Wt +dL +Gl +Gl +dL +bp +bp +bp +bp +bp +bp +bp +bp +bp +xl +bp +"} +(57,1,1) = {" +bp +aW +bp +dL +TE +dL +iZ +YG +YG +YG +YG +YG +AH +Em +AH +YG +AH +YG +AH +Em +AH +YG +AH +YG +Tk +Em +YG +YG +YG +YG +YG +YG +YG +Tk +Em +Zi +gE +gE +gE +gE +op +eK +OE +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +FE +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +FE +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +FE +Gl +Gl +dL +dL +dL +dL +dL +dL +eK +eK +eK +eK +eK +LX +"} +(58,1,1) = {" +bp +qk +bp +dL +TE +dL +iZ +YG +zP +kF +kF +kF +kF +yE +kF +kF +kF +kF +kF +yE +kF +kF +kF +kF +kF +Em +Sw +kF +kF +kF +kF +kF +kF +TD +YG +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Wu +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +LX +"} +(59,1,1) = {" +bp +aW +bp +dL +TE +dL +iZ +YG +zP +Iq +kF +lP +kF +kF +kF +kF +kF +kF +kF +kF +kF +kF +kF +kF +kF +Yk +kF +kF +kF +kF +kF +kF +kF +TD +YG +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +tk +Xy +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +LX +"} +(60,1,1) = {" +bp +aW +bp +dL +TE +dL +iZ +YG +zP +kF +kF +kF +kF +UG +kF +kF +kF +kF +kF +UG +kF +kF +kF +kF +kF +Em +Sw +kF +kF +kF +kF +kF +kF +TD +YG +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Fw +Je +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +LX +"} +(61,1,1) = {" +bp +aW +bp +dL +TE +dL +iZ +YG +YG +YG +YG +YG +Ys +Em +Ys +YG +Ys +YG +Ys +Em +Ys +YG +Ys +YG +Tk +Em +YG +YG +YG +YG +YG +YG +YG +Tk +Em +Zi +gE +gE +gE +gE +op +eK +OE +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +gn +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +gn +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +LX +"} +(62,1,1) = {" +bp +aW +bp +dL +TE +dL +iZ +YG +YG +YG +YG +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +YG +Em +YG +Tk +Em +Em +Em +Em +Em +Em +Em +gE +gE +gE +gE +gE +eK +eK +eK +eK +eK +bp +bp +xl +bp +bp +dL +sR +wi +sR +BG +sR +wi +sR +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +gn +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +dL +eK +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +eK +eK +eK +eK +eK +LX +"} +(63,1,1) = {" +bp +aW +bp +dL +TE +dL +Em +Em +dX +YG +YG +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +YG +Em +mA +YG +Em +YC +YG +cG +YG +AY +Em +gE +gE +gE +gE +Vk +eK +eK +eK +eK +eK +bp +Ka +aW +aW +bp +dL +sR +QF +gz +wE +gz +qF +sR +dL +eY +Gl +Gl +Gl +gn +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +HO +HO +xi +HO +HO +HO +xi +HO +HO +HO +dL +iS +iS +uD +uD +iS +iS +iS +kT +iS +iS +iS +uD +uD +iS +iS +dL +Gl +Gl +dL +km +km +id +km +ef +ef +km +km +ef +km +km +dL +We +We +We +le +We +We +We +We +le +We +We +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +bp +bp +bp +xl +bp +"} +(64,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +Em +TP +YG +YG +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +YG +Em +YG +YG +cZ +YG +YG +CF +YG +vZ +Em +gE +gE +gE +gE +eK +eK +eK +eK +eK +eK +bp +sb +aW +aW +bp +dL +sR +kx +wE +wE +wE +AD +wi +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +gE +HO +kY +kY +Pl +xJ +kY +kY +Pl +kY +HO +dL +iS +Te +lt +rk +ai +rD +rD +jQ +rD +rD +ai +yH +lt +bj +iS +dL +Gl +Gl +dL +km +hs +sY +sY +sY +hs +km +sY +Oy +BA +km +dL +We +Go +aY +aY +aY +QT +We +VT +bQ +Hj +le +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +bp +Or +aW +aW +bp +"} +(65,1,1) = {" +bp +qk +bp +dL +TE +dL +dL +Em +Em +mA +YG +YG +AH +YG +AH +YG +AH +YG +AH +YG +AH +YG +AH +YG +YG +Em +YG +YG +Em +Hx +YG +YG +YG +fz +Em +eK +eK +eK +TE +eK +eK +eK +eK +eK +eK +bp +Mh +aW +aW +bp +dL +sR +yy +wE +QU +wE +Tj +sR +dL +dL +dL +dL +TE +dL +dL +dL +FE +Gl +Gl +dL +gE +gE +Tv +kY +kY +kY +xJ +AU +kY +yg +kY +HO +dL +iS +Mw +wj +wj +jQ +wj +wj +jQ +wj +wj +jQ +wj +wj +Mo +iS +dL +Gl +Gl +dL +km +ns +sY +sY +sY +sY +id +sY +vI +GE +km +dL +We +CE +aY +WQ +aY +aY +We +GG +aY +aY +le +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +bp +Mh +aW +aW +bp +"} +(66,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +Em +Em +Em +TP +YG +YG +YG +SM +YG +YG +YG +SM +YG +YG +YG +SM +YG +Em +Zp +YG +Em +jl +YG +bN +YG +RA +Em +eK +eK +eK +TE +eK +eK +eK +eK +eK +eK +bp +bp +aW +bp +bp +dL +sR +Ps +wE +wE +wE +OI +sR +dL +Hu +WA +Hu +KE +Hu +WA +Hu +dL +Gl +Gl +dL +HO +HO +HO +kY +xJ +xJ +xJ +Os +kY +Ui +kY +HO +dL +iS +Mw +Id +wj +jQ +wj +wj +jQ +wj +wj +jQ +wj +wj +Gx +uD +dL +Gl +Gl +dL +ef +YT +sY +sY +sY +nC +km +sY +UA +sY +km +dL +We +aY +OT +WQ +aY +aY +We +OT +aY +aY +We +eK +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +bp +Fd +aW +aW +bp +"} +(67,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +Em +Em +Em +Em +Em +Em +Em +cZ +Em +Em +Em +Em +Em +Em +Em +Em +YG +YG +Em +Jm +YG +YG +YG +Lg +Em +eK +eK +eK +TE +eK +eK +eK +eK +eK +eK +dL +bp +aW +bp +dL +dL +sR +mx +wE +wE +wE +Ve +sR +dL +Hu +df +xL +gU +xL +pI +Hu +dL +Gl +Gl +dL +HO +HQ +kY +kY +kY +kY +kY +kY +kY +kY +My +HO +dL +iS +RI +wj +wj +jQ +iY +iY +jQ +iY +iY +jQ +jQ +jQ +jQ +uD +dL +Gl +Gl +dL +ef +YT +sY +sY +sY +sY +km +km +km +km +km +dL +We +VT +aY +sS +aY +aY +We +OT +aY +aY +JZ +eK +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +bp +bp +bp +is +bp +"} +(68,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +vo +YG +uz +YG +YG +YG +Lo +YG +YG +YG +YG +YG +Lo +YG +YG +Em +JO +YG +KU +YG +Vm +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +sR +lj +kA +kA +kA +wE +sR +dL +Hu +Ph +gU +gU +gU +gU +Hu +dL +Gl +Gl +dL +HO +PJ +kY +kY +RF +kY +kY +xX +kY +kY +cc +HO +dL +iS +jQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +rD +rD +rD +jQ +jQ +iS +dL +Gl +Gl +dL +km +sY +sY +sY +sY +sY +km +Ln +sY +nZ +km +dL +We +We +We +We +JZ +We +We +ht +aY +aY +We +eK +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(69,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +vo +vo +Em +YG +YG +YG +YG +YG +YG +YG +YG +YG +YG +YG +YG +Em +vn +YG +cG +YG +lk +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +qk +bp +dL +dL +sR +wE +wE +wE +wE +wE +sR +dL +WA +dM +gU +gU +gU +gU +WA +dL +Gl +Gl +dL +xi +eT +kY +kY +pg +kY +kY +tC +kY +kY +cc +HO +dL +iS +NR +jQ +jQ +jQ +jQ +jQ +jQ +jQ +wj +Id +wj +jQ +CR +iS +dL +Gl +Gl +dL +km +JC +JC +vI +JC +sY +km +Ha +sY +nZ +km +dL +We +Fg +aY +We +aY +aY +ig +aY +aY +HD +le +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(70,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +Em +Em +Em +Em +cZ +Em +Em +Em +Em +Em +Em +Em +Em +YG +YG +Em +Em +Em +Em +Em +Em +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +sR +Qb +wE +wE +wE +wE +sR +dL +Hu +vw +oH +Rw +VF +gU +Hu +dL +Gl +Gl +dL +xi +Er +kY +kY +Kk +kY +kY +tC +kY +kY +cc +HO +dL +iS +rD +rD +rD +rD +rD +rD +jQ +jQ +wj +wj +wj +jQ +jQ +iS +dL +Gl +Gl +dL +km +sY +lf +lf +sY +nC +km +al +sY +zV +km +dL +We +wt +qX +We +aY +OT +LI +aY +aY +HD +le +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(71,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +oJ +YG +YG +YG +Wy +YG +Em +iW +YG +eZ +YG +Cf +Em +YG +Tk +Em +XI +yi +yC +jM +XI +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +sR +sR +BG +sR +sR +sR +sR +dL +Hu +gU +gU +gU +gU +gU +Hu +dL +Gl +Gl +dL +xi +aZ +kY +kY +Kk +kY +kY +Eo +kY +kY +oh +HO +dL +iS +wj +Pf +Pf +Pf +wj +wj +jQ +jQ +iY +iY +iY +jQ +jQ +uD +dL +Gl +Gl +dL +km +mZ +sY +sY +sY +sY +id +sY +sY +sY +km +dL +We +aY +aY +JZ +aY +sS +aY +aY +sS +HD +We +dL +Gl +Gl +dL +eK +eK +NW +NW +NW +eK +eK +eK +bp +aW +bp +"} +(72,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +kj +vT +ka +ka +Ru +Tk +Em +qc +YG +YG +YG +Tk +Em +mA +YG +cZ +XI +XI +XI +XI +XI +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +sR +Wx +wE +gz +sR +dL +dL +dL +Hu +qO +gU +gU +gU +UQ +Hu +dL +Gl +Gl +dL +HO +yd +kY +kY +pp +kY +kY +Eo +kY +kY +oh +HO +dL +iS +IM +jQ +jQ +jQ +jQ +wj +jQ +jQ +jQ +jQ +jQ +jQ +rD +uD +dL +Gl +Gl +dL +km +ap +sY +sY +sY +sY +km +Ci +Ci +Ci +km +dL +We +We +We +We +JZ +We +We +We +We +We +We +dL +Gl +Gl +dL +eK +NW +eK +eK +eK +NW +eK +eK +bp +aW +bp +"} +(73,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +YG +DT +vv +vv +gW +YG +Em +pS +YG +YG +YG +YG +cZ +YG +YG +Em +XI +XI +XI +XI +dj +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +sR +jZ +wE +wE +wi +dL +dL +dL +Hu +xu +EO +fM +gU +QP +Hu +dL +Gl +Gl +dL +HO +yd +kY +kY +pp +kY +kY +Eo +kY +kY +oh +HO +dL +iS +tG +jQ +jQ +jQ +jQ +jQ +jQ +jQ +ON +wj +ty +jQ +wj +iS +dL +Gl +Gl +dL +km +km +km +km +km +zo +km +km +km +km +km +dL +We +MO +aM +aY +aY +aM +aY +aY +aM +Hb +We +dL +Gl +Gl +dL +NW +eK +eK +eK +eK +eK +NW +eK +bp +aW +bp +"} +(74,1,1) = {" +bp +qk +bp +dL +TE +dL +dL +dL +dL +dL +dL +Em +Em +mA +DT +vv +vv +gW +YG +Em +Cg +YG +YG +YG +YG +Em +YG +YG +Em +XI +XI +RW +XI +Nc +Em +dL +dL +dL +TE +VZ +VZ +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +sR +on +Wf +kA +sR +dL +dL +dL +Hu +Hu +Hu +Hu +KE +Hu +Hu +dL +Gl +Gl +dL +HO +HQ +kY +kY +kY +xp +kY +kY +kY +kY +My +HO +dL +iS +KH +vR +Dg +jQ +jQ +pB +jQ +jQ +ON +RE +ty +jQ +iY +iS +dL +Gl +Gl +dL +km +TS +KA +zo +zo +zo +zo +zo +KA +zo +km +dL +We +lo +aY +aY +aY +aY +aY +aY +aY +aY +We +dL +Gl +Gl +dL +NW +eK +eK +qI +eK +eK +NW +eK +bp +aW +bp +"} +(75,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +Em +YG +wP +DT +vv +vv +gW +YG +Em +LR +YG +YG +YG +FD +Em +YG +YG +Em +oG +XI +XI +XI +VY +Em +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +qk +bp +dL +dL +sR +sR +sR +sR +sR +dL +dL +dL +Hu +uZ +gU +xL +gU +Ml +Hu +dL +Gl +Gl +dL +HO +HO +HO +Tv +HO +HO +HO +Tv +HO +HO +HO +HO +dL +iS +iS +iS +iS +kT +iS +iS +iS +kT +iS +iS +iS +kT +iS +iS +dL +Gl +Gl +dL +km +zo +zo +zo +zo +zo +zo +zo +zo +zo +km +dL +We +bu +aY +aY +aY +OT +ig +JD +HD +aY +le +dL +Gl +Gl +dL +NW +eK +eK +eK +eK +eK +NW +eK +bp +is +bp +"} +(76,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +Em +YG +YG +DT +vv +vv +gW +YG +Em +LR +YG +YG +YG +cG +Em +YG +YG +Em +XI +jD +Em +Em +Em +Em +Em +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Hu +Xf +gU +gU +cM +zx +WA +dL +Gl +Gl +dL +HO +Ge +kY +kY +kY +HO +qq +kY +lO +lO +kY +HO +dL +iS +Qj +jQ +ai +jQ +lb +iS +TT +jQ +sK +iS +sg +jQ +jQ +iS +dL +Gl +Gl +dL +km +eB +Jz +CX +Jz +jY +Jz +CX +Jz +eB +km +dL +We +ht +aY +aY +aY +OT +xb +ig +HD +aY +le +dL +Gl +Gl +dL +eK +NW +eK +eK +eK +NW +eK +eK +bp +aW +bp +"} +(77,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +Em +Em +mA +DT +vv +vv +gW +YG +Em +Bp +YG +YG +YG +PG +Em +YG +YG +Em +IS +Em +Em +eQ +aB +Ad +Em +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Hu +xa +kH +gU +gU +kK +Hu +dL +Gl +Gl +dL +HO +Aj +kY +kY +kY +HO +xj +kY +xJ +xJ +kY +HO +dL +iS +hE +jQ +jQ +jQ +qm +iS +BQ +jQ +jQ +iS +Dk +jQ +jQ +uD +dL +Gl +Gl +dL +km +zo +zo +Es +zo +zo +zo +Es +zo +zo +km +dL +We +nn +aY +aY +aY +OT +ig +ig +HD +qX +We +dL +Gl +Gl +dL +eK +eK +NW +NW +NW +eK +eK +eK +bp +aW +bp +"} +(78,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +YG +DT +vv +vv +gW +YG +Em +EV +YG +YG +YG +rY +Em +YG +Tk +Em +Em +Em +Jn +XI +XI +XI +SZ +Em +Em +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Hu +Hu +Hu +Hu +Hu +Hu +Hu +dL +Gl +Gl +dL +HO +Az +kY +kY +hi +HO +jS +kY +xJ +xJ +kY +HO +dL +iS +qS +jQ +jQ +jQ +Pf +iS +BQ +jQ +jQ +iS +jQ +jQ +jQ +iS +dL +Gl +Gl +dL +km +kw +lC +Es +kw +lC +kw +Es +lC +kw +km +dL +We +Ho +aY +aY +aY +OT +ig +oW +HD +aY +le +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(79,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +kj +IP +wg +wg +PW +Tk +Em +Co +Co +YG +YG +pU +Em +YG +YG +YG +Em +av +XI +zF +zF +zF +XI +XI +wT +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +HO +xJ +Jg +xp +kY +HO +fQ +kY +Oc +ze +kY +HO +dL +iS +xP +jQ +ER +mm +KH +iS +KH +pB +XF +iS +jI +ly +XE +iS +dL +Gl +Gl +dL +km +km +km +km +km +km +km +km +km +km +km +dL +We +aY +aY +aY +aY +OT +As +ig +HD +aY +le +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(80,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +OK +YG +YG +YG +YG +YG +Em +Co +Co +YG +YG +cG +Em +YG +YG +YG +cZ +XI +XI +Un +mv +wU +XI +XI +wT +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +Uu +Uu +Uu +Uu +Uu +Uu +mk +Uu +Uu +Uu +Uu +Uu +dL +dL +dL +dL +Gl +Gl +dL +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +dL +iS +iS +iS +iS +iS +iS +iS +iS +iS +iS +iS +iS +iS +iS +iS +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +We +ZE +aY +aY +aY +aY +aY +aY +aY +aY +We +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(81,1,1) = {" +bp +qk +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +Em +wT +wT +wT +Em +Em +Em +Em +wT +wT +wT +Em +Em +Em +Em +Em +Em +av +XI +zF +zF +zF +XI +XI +wT +dL +ei +TE +dL +dL +dL +dL +dL +bp +qk +bp +dL +dL +Uu +Ry +Ry +Lz +Uu +me +VD +VD +hA +VD +VD +Uu +dL +dL +dL +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +dL +dL +dL +We +We +We +We +We +We +We +We +We +We +fY +aY +bt +sS +NP +aY +aY +RG +bQ +We +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(82,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Em +Em +Tp +XI +XI +XI +Yn +Em +Em +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +Uu +NA +Lk +VD +Uu +Pz +VD +mn +VD +VD +VD +Uu +dL +dL +dL +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +dL +dL +dL +We +Dw +BD +NM +BD +BD +NM +BD +BD +We +ht +aY +aY +We +We +We +We +We +We +We +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +is +bp +"} +(83,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Em +Em +bD +XI +XI +Em +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +Uu +NA +VD +qZ +Zb +VD +VD +WH +VD +VD +VD +Zb +VZ +VZ +VZ +VZ +Gl +Gl +dL +tf +tf +tf +tf +tf +tf +tf +tf +tf +tf +tf +tf +tf +tf +Wn +Wn +Wn +Wn +Wn +Wn +Wn +Wn +Wn +Wn +Wn +Wn +Wn +Wn +dL +Gl +Gl +dL +dL +dL +dL +We +BD +BD +BD +BD +BD +Th +BD +BD +We +aY +aY +aY +We +uY +aY +aM +aY +rg +We +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(84,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Em +wT +wT +wT +Em +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +Uu +TK +VD +VD +Uu +VD +VD +TR +VD +VD +vh +Uu +dL +dL +dL +dL +Gl +Gl +dL +tf +Ly +Ck +Za +Za +Ck +Za +tf +Gj +jP +Za +AS +hV +tf +pi +Sd +ge +Sd +cV +Wn +Cy +cz +Cy +us +ry +Fi +Qv +Wn +dL +Gl +Gl +dL +dL +dL +dL +We +BD +BD +bL +bL +bL +BD +BD +BD +We +aY +aY +aY +We +aY +Ux +aY +aY +aY +We +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(85,1,1) = {" +bp +aW +bp +dL +TE +dL +dn +dL +dn +dL +dn +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +ei +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +Uu +Uu +Uu +Uu +Uu +lJ +VD +du +VD +VD +mn +mk +dL +dL +dL +dL +Gl +Gl +dL +tf +tJ +Za +Za +FV +Yg +Za +tf +Ld +OM +qh +EC +lG +tf +Rm +Sd +XP +Sd +sX +Wn +Cy +Jh +Ny +us +Fi +Fi +Fi +Hc +dL +Gl +Gl +dL +dL +dL +dL +We +BD +BD +bL +bL +bL +BD +Sj +BD +We +aY +aY +Zo +We +YR +aY +aY +SX +qX +We +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(86,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +Uu +Ok +VD +ui +Uu +VD +VD +Mj +VD +VD +mn +mk +dL +dL +dL +dL +Gl +Gl +dL +VH +xe +Za +Za +Ot +Yg +Za +ZN +pH +pH +pH +pH +pH +tf +mw +Sd +ur +Sd +lT +Wn +Jf +Jf +Jf +Fi +Fi +Fi +QZ +Hc +dL +Gl +Gl +dL +dL +dL +dL +We +BD +BD +bL +bL +bL +BD +BD +BD +Bk +aY +aY +aY +JZ +aY +aY +aY +aY +aY +We +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(87,1,1) = {" +bp +aW +bp +dL +TE +dL +dn +dL +dn +dL +dn +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +Uu +nb +VD +VD +Zb +VD +VD +cs +VD +VD +mn +mk +dL +dL +dL +dL +Gl +Gl +dL +tf +OY +Za +Za +Ot +Yg +Za +tf +pH +Ac +eS +qA +pH +tf +Xg +Sd +Sd +Sd +Sd +rd +Fi +Fi +Fi +Fi +Fi +Fi +Cy +Hc +dL +Gl +Gl +dL +dL +dL +dL +We +BD +BD +bL +bL +bL +BD +BD +BD +We +Cw +aY +aY +We +ht +bt +YR +Ux +aY +We +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(88,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +qk +bp +dL +dL +Uu +WV +oX +VD +Uu +Ik +VD +VD +Sr +VD +mn +Uu +dL +dL +dL +dL +Gl +Gl +dL +tf +WT +Np +Za +Za +Np +pa +tf +pH +pH +pH +pH +pH +tf +Sd +Sd +Sd +Sd +Sd +Wn +dg +yb +Fi +Fi +xf +lS +Jh +Wn +dL +Gl +Gl +dL +dL +dL +dL +We +BD +BD +bL +bL +bL +BD +BD +BD +We +bn +aY +Od +We +aY +aY +aY +aY +qX +We +dL +Gl +Gl +dL +bO +Mz +Mz +Mz +Mz +Mz +Mz +Mz +bp +aW +bp +"} +(89,1,1) = {" +bp +aW +bp +dL +TE +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +Uu +Uu +Uu +Uu +Uu +Uu +Uu +Uu +Uu +Uu +Uu +Uu +dL +dL +dL +dL +Gl +Gl +dL +tf +tf +tf +tf +tf +tf +tf +tf +Ld +pH +pH +pH +lG +tf +rx +Sd +Sd +By +oV +Wn +Wn +Wn +Wn +Wn +Wn +Wn +Wn +Wn +dL +Gl +Gl +dL +dL +dL +dL +We +BD +BD +BD +BD +BD +BD +BD +BD +We +bn +aY +FB +We +aY +Dm +Ux +aY +aY +We +dL +Gl +Gl +dL +rU +dL +dL +dL +dL +dL +dL +dL +bp +is +bp +"} +(90,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +tf +Wq +Za +Za +tf +pH +pH +eb +pH +pH +pH +pH +pH +tf +ZZ +Sd +Sd +Sd +Sd +Wn +Sd +Sd +Wn +jp +Ae +Fi +Fi +Wn +dL +Gl +Gl +dL +dL +dL +dL +We +BD +BD +Sn +Sj +BD +Sn +LN +gT +We +Gb +Gb +Gb +We +ZE +sj +dx +Hy +sj +We +dL +Gl +Gl +dL +rU +dL +dL +dL +ZK +dL +dL +dL +bp +aW +bp +"} +(91,1,1) = {" +bp +qk +bp +dL +dL +dL +sn +ub +vL +ub +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +dL +Gl +Gl +dL +tf +hZ +Za +Za +ZN +pH +pH +tf +Yo +hV +PT +pH +Ne +tf +mo +Sd +Sd +Sd +Sd +ch +Sd +Sd +rd +Fi +Fi +Fi +SO +Wn +dL +Gl +Gl +dL +dL +dL +dL +We +We +We +We +We +We +We +We +We +We +We +We +We +We +We +We +We +We +We +We +dL +Gl +Gl +dL +rU +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(92,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +fs +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +fs +dL +Gl +Gl +dL +tf +Ag +Np +wq +tf +pH +lG +tf +tf +yD +tf +eb +tf +tf +Wn +ch +Wn +QW +Wn +Wn +rx +Sd +Wn +dg +yb +Fi +Pb +Wn +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +rU +dL +dL +ZK +dL +dL +dL +dL +bp +aW +bp +"} +(93,1,1) = {" +bp +aW +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +aW +bp +dL +dL +fs +MU +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +fs +dL +Gl +Gl +dL +tf +tf +tf +tf +tf +fT +pH +tf +dL +dL +dL +TE +dL +dL +dL +TE +dL +dL +dL +Wn +XJ +Sd +Wn +Wn +Wn +Wn +Wn +Wn +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +rU +dL +dL +dL +dL +dL +ZK +dL +bp +aW +bp +"} +(94,1,1) = {" +bp +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +mz +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +aW +mz +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +bp +dL +dL +fs +aN +aN +fs +it +it +it +lM +it +it +it +fs +aN +aN +fs +dL +Gl +Gl +dL +tf +cC +Zs +JP +tf +pH +pH +tf +dL +dL +dL +TE +dL +dL +dL +TE +dL +dL +dL +Wn +Sd +Sd +Wn +iD +Fi +PF +Kd +Wn +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +rU +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(95,1,1) = {" +bp +aW +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +dL +dL +fs +nM +aN +it +rF +rF +rF +rF +rF +rF +rF +it +aN +aN +fs +dL +Gl +Gl +dL +tf +HU +Zs +Zs +Fj +pH +lG +tf +dL +dL +dL +TE +dL +dL +dL +TE +dL +dL +dL +Wn +rx +Sd +rd +Fi +Fi +PF +Zk +Wn +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(96,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +fs +WZ +aN +it +rF +sa +rF +rF +rF +rF +rF +it +aN +aN +fs +dL +Gl +Gl +dL +vf +Zs +Zs +wb +tf +fT +pH +tf +dL +dL +dL +TE +dL +dL +dL +TE +dL +dL +dL +Wn +XJ +xF +Wn +Fi +Fi +PF +PF +Hc +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +IJ +IJ +XH +XH +IJ +IJ +IJ +Gu +IJ +XH +XH +IJ +IJ +Mz +Mz +Mz +Mz +Mz +Mz +Mz +mC +Mz +se +dL +VW +Mz +Mz +Mz +bp +aW +bp +"} +(97,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +fs +wh +aN +it +rF +sa +rF +rF +rF +rF +rF +it +aN +aN +fs +dL +Gl +Gl +dL +tf +yR +fL +Zs +tf +pH +pH +tf +dL +dL +dL +TE +dL +dL +dL +TE +dL +dL +dL +Wn +Sd +xF +Wn +yl +Fi +BN +Km +Wn +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +IJ +Au +vO +vO +nK +IJ +AJ +vO +xW +vO +vO +vO +IJ +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +is +bp +"} +(98,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +fs +aN +aN +it +rF +sa +rF +rF +rF +rF +rF +it +cr +aN +fs +dL +Gl +Gl +dL +tf +tf +tf +tf +tf +yD +yD +tf +dL +dL +dL +TE +dL +dL +dL +TE +dL +dL +dL +Wn +QW +QW +Wn +Wn +Wn +Wn +Wn +Wn +dL +Gl +Gl +dL +bO +Mz +Mz +Mz +Mz +Mz +Mz +IJ +oE +vO +vO +vO +Gu +vO +vO +vO +zD +iI +fc +IJ +IJ +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(99,1,1) = {" +bp +qk +bp +dL +eK +eK +eK +Ki +eK +eK +Ki +Yb +eK +Ki +eK +eK +Ki +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +fs +aN +aN +lM +rF +sa +rF +rF +rF +rF +rF +lM +aN +aN +fs +dL +Gl +Gl +FE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +FE +Gl +Gl +dL +rU +dL +dL +tU +dL +dL +dL +IJ +in +FM +SS +Rg +IJ +xK +vO +vO +Ds +fc +fc +ia +IJ +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(100,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +fs +aN +aN +it +rF +rF +rF +rF +rF +rF +In +it +aN +aN +fs +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +rU +dL +tU +tU +tU +tU +dL +IJ +IJ +IJ +IJ +IJ +IJ +xK +vO +vO +Ds +fc +fc +ia +IJ +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(101,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +ww +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +fs +aN +aN +it +rF +rF +ax +rF +rF +In +In +it +aN +aN +fs +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +rU +tU +tU +tU +tU +dL +dL +IJ +Fo +xW +vO +jw +IJ +xK +vO +UF +xk +tX +fc +IJ +IJ +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(102,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +tp +dL +dL +dL +dL +dL +dL +dL +dL +fs +aN +aN +it +rF +rF +rF +rF +In +In +wu +it +aN +aN +fs +dL +Gl +Gl +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bO +Mz +ws +dL +tU +tU +dL +dL +dL +XH +Ez +vO +vO +vO +Gu +vO +FM +vO +vO +vO +vO +IJ +BC +dL +dL +dL +dL +dL +Us +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(103,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +fs +aN +aN +it +rF +rF +rF +rF +In +wu +wu +it +aN +aN +fs +dL +Gl +Gl +dL +dL +KV +gE +gE +gE +gE +gE +KV +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +XH +vO +vO +vO +vO +IJ +IJ +IJ +Gu +IJ +IJ +IJ +IJ +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(104,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +zw +eK +eK +eK +dL +dL +dL +dL +dL +dL +dL +gk +gk +gk +rE +rE +gk +gk +gk +rE +rE +gk +gk +gk +rE +rE +gk +gk +gk +gk +dL +dL +dL +dL +dL +dL +dL +fs +lI +aN +fs +it +it +it +lM +it +it +it +fs +aN +aN +fs +dL +Gl +Gl +dL +dL +gE +Ks +gE +gE +gE +Ks +gE +wI +Rv +LV +Rv +Rv +LV +Rv +Rv +LV +Rv +Rv +LV +Rv +Rv +wI +wI +wI +dL +dL +dL +dL +dL +rU +dL +dL +el +Yt +dL +uh +Yt +dL +IJ +Wj +mT +do +AJ +IJ +gO +vO +vO +xR +Kq +vO +XH +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +is +bp +"} +(105,1,1) = {" +bp +qk +bp +dL +eK +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +eK +eK +dL +gk +gk +rE +rE +gk +gk +gk +pY +pY +pY +pY +Ro +pY +pY +pY +pY +ao +pY +wQ +pY +pY +ao +pY +PM +gk +dL +dL +dL +dL +dL +dL +dL +fs +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +fs +dL +Gl +Gl +dL +dL +gE +gE +gE +gE +gE +gE +gE +wI +Rv +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +fu +Rv +wI +wI +dL +dL +dL +dL +rU +dL +dL +Yt +Yt +dL +Yt +Yt +dL +IJ +IJ +IJ +IJ +IJ +IJ +Sf +vO +vO +AJ +AJ +vO +IJ +dL +dL +dL +dL +Us +dL +dL +dL +dL +dL +dL +dL +Us +dL +dL +bp +aW +bp +"} +(106,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +gk +gk +Ro +pY +pY +pY +ao +pY +pY +rP +pY +rP +pY +rP +pY +rP +pY +rP +pY +rP +pY +rP +pY +pY +PM +rE +dL +dL +dL +dL +dL +dL +dL +fs +zB +aN +aN +aN +aN +aN +aN +aN +aN +ft +AR +aC +KS +fs +dL +Gl +Gl +dL +dL +gE +gE +gE +gE +gE +gE +gE +wI +Rv +BY +Rv +wI +wI +wI +wI +Ec +wI +wI +wI +Rv +Rv +BY +Rv +vX +wI +wI +dL +dL +dL +rU +dL +dL +Yt +el +dL +uh +uh +dL +IJ +QR +vO +xW +yT +IJ +jj +vO +vO +AJ +AJ +vO +Gu +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(107,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +gk +pY +pY +pY +pY +pY +Nn +PM +pY +jO +pY +jO +pY +jO +pY +jO +pY +jO +pY +jO +pY +jO +pY +pY +PM +rE +dL +dL +dL +dL +dL +dL +dL +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +dL +Gl +Gl +dL +dL +wI +wI +wI +Rv +wI +wI +wI +wI +Rv +BY +Rv +wI +ej +LV +Rv +Rv +LV +nU +wI +wI +Rv +BY +Rv +vX +yY +wI +dL +dL +dL +rU +dL +dL +el +Yt +dL +Yt +Yt +dL +XH +ms +vO +vO +vO +Gu +vO +vO +vO +Mq +Mq +vO +IJ +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(108,1,1) = {" +bp +aW +bp +dL +dL +CH +CH +CH +CH +CH +CH +eK +eK +eK +eK +eK +eK +dL +rE +pY +pY +eW +pY +pY +pY +pY +pY +fD +pY +fD +pY +fD +pY +fD +pY +Vo +pY +fD +pY +fD +pY +pY +pY +gk +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +FE +Gl +Gl +dL +dL +wI +Rv +Rv +Rv +Rv +LV +Rv +wI +Rv +BY +Ig +wI +iV +Rv +Rv +Rv +Rv +Rv +pn +wI +jb +BY +Rv +Rv +vX +wI +wI +dL +dL +rU +dL +dL +Yt +Yt +dL +uh +Yt +dL +IJ +Gk +vO +Kx +aq +IJ +xT +fH +FM +vO +vO +vO +XH +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(109,1,1) = {" +bp +aW +bp +dL +dL +CH +ir +PV +Dc +PV +CH +eK +eK +eK +eK +eK +eK +dL +rE +pY +pY +PM +pY +pY +vz +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +ZH +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +dL +wI +Rv +BY +BY +BY +BY +BY +wI +Rv +BY +Rv +Ec +Rv +Rv +Rv +Rv +Rv +Rv +QA +wI +jb +BY +Rv +Rv +Rv +Rv +wI +dL +dL +rU +dL +dL +Yt +el +dL +Yt +Yt +dL +IJ +IJ +IJ +IJ +IJ +IJ +IJ +IJ +IJ +UJ +IJ +IJ +IJ +Mz +Mz +Mz +Mz +se +dL +VW +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +bp +aW +bp +"} +(110,1,1) = {" +bp +aW +bp +dL +dL +CH +PV +PV +PV +PV +DN +eK +eK +eK +eK +eK +eK +dL +rE +pY +pY +PM +pY +pY +vz +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +AF +rN +rN +rN +rN +rN +ZH +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +dL +wI +pD +BY +BY +BY +BY +BY +hr +BY +BY +Rv +wI +xU +Rv +kS +Rv +Rv +Rv +vX +wI +jb +BY +BY +BY +BY +Rv +wI +dL +dL +rU +dL +dL +Yt +Yt +dL +Yt +uh +dL +dL +dL +dL +dL +dL +dL +IJ +Hn +Sa +Sa +XY +Yr +IJ +dL +KK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(111,1,1) = {" +bp +aW +bp +dL +dL +CH +CH +CH +CH +CH +CH +eK +eK +eK +eK +eK +eK +dL +rE +pY +pY +VK +pY +pY +pY +pY +pY +rP +pY +rP +pY +rP +pY +rP +pY +rP +pY +rP +pY +rP +pY +pY +pY +gk +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +wI +Rv +BY +BY +BY +BY +BY +wI +Rv +BY +Rv +wI +vm +Sm +Rv +Rv +Rv +Sm +KB +wI +Rv +BY +Rv +Rv +BY +Ig +wI +dL +dL +rU +dL +dL +Yt +Yt +dL +Yt +Yt +dL +Yt +Yt +dL +Yt +Yt +dL +IJ +Sa +Pn +Sa +Sa +Zw +IJ +dL +dL +dL +dL +dL +dL +KK +dL +dL +dL +dL +dL +dL +dL +dL +bp +is +bp +"} +(112,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +gk +pY +pY +pY +pY +pY +jc +PM +pY +jO +pY +jO +pY +jO +pY +jO +pY +jO +pY +jO +pY +jO +pY +pY +PM +rE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +wI +Rv +vX +vX +vX +vX +Ur +wI +wI +hr +wI +wI +wI +wI +wI +ep +wI +wI +wI +wI +wI +Ec +wI +wI +BY +Rv +wI +dL +dL +rU +dL +dL +el +el +dL +Yt +uh +dL +Yt +Wz +dL +GC +Yt +dL +IJ +Ss +Cc +Sa +ue +eg +IJ +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(113,1,1) = {" +bp +qk +bp +dL +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +gk +gk +dZ +pY +pY +pY +lg +pY +pY +fD +pY +fD +pY +fD +pY +fD +pY +fD +pY +fD +pY +fD +pY +pY +PM +rE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +wI +pD +Rv +Rv +Rv +Rv +Rv +wI +Rv +Rv +Rv +wI +wI +Lp +rZ +rZ +rZ +rZ +wI +wI +Rv +Rv +Rv +wI +BY +Rv +wI +dL +dL +rU +dL +dL +Yt +Yt +dL +Yt +Yt +dL +Wz +Yt +dL +Yt +Yt +dL +IJ +RS +Sa +Sa +pj +ue +IJ +dL +dL +dL +dL +KK +dL +tU +tU +tU +tU +tU +dL +dL +dL +dL +bp +aW +bp +"} +(114,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +eK +dL +dL +gk +gk +gk +gk +oA +gk +gk +pY +pY +pY +pY +dZ +pY +pY +pY +pY +lg +pY +wQ +pY +pY +lg +pY +PM +gk +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +wI +Rv +Rv +Rv +WU +tw +ul +wI +pD +Rv +Rv +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +Rv +Rv +Ig +wI +BY +Ig +wI +dL +dL +rU +dL +dL +Yt +Yt +dL +uh +Yt +dL +Yt +Yt +dL +GC +Yt +dL +IJ +Ss +Sa +Cc +Sa +Sa +UJ +dL +dL +dL +dL +dL +tU +tU +tU +tU +tU +tU +tU +dL +dL +dL +bp +aW +bp +"} +(115,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +gk +VS +PZ +PZ +gk +gk +gk +gk +gk +gk +gk +gk +rE +rE +gk +gk +gk +rE +rE +gk +oA +gk +gk +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +wI +wI +wI +Ec +wI +wI +wI +wI +yq +Rv +yq +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +cq +Rv +Mt +wI +BY +Rv +wI +dL +dL +rU +dL +dL +Yt +el +dL +Yt +Yt +dL +Yt +Yt +dL +Yt +GC +dL +IJ +Cc +Sa +Cc +Sa +LU +IJ +dL +KK +dL +dL +tU +tU +tU +Ma +Ma +Ma +Ma +tU +tU +tU +dL +bp +aW +bp +"} +(116,1,1) = {" +bp +aW +bp +dL +dL +QS +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +eK +eK +gk +rQ +PZ +PZ +yp +PZ +PZ +ld +gk +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +hW +hW +HL +HL +HL +hW +hW +dL +dL +TE +dL +dL +hW +hW +HL +HL +hW +hW +dL +dL +wI +kS +Rv +Rv +Rv +Rv +lW +wI +Jr +Rv +TO +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +nV +Rv +nV +wI +BY +Rv +wI +dL +dL +rU +dL +dL +el +Yt +dL +Yt +uh +dL +Yt +Wz +dL +Yt +Yt +dL +IJ +AL +Sa +Sa +Sa +vU +IJ +ic +dL +dL +tU +tU +tU +tU +Ma +Ma +Ma +Ma +Ma +Ma +tU +tU +bp +aW +bp +"} +(117,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +gk +TG +PZ +PZ +PZ +PZ +PZ +BH +gk +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +hW +qR +Rx +Py +Rx +up +hW +dL +dL +TE +dL +dL +hW +if +fr +jh +OQ +hW +dL +dL +wI +Pd +Rv +Rv +Rv +Rv +Ig +wI +nT +Rv +Rv +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +nV +Rv +Xm +wI +BY +Ig +wI +dL +dL +rU +dL +dL +Yt +Yt +dL +uh +Yt +dL +Yt +Yt +dL +Yt +Yt +dL +IJ +IJ +UJ +IJ +IJ +IJ +IJ +ml +dL +dL +tU +tU +tU +Ma +Ma +Ma +Ma +Ma +Ma +Ma +Ma +tU +bp +aW +bp +"} +(118,1,1) = {" +bp +qk +bp +dL +dL +eK +eK +Ki +eK +eK +Ki +tN +eK +Ki +eK +eK +Ki +wF +eK +eK +eK +gk +gk +Jk +PZ +PZ +PZ +Gw +gk +gk +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +hW +BM +BM +BM +BM +BM +hW +hW +hW +cH +hW +hW +hW +if +jh +jh +bC +hW +dL +dL +wI +ko +Rv +Rv +sE +Rv +Rv +wI +Jr +Rv +kE +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +nV +Rv +nV +wI +BY +Rv +wI +dL +dL +rU +dL +dL +el +Yt +dL +Yt +Yt +dL +Yt +Yt +dL +Yt +GC +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +tU +tU +tU +Ma +Ma +Ma +Ma +Ma +Ma +Ma +Ma +tU +bp +is +bp +"} +(119,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +gk +gk +Fy +LK +TJ +gk +gk +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +HL +BM +BM +oL +BM +BM +hW +Rx +RT +BM +RT +Rx +hW +if +jh +jh +NJ +hW +dL +dL +wI +Of +Rv +xI +YU +Rv +Rv +wI +Jr +Rv +Rv +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +nV +Rv +nV +wI +BY +Rv +wI +dL +dL +rU +dL +dL +Yt +el +dL +Yt +Yt +dL +Wz +Yt +dL +Yt +Yt +dL +dL +dL +dL +dL +ub +rU +dL +dL +dL +dL +tU +tU +Ma +Ma +Ma +Ma +Ma +Ma +Ma +Ma +Ma +tU +bp +aW +bp +"} +(120,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +eK +eK +dL +dL +gk +gk +gk +gk +gk +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +HL +BM +BM +BM +BM +BM +cH +BM +BM +BM +BM +BM +eM +jh +jh +jh +Dz +hW +dL +dL +wI +Ca +Rv +Rv +Rv +Rv +rJ +wI +nT +mR +yq +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +nV +Rv +Xm +wI +BY +Ig +wI +dL +dL +rU +dL +dL +Yt +Yt +dL +uh +Yt +dL +Yt +Yt +dL +GC +Yt +dL +dL +dL +dL +dL +SW +rU +dL +dL +KK +dL +tU +tU +Ma +Ma +Ma +Ma +Ma +Ma +Ma +Ma +tU +tU +bp +aW +bp +"} +(121,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +zw +eK +eK +eK +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +HL +BM +bE +Rx +Rl +ME +hW +hW +hW +cH +hW +hW +hW +jh +jh +jh +jh +hW +dL +dL +wI +kS +Rv +Rv +Rv +Rv +Rv +wI +Jr +Rv +Jr +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +nV +Rv +nV +wI +BY +Rv +wI +dL +dL +rU +dL +dL +Yt +Yt +dL +Yt +Yt +dL +Yt +Wz +dL +Yt +GC +dL +dL +dL +dL +dL +ub +rU +dL +dL +dL +dL +tU +tU +Ma +Ma +Ma +Ma +Ma +Ma +Ma +Ma +tU +dL +bp +aW +bp +"} +(122,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +hW +BM +bE +UX +Rx +ME +hW +mX +mX +mX +mX +mX +hW +jh +jh +jh +jh +hW +dL +dL +wI +wI +wI +wI +wI +Ec +wI +wI +TO +Rv +TO +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +Dd +Rv +Dd +wI +BY +Rv +wI +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +tU +tU +Ma +Ma +Ma +Ma +Ma +Ma +tU +tU +dL +bp +aW +bp +"} +(123,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +hW +BM +uW +pu +sc +BM +hW +mX +Px +Px +Px +mX +hW +mF +ZB +mG +St +hW +dL +dL +wI +UM +Rv +Rv +LV +Rv +Rv +wI +pD +Rv +Rv +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +Rv +Rv +Ig +wI +BY +Ig +wI +dL +dL +dt +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +dL +dL +dL +dL +dL +dL +tU +tU +tU +Ma +Ma +Ma +tU +tU +dL +dL +bp +aW +bp +"} +(124,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +qg +eK +Ki +eK +eK +Ki +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +hW +hW +hW +hW +hW +hW +hW +mX +Px +Dj +bY +mX +hW +hW +hW +hW +hW +hW +dL +dL +wI +oz +BY +BF +BF +BY +Rv +wI +Rv +Rv +Rv +wI +wI +Zu +rZ +rZ +rZ +rZ +wI +wI +Rv +Rv +Rv +wI +BY +Rv +wI +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +Ea +hI +iX +hI +hI +Ea +hI +hI +Ea +hI +hI +Ea +dL +dL +dL +dL +dL +dL +dL +dL +tU +tU +tU +tU +tU +dL +dL +dL +bp +is +bp +"} +(125,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Nk +Aw +An +Aw +Aw +dL +dL +dL +dL +dL +hW +ha +BM +lq +hW +EK +EK +mX +Px +xh +Px +mX +EK +EK +hW +eF +tj +hW +dL +dL +wI +pD +Nb +Gf +eN +rf +Rv +wI +wI +Ec +wI +wI +wI +wI +wI +ep +wI +wI +wI +wI +wI +Ec +wI +wI +BY +Rv +wI +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +Ea +hI +hI +hI +hI +Ea +hI +hI +Ea +hI +hI +Ea +dL +dL +dL +Xl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(126,1,1) = {" +bp +qk +bp +dL +dL +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Aw +xg +Ff +Ff +Ff +pt +Aw +aT +NH +jX +jX +jX +Om +Aw +dL +dL +dL +dL +dL +hW +eH +BM +BM +hW +EK +EK +mX +Px +Dj +Px +mX +EK +EK +hW +gP +jh +hW +dL +dL +wI +Rv +Nb +cS +Yx +rf +Ig +wI +Rv +BY +Rv +wI +ej +LV +Rv +Rv +Rv +LV +pn +wI +Rv +BY +Rv +Rv +BY +Ig +wI +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +Ea +hI +hI +hI +hI +Ea +hI +hI +iX +hI +hI +Ea +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(127,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +dL +dL +ww +dL +dL +dL +dL +dL +dL +dL +Aw +Ek +Ff +Ff +Ff +mi +Aw +jo +jX +jX +Br +Br +Br +An +eK +eK +eK +dL +dL +hW +Hd +BM +BM +cH +mX +mX +mX +Px +Px +Px +mX +mX +mX +hW +jh +jh +hW +dL +dL +wI +pD +Nb +aj +Lj +rf +BY +hr +BY +BY +Rv +wI +yV +Rv +kS +Rv +Rv +Rv +vX +wI +jb +BY +BY +BY +BY +Rv +wI +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +hI +hI +hI +hI +YP +hI +hI +hI +hI +YP +hI +hI +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(128,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Aw +Ff +Ff +FS +Ff +Ff +Aw +jX +jX +jX +Br +Br +KW +Aw +eK +eK +eK +dL +dL +hW +hW +hW +hW +hW +mX +Px +Px +Ej +Px +Px +Px +Px +mX +eM +jh +jh +hW +dL +dL +wI +Rv +BY +kN +kN +BY +Rv +wI +Rv +BY +Rv +Ec +Rv +Rv +Rv +Rv +Rv +Rv +QA +wI +jb +BY +Rv +Rv +Rv +Rv +wI +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +hI +hI +hI +hI +hI +hI +hI +hI +hI +hI +hI +hI +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(129,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rG +Ff +Ff +pF +Ff +Ff +rG +jX +kz +jX +jX +jX +jX +Nk +eK +eK +eK +dL +dL +hW +lx +BM +cL +hW +mX +bY +Px +Px +Dj +Px +bY +Px +mX +hW +jh +jh +hW +dL +dL +wI +Qf +Rv +Rv +Sm +Rv +Rv +wI +Rv +BY +Ig +wI +PH +Rv +Rv +Rv +Rv +Rv +KB +wI +jb +BY +Rv +Rv +vX +wI +wI +dL +dL +rU +dL +dL +dL +lK +dL +dL +dL +dL +Ea +hI +hI +hI +hI +Ea +hI +hI +nt +hI +hI +Ea +BC +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(130,1,1) = {" +bp +aW +bp +dL +dL +CH +CH +CH +CH +CH +dL +dL +dL +dL +dL +dL +CH +CH +CH +CH +CH +CH +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Aw +Ff +Ff +nN +Ff +wL +Aw +jX +jX +jX +Br +Br +KW +Aw +eK +eK +eK +dL +dL +HL +BM +BM +BM +cH +mX +mX +mX +bY +Px +Px +mX +mX +mX +hW +jh +jh +hW +dL +dL +wI +wI +wI +wI +wI +wI +wI +wI +Rv +BY +Rv +wI +vm +Sm +Rv +Rv +Sm +nU +wI +wI +Rv +BY +Rv +vX +DV +wI +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +Ea +hI +hI +hI +hI +Ea +hI +hI +Ea +hI +hI +Ea +dL +dL +dL +LZ +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +is +bp +"} +(131,1,1) = {" +bp +aW +bp +dL +dL +CH +fp +fp +PV +DN +dL +dL +dL +dL +dL +dL +CH +ir +PV +ir +PV +DN +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Aw +OS +Ff +Ff +Ff +yB +Aw +jo +jX +jX +Br +Br +Br +An +eK +eK +eK +dL +dL +hW +XD +BM +BM +hW +EK +EK +mX +Px +Px +Px +mX +EK +EK +hW +gP +jh +hW +dL +dL +dL +dL +dL +dL +dL +dL +dL +wI +Rv +BY +Rv +wI +wI +wI +wI +Ec +wI +wI +wI +Rv +Rv +BY +Rv +vX +wI +wI +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +Ea +hI +nt +hI +hI +Ea +hI +hI +Ea +hI +hI +Ea +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +uN +dL +dL +bp +aW +bp +"} +(132,1,1) = {" +bp +aW +bp +dL +dL +CH +fp +fp +PV +CH +dL +dL +dL +dL +dL +dL +CH +PV +PV +PV +PV +CH +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Aw +TN +Ff +Ff +Ff +wL +Aw +aT +Xs +jX +jX +jX +Om +Aw +dL +dL +dL +dL +dL +hW +wA +Mn +sZ +hW +EK +EK +mX +mX +mX +mX +mX +EK +EK +hW +zK +Ip +hW +dL +dL +dL +dL +dL +dL +dL +dL +dL +wI +Rv +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +Kc +Rv +wI +wI +dL +dL +dL +dL +rU +dL +dL +dL +lK +dL +dL +dL +dL +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +dL +dL +dL +dL +dL +dL +dL +dL +Xl +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(133,1,1) = {" +bp +qk +bp +dL +dL +CH +CH +CH +CH +CH +dL +dL +dL +dL +dL +dL +CH +CH +CH +CH +CH +CH +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Aw +dL +dL +dL +dL +dL +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +dL +dL +dL +dL +dL +dL +dL +dL +dL +wI +Rv +Sm +Rv +Rv +Sm +Rv +Rv +Sm +Rv +Rv +Sm +Rv +Rv +wI +wI +wI +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(134,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +bp +bp +bp +bp +aW +bp +"} +(135,1,1) = {" +bp +aW +bp +bp +bp +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +lK +dL +dL +dL +dL +lK +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +aW +aW +aW +aW +bp +"} +(136,1,1) = {" +bp +aW +aW +Rz +Or +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +nu +aW +aW +aW +bp +"} +(137,1,1) = {" +bp +Ja +aW +Rz +Or +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +kg +aW +aW +is +bp +"} +(138,1,1) = {" +bp +vg +aW +Rz +Or +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +aW +aW +aW +aW +zS +bp +"} +(139,1,1) = {" +bp +iK +mz +aW +aW +aW +aW +mz +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +zS +zS +bp +"} +(140,1,1) = {" +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +"} diff --git a/maps/redgate/fantasy_dungeon.dmm b/maps/redgate/fantasy_dungeon.dmm new file mode 100644 index 0000000000..4367ef5f7b --- /dev/null +++ b/maps/redgate/fantasy_dungeon.dmm @@ -0,0 +1,22400 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ac" = ( +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/fantasy/caves) +"ae" = ( +/obj/structure/table/bench/marble, +/mob/living/simple_mob/vore/vampire/count, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"ah" = ( +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"az" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"aG" = ( +/mob/living/simple_mob/animal/passive/bird/goldcrest, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"aR" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"aT" = ( +/obj/structure/cult/tome, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"bg" = ( +/obj/random/pacman, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"bj" = ( +/obj/effect/rune, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"bl" = ( +/obj/structure/flora/underwater/seaweed2, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"bp" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/bloodsoup, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"bw" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"bB" = ( +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"bH" = ( +/obj/structure/dirtybed, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"bM" = ( +/turf/simulated/mineral/crystal, +/area/redgate/fantasy/caves) +"bW" = ( +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/underground) +"cd" = ( +/obj/structure/bed/alien, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"ci" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"cr" = ( +/obj/structure/table/alien/blue, +/obj/random/mech_toy, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"cy" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/caves) +"cz" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"cD" = ( +/obj/structure/table/bench/marble, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"cI" = ( +/obj/structure/table/marble, +/obj/random/potion_base, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"cK" = ( +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"cO" = ( +/obj/structure/closet/alien, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"cS" = ( +/obj/random/potion_ingredient, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"cU" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"cW" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"dc" = ( +/obj/structure/flora/underwater/seaweed3, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"df" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 4 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"dg" = ( +/obj/structure/table/marble, +/obj/item/capture_crystal/random, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"dp" = ( +/turf/simulated/wall/tgmc/rwall, +/area/redgate/fantasy/alienbasement) +"dx" = ( +/turf/simulated/floor/lava, +/area/redgate/fantasy/caves) +"dy" = ( +/obj/fiftyspawner/gold, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"dA" = ( +/obj/item/weapon/towel/random, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"dI" = ( +/turf/simulated/floor/water/pool, +/area/redgate/fantasy/dungeon) +"dO" = ( +/obj/structure/closet/crate/chest, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"dP" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"dX" = ( +/mob/living/simple_mob/shadekin/yellow/retaliate/dark, +/turf/simulated/floor/weird_things/dark, +/area/redgate/fantasy/dark) +"ed" = ( +/obj/item/stack/material/fur, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"ei" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/material/knife/stone/bone, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"ep" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"es" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/kettle, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"et" = ( +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/mines) +"ev" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/coin/iron, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"ew" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/kitchen/utensil/spoon{ + default_material = "gold" + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"ez" = ( +/obj/item/clothing/gloves/ring/material/gold, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"eP" = ( +/obj/structure/table/alien, +/obj/random/toolbox, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"eS" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 1 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"eW" = ( +/obj/item/instrument/violin/golden, +/turf/simulated/mineral/floor/dirt, +/area/redgate/fantasy/caves) +"fB" = ( +/obj/item/weapon/bluespace_crystal, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"fI" = ( +/obj/structure/closet/coffin, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"fK" = ( +/turf/simulated/floor/gorefloor2, +/area/redgate/fantasy/mines) +"fL" = ( +/obj/random/roguemineloot, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"fM" = ( +/obj/structure/flora/underwater/grass3, +/obj/structure/flora/underwater, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"fR" = ( +/obj/random/internal_organ, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"fS" = ( +/obj/structure/closet/crate/chest, +/obj/random/fishing_junk, +/obj/random/fishing_junk, +/obj/item/weapon/reagent_containers/food/snacks/wormdeluxe, +/obj/item/weapon/reagent_containers/food/snacks/wormdeluxe, +/obj/item/weapon/reagent_containers/food/snacks/wormdeluxe, +/obj/item/weapon/reagent_containers/food/snacks/wormdeluxe, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"fT" = ( +/obj/structure/prop/alien/computer/hybrid, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"ga" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 8 + }, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"gi" = ( +/obj/structure/table/alien/blue, +/obj/random/pouch, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"gj" = ( +/obj/random/bluespace, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"go" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/crypt) +"gp" = ( +/turf/simulated/mineral/icey, +/area/redgate/fantasy/mines) +"gH" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/bikehorn/rubberducky, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"gJ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"gL" = ( +/obj/structure/fence/door/opened{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"gT" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"hj" = ( +/obj/structure/window/plastitanium{ + dir = 1 + }, +/obj/structure/prop/war/warhead4, +/obj/structure/table/rack/steel, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"hs" = ( +/turf/simulated/wall/tgmc/rwall{ + can_open = 1 + }, +/area/redgate/fantasy/alienbasement) +"hu" = ( +/turf/simulated/floor/beach/sand/desert, +/area/redgate/fantasy/caves) +"hQ" = ( +/obj/structure/bed/chair/sofa/corp/right, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"hR" = ( +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"hY" = ( +/obj/item/weapon/reagent_containers/food/snacks/bearstew, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"id" = ( +/obj/random/pottedplant, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"ie" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/swimsuit/stripper/stripper_pink, +/obj/item/clothing/under/swimsuit/stripper/stripper_green, +/obj/item/clothing/under/swimsuit/stripper/mankini, +/obj/item/clothing/suit/iasexy, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"ii" = ( +/obj/structure/prop/rock/round, +/turf/simulated/floor/outdoors/ice{ + outdoors = -1 + }, +/area/redgate/fantasy/mines) +"iu" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"iz" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/material/knife/machete/hatchet/stone/bone, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"iQ" = ( +/obj/structure/table/alien, +/obj/random/tool/alien, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"iU" = ( +/obj/structure/closet/alien, +/obj/random/multiple/voidsuit/vintage, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"jb" = ( +/obj/structure/prop/machine/green_egg, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"jc" = ( +/obj/item/weapon/bone/skull, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"jg" = ( +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"jn" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/ratbasement) +"jA" = ( +/obj/structure/dirtybed, +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"jB" = ( +/obj/structure/prop/alien/computer, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"jD" = ( +/obj/structure/table/marble, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"jF" = ( +/obj/random/potion_ingredient, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"jI" = ( +/obj/structure/cult/forge, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"jL" = ( +/obj/random/humanoidremains, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"jR" = ( +/obj/machinery/light/small/torch, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/crypt) +"kc" = ( +/obj/structure/reagent_dispensers/beerkeg/wine, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"km" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"kn" = ( +/turf/simulated/wall/dungeon, +/area/redgate/fantasy/dungeon) +"kx" = ( +/obj/machinery/conveyor{ + dir = 8 + }, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"ky" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"kE" = ( +/obj/structure/closet/crate/chest, +/obj/random/potion_base, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/random/fantasy_item, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"kH" = ( +/obj/structure/bed/chair/sofa/bench/marble, +/mob/living/simple_mob/vore/vampire/count_nude, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"kL" = ( +/obj/random/potion_base, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"kM" = ( +/obj/structure/closet/crate/chest, +/obj/random/potion_ingredient, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"kP" = ( +/obj/item/clothing/accessory/medal/gold, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"kS" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"kZ" = ( +/obj/structure/prop/alien/computer/camera/flipped, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"lc" = ( +/obj/machinery/telecomms/relay/preset/station, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"lp" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"ls" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"lu" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/turf/simulated/floor/flesh, +/area/redgate/fantasy/dungeon) +"lE" = ( +/obj/structure/bed/chair/sofa/corp/corner, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"lK" = ( +/turf/simulated/floor/water/digestive_enzymes, +/area/redgate/fantasy/dungeon) +"lL" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"lR" = ( +/mob/living/simple_mob/animal/space/bear/polar{ + ai_holder_type = /datum/ai_holder/simple_mob/vore; + vore_pounce_chance = 50 + }, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"lV" = ( +/obj/structure/prop/rock/sharp, +/turf/simulated/floor/outdoors/ice{ + outdoors = -1 + }, +/area/redgate/fantasy/mines) +"lZ" = ( +/obj/structure/curtain{ + color = "#FF0000" + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"ma" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"me" = ( +/mob/living/simple_mob/vore/demon/engorge{ + ai_holder_type = /datum/ai_holder/simple_mob/vore; + vore_pounce_chance = 50 + }, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"ml" = ( +/turf/simulated/wall/stonebricks{ + can_open = 1 + }, +/area/redgate/fantasy/castle) +"mr" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/crypt) +"mu" = ( +/obj/structure/prop/transmitter, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"mL" = ( +/obj/random/coin, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"mS" = ( +/obj/random/potion_base, +/turf/simulated/floor/flesh, +/area/redgate/fantasy/dungeon) +"nc" = ( +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alien/blue, +/area/redgate/fantasy/alienbasement) +"no" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"np" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"nD" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/crypt) +"nI" = ( +/obj/structure/closet/coffin, +/obj/random/potion_ingredient, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"nM" = ( +/obj/structure/table/alien, +/obj/random/tool/power, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"nR" = ( +/obj/random/mainttoyloot/nofail, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"nY" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"oh" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"oj" = ( +/obj/structure/flora/underwater/grass4, +/obj/random/coin, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"ok" = ( +/obj/structure/window/plastitanium{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"ou" = ( +/obj/structure/prop/rock, +/turf/simulated/floor/outdoors/ice{ + outdoors = -1 + }, +/area/redgate/fantasy/mines) +"ox" = ( +/obj/structure/table/alien/blue, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"oy" = ( +/obj/random/multiple/underdark/treasure, +/turf/simulated/floor/gorefloor2, +/area/redgate/fantasy/mines) +"oE" = ( +/obj/structure/prop/fantasy/anvil, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"oF" = ( +/obj/random/rigsuit/chancetofail, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"oH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"oI" = ( +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/fantasy/castle) +"oN" = ( +/obj/structure/dirtybed, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"oO" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"oP" = ( +/obj/structure/table/alien/blue, +/obj/item/broken_device/random, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"oT" = ( +/mob/living/simple_mob/vore/vore_hostile/leaper, +/turf/simulated/floor/flesh, +/area/redgate/fantasy/dungeon) +"pb" = ( +/obj/structure/outcrop/gold, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"pd" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/fienddress, +/obj/item/clothing/under/fiendsuit, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"pg" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"pn" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"pr" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"pt" = ( +/obj/structure/closet/crate/chest, +/obj/random/potion_ingredient, +/obj/random/potion_base, +/obj/random/potion, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"pH" = ( +/obj/structure/table/marble, +/obj/item/weapon/telecube/randomized, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"pI" = ( +/obj/random/pouch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"pJ" = ( +/obj/structure/closet/coffin, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"pM" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"pN" = ( +/obj/structure/closet/crate/chest, +/obj/random/material, +/obj/random/potion_base, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"pW" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"qB" = ( +/obj/structure/closet/crate/wooden, +/obj/random/bluespace, +/obj/item/stack/material/fur, +/obj/item/stack/material/fur, +/obj/item/clothing/suit/tajaran/furs, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"qE" = ( +/obj/structure/bookcase, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"qF" = ( +/obj/structure/table/woodentable, +/obj/random/plushie, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"qT" = ( +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/fantasy/mines) +"qV" = ( +/obj/item/clothing/ears/earring/dangle/gold, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"qY" = ( +/obj/item/weapon/strangerock, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"rb" = ( +/obj/item/weapon/miscdisc, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"rg" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wine, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"rq" = ( +/obj/item/seeds/random, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"rt" = ( +/obj/structure/table/alien/blue, +/obj/random/multiple/underdark/mechtool, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"rA" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"rD" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"rJ" = ( +/mob/living/simple_mob/vore/alienanimals/space_jellyfish{ + ai_holder_type = /datum/ai_holder/simple_mob/vore; + appendage_color = "ff0000"; + color = "ff0000"; + name = "red jelly"; + vore_pounce_chance = 50 + }, +/turf/simulated/floor/gorefloor, +/area/redgate/fantasy/mines) +"rM" = ( +/turf/simulated/floor/greengrid, +/area/redgate/fantasy/alienbasement) +"rS" = ( +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/castle) +"sa" = ( +/obj/structure/table/marble, +/obj/item/weapon/pen/crayon/red{ + name = "red chalk" + }, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"sb" = ( +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/fantasy/underwater) +"sh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"sm" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/rddouble, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"sw" = ( +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"sE" = ( +/obj/item/weapon/material/fishing_rod/modern/strong, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"sI" = ( +/obj/structure/prop/alien/computer/camera, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"sR" = ( +/turf/simulated/shuttle/wall/alien/blue, +/area/redgate/fantasy/alienbasement) +"sT" = ( +/obj/structure/table/marble, +/obj/fruitspawner/bloodtomato, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"sZ" = ( +/obj/structure/closet/crate/chest, +/obj/item/clothing/suit/cultrobes/alt, +/obj/item/clothing/shoes/cult, +/obj/item/clothing/head/culthood/alt, +/obj/random/potion_base, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"tq" = ( +/obj/structure/cult/talisman, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"tt" = ( +/obj/structure/cult/pylon{ + color = "#00ff00"; + name = "bloodbob" + }, +/turf/simulated/floor/water/digestive_enzymes, +/area/redgate/fantasy/dungeon) +"tE" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wine, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"tI" = ( +/obj/structure/table/alien/blue, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"tO" = ( +/obj/structure/table/alien, +/obj/item/weapon/paper/alien{ + info = "Our search for the source has brought us to this planet, and we were quickly able to locate a seepage of the anomaly in the area. We set up this base immediately beside it, so that we can best study it. However, we are growing concerned as the material continues to spread beyond it's initial sprouting point and has begun to encroach directly on our buildings.

Our plan was to move our base further back from the site and study from a distance, but we have begun to detect lifeforms traversing the void. Yellow eyes have been seen watching from beyond the safety of the cave, disappearing and reappearing seemingly at random. We weren't aware that anything could survive this, they could hold the key to our scenario and we are requesting immediate support to research this further.
" + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"tV" = ( +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"ub" = ( +/obj/machinery/transhuman/resleever/abductor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"uo" = ( +/obj/random/multiple/underdark/treasure, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"uu" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"uv" = ( +/obj/structure/table/alien/blue, +/obj/random/mug, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"uw" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"uy" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"uC" = ( +/turf/simulated/floor/water/indoors, +/area/redgate/fantasy/mines) +"uE" = ( +/obj/structure/table/alien/blue, +/obj/item/weapon/pickaxe/jackhammer, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"uJ" = ( +/obj/structure/prop/machine/solifier, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"uR" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"uT" = ( +/mob/living/simple_mob/vore/bat, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"uU" = ( +/mob/living/simple_mob/vore/alienanimals/space_jellyfish{ + ai_holder_type = /datum/ai_holder/simple_mob/vore; + appendage_color = "ff0000"; + color = "ff0000"; + name = "red jelly"; + vore_pounce_chance = 50 + }, +/turf/simulated/floor/gorefloor2, +/area/redgate/fantasy/mines) +"uW" = ( +/obj/structure/prop/machine/complicator, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"vi" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"vt" = ( +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"vA" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion, +/turf/simulated/floor/flesh, +/area/redgate/fantasy/dungeon) +"vJ" = ( +/obj/structure/prop/machine/nt_biocan, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"vL" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"vV" = ( +/obj/effect/fake_sun/underwater, +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/fantasy/underground) +"vX" = ( +/obj/structure/prop/rock/crystal_dust, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"vZ" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/under/waiter, +/obj/item/clothing/under/waiter, +/obj/item/clothing/under/dress/maid, +/obj/item/clothing/under/dress/maid, +/obj/item/clothing/under/dress/maid, +/obj/item/clothing/head/headband/maid, +/obj/item/clothing/head/headband/maid, +/obj/item/clothing/head/headband/maid, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"wg" = ( +/obj/structure/fence/door{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"wn" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"wq" = ( +/mob/living/simple_mob/vore/vore_hostile/gelatinous_cube, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"ws" = ( +/obj/structure/prop/war/warhead4, +/obj/structure/table/rack/steel, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"wv" = ( +/mob/living/simple_mob/animal/space/carp/large/huge/vorny, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"wB" = ( +/obj/structure/atmospheric_retention_field, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"wD" = ( +/obj/structure/bed/chair/sofa/corp/corner{ + dir = 4 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"wS" = ( +/obj/structure/prop/statue/pillar/dark, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"wY" = ( +/obj/structure/closet/crate/wooden, +/obj/random/meat, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"xj" = ( +/turf/simulated/goreeyes, +/area/redgate/fantasy/mines) +"xu" = ( +/mob/living/simple_mob/vore/vampire/countess_nude, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"xA" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"xB" = ( +/obj/structure/prop/alien/pod, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"xF" = ( +/mob/living/simple_mob/vore/aggressive/rat{ + ai_holder_type = /datum/ai_holder/simple_mob/vore; + vore_pounce_chance = 75 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"xH" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"xI" = ( +/obj/structure/table/marble, +/obj/item/weapon/surgical/bone_clamp, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"xK" = ( +/turf/simulated/wall/stonebricks, +/area/redgate/fantasy/crypt) +"xN" = ( +/obj/random/plushie, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/dungeon) +"xO" = ( +/mob/living/simple_mob/vore/alienanimals/skeleton/alt{ + ai_holder_type = /datum/ai_holder/simple_mob/retaliate + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"xV" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/kitchen/rollingpin, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"xX" = ( +/obj/random/humanoidremains, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"xY" = ( +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"xZ" = ( +/obj/random/carp_plushie, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"yd" = ( +/obj/structure/table/marble, +/obj/random/internal_organ, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"yx" = ( +/obj/item/clothing/accessory/collar/gold, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"yE" = ( +/obj/structure/outcrop/gold, +/turf/simulated/mineral/floor/dirt, +/area/redgate/fantasy/caves) +"yF" = ( +/obj/structure/prop/rock/crystal, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"yI" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"yJ" = ( +/obj/item/weapon/coin/gold, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"yM" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"yP" = ( +/obj/structure/dogbed, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"yS" = ( +/obj/structure/closet/crate/mimic/guaranteed{ + icon = 'icons/obj/closets/chest.dmi' + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"yT" = ( +/obj/structure/simple_door/cult, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"yV" = ( +/obj/structure/table/alien/blue, +/obj/item/weapon/gun/energy/sickshot, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"yW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/crypt) +"zh" = ( +/obj/structure/table/alien/blue, +/obj/item/device/gps/mining, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"zj" = ( +/turf/simulated/mineral/icey, +/area/redgate/fantasy/underwater) +"zn" = ( +/obj/item/toy/plushie/carp/gold, +/turf/simulated/mineral/floor/dirt, +/area/redgate/fantasy/caves) +"zs" = ( +/obj/structure/prop/war/warhead3, +/obj/structure/table/rack/steel, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"zv" = ( +/obj/structure/closet/coffin, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/crypt) +"zB" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"zH" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"zJ" = ( +/obj/item/stack/material/gold, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"zS" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"zV" = ( +/obj/item/weapon/fossil/skull/horned, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"zW" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Ah" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/dungeon) +"Ai" = ( +/turf/simulated/floor/water/deep/pool, +/area/redgate/fantasy/dungeon) +"Aj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Am" = ( +/obj/structure/closet/crate/wooden, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"Ar" = ( +/obj/structure/prop/rock/flat, +/turf/simulated/floor/outdoors/ice{ + outdoors = -1 + }, +/area/redgate/fantasy/mines) +"Au" = ( +/obj/machinery/clonepod/transhuman/full/abductor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"Av" = ( +/turf/simulated/floor/gorefloor, +/area/redgate/fantasy/mines) +"AH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/marble, +/obj/item/weapon/bone/ribs, +/obj/item/weapon/bone/skull, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"AM" = ( +/obj/structure/window/plastitanium{ + dir = 1 + }, +/obj/structure/prop/war/warhead3, +/obj/structure/table/rack/steel, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"AV" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/obj/random/potion_ingredient, +/obj/random/potion_base, +/turf/simulated/floor/flesh, +/area/redgate/fantasy/dungeon) +"Bf" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Bh" = ( +/obj/machinery/door/airlock/angled_tgmc/secure{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Bm" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 4 + }, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Bp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"Bs" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/lemoncake, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"BG" = ( +/obj/structure/table/woodentable, +/obj/random/potion_base, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"BJ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/structure/closet/walllocker/wooden/south, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"BL" = ( +/obj/machinery/suit_cycler/mining, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"BM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/random/potion_ingredient, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"BW" = ( +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/fantasy/underground) +"BX" = ( +/obj/structure/closet/coffin, +/obj/random/fantasy_item, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Cc" = ( +/obj/item/weapon/bone/leg, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Ch" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Cz" = ( +/obj/item/weapon/shovel, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"CD" = ( +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"CK" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"CP" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"CS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"CT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"CY" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_mob/vore/alienanimals/catslug/custom/cryptslug{ + faction = "vampire" + }, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"CZ" = ( +/obj/structure/closet/alien, +/obj/random/tool/powermaint, +/obj/random/toolbox, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Dd" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/random/potion, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"Dh" = ( +/obj/structure/table/woodentable, +/obj/random/potion, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"Di" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Dn" = ( +/obj/structure/table/marble, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"DK" = ( +/obj/random/maintenance/medical, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"DM" = ( +/obj/effect/decal/mecha_wreckage/phazon, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"DR" = ( +/obj/structure/closet/crate/wooden, +/obj/random/fantasy_item, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/beach/sand/desert, +/area/redgate/fantasy/caves) +"DX" = ( +/mob/living/simple_mob/vore/pakkun/sand, +/turf/simulated/floor/beach/sand/desert, +/area/redgate/fantasy/caves) +"DZ" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/item/clothing/under/swimsuit/risque, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Ek" = ( +/obj/structure/table/hardwoodtable, +/obj/item/clothing/accessory/shiny/gloves/poly, +/obj/item/clothing/accessory/shiny/socks/poly, +/obj/item/clothing/head/shiny_hood/poly, +/obj/item/clothing/head/shiny_hood/closed/poly, +/obj/item/clothing/under/shiny/catsuit/poly, +/obj/item/clothing/under/shiny/leotard/poly, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"El" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/obj/random/potion, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Eq" = ( +/obj/structure/table/alien, +/obj/item/weapon/potion_material/glowing_gem, +/turf/simulated/shuttle/floor/alien/blue, +/area/redgate/fantasy/alienbasement) +"EA" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/storage/backpack/cultpack, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"ED" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"EE" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"EJ" = ( +/obj/random/underdark, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"EN" = ( +/obj/item/weapon/shreddedp, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"ER" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/random/potion, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"EU" = ( +/obj/structure/closet/crate/wooden, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/cabbage, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"EV" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"EZ" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"Fh" = ( +/obj/structure/prop/alien/pod/open, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"Fr" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Fs" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Fz" = ( +/obj/item/prop/alien/phasecoil, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"FF" = ( +/obj/fiftyspawner/gold, +/turf/simulated/mineral/floor/dirt, +/area/redgate/fantasy/caves) +"FH" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/melee/cultblade, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"FR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"FV" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Ga" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/shaker, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"Gh" = ( +/obj/structure/bonfire/permanent, +/turf/simulated/floor/beach/sand/desert, +/area/redgate/fantasy/caves) +"Gl" = ( +/obj/item/weapon/paper/alien, +/turf/simulated/wall/tgmc/rwall, +/area/redgate/fantasy/alienbasement) +"Gu" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"Gy" = ( +/obj/structure/prop/alien/dispenser, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"GI" = ( +/obj/structure/prop/alien/dispenser/twoway, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"GN" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"GX" = ( +/obj/structure/closet/crate/wooden, +/obj/item/trash/plate, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"Hn" = ( +/mob/living/simple_mob/vore/demon{ + ai_holder_type = /datum/ai_holder/simple_mob/vore; + harm_intent_damage = 8; + health = 300; + melee_damage_lower = 5; + melee_damage_upper = 2; + vore_pounce_chance = 50 + }, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Hx" = ( +/obj/item/weapon/bone, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Hz" = ( +/mob/living/simple_mob/vore/bigdragon/friendly, +/turf/simulated/mineral/floor/dirt, +/area/redgate/fantasy/caves) +"HB" = ( +/obj/structure/reagent_dispensers/cookingoil, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"HE" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"HG" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/dungeon) +"HO" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"HP" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"HQ" = ( +/obj/structure/bed/chair/sofa/corp/left, +/obj/machinery/light/small/torch{ + dir = 1; + light_type = /obj/item/weapon/light/bulb/red + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"HX" = ( +/obj/structure/closet/cabinet, +/obj/random/fantasy_item, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Ib" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Iq" = ( +/turf/simulated/mineral/floor/dirt, +/area/redgate/fantasy/caves) +"Is" = ( +/obj/structure/flora/underwater/grass1, +/obj/random/coin, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"IA" = ( +/obj/machinery/conveyor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"IB" = ( +/mob/living/simple_mob/vore/vore_hostile/abyss_lurker, +/turf/simulated/floor/flesh, +/area/redgate/fantasy/dungeon) +"IQ" = ( +/obj/structure/largecrate/animal/pred, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"IR" = ( +/obj/random/potion_ingredient, +/turf/simulated/floor/beach/sand/desert, +/area/redgate/fantasy/caves) +"IS" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"IU" = ( +/obj/structure/table/woodentable, +/obj/random/potion_base, +/obj/random/potion_base, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"Ja" = ( +/obj/random/potion_ingredient, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"Jc" = ( +/obj/structure/closet/crate/wooden, +/obj/random/multiple/underdark/ores, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"Jk" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"Jo" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Jp" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/rddouble, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Jq" = ( +/obj/structure/theonepizza, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"JA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"JL" = ( +/obj/random/multiple/ore_pile, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Ka" = ( +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Kf" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/obj/random/fantasy_item, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Kh" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Kn" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/rddouble, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/dungeon) +"Ku" = ( +/obj/structure/table/alien/blue, +/obj/random/grenade/less_lethal, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Ky" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"KA" = ( +/obj/structure/closet/coffin, +/obj/item/instrument/trombone, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"KB" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"KP" = ( +/obj/structure/bed/chair/sofa/corp, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"KR" = ( +/obj/structure/closet/crate/chest, +/obj/random/potion_ingredient, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"KZ" = ( +/obj/structure/fence, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Lc" = ( +/obj/item/clothing/ears/earring/stud/gold, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"Ld" = ( +/obj/random/fantasy_item, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"Le" = ( +/obj/structure/grille, +/obj/structure/window/plastitanium/full, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"Lh" = ( +/obj/structure/table/marble, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Lm" = ( +/obj/structure/table/marble, +/obj/random/fantasy_item, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Lo" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"Ls" = ( +/obj/structure/table/marble, +/obj/item/capture_crystal, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"Ly" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/random/potion_ingredient, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"LH" = ( +/obj/item/weapon/potion_material/golden_scale, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"LL" = ( +/obj/machinery/computer/transhuman/resleeving{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"LO" = ( +/mob/living/simple_mob/vore/succubus, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Mg" = ( +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Mk" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"Mp" = ( +/obj/structure/prop/alien/pod, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"Mx" = ( +/turf/simulated/mineral/icey, +/area/redgate/fantasy/underground) +"MC" = ( +/obj/item/roulette_ball/gold, +/turf/simulated/mineral/floor/dirt, +/area/redgate/fantasy/caves) +"MD" = ( +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"ME" = ( +/obj/structure/table/marble, +/obj/item/weapon/material/knife/stone/bone, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"MO" = ( +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"MR" = ( +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/alienbasement) +"MY" = ( +/obj/structure/table/marble, +/obj/random/potion_base, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"MZ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Nq" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"Nr" = ( +/obj/structure/flora/underwater/seaweed1, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"Nt" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"Nw" = ( +/obj/structure/prop/statue/sunkensail, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"NC" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_base, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"NF" = ( +/turf/simulated/wall/dungeon{ + can_open = 1 + }, +/area/redgate/fantasy/dungeon) +"NK" = ( +/obj/item/stack/material/gold, +/turf/simulated/mineral/floor/dirt, +/area/redgate/fantasy/caves) +"NL" = ( +/obj/item/clothing/mask/demon, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"NM" = ( +/turf/simulated/gore, +/area/redgate/fantasy/mines) +"NN" = ( +/obj/structure/table/alien, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"NQ" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/kettle/full, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"NU" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"NV" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"NY" = ( +/obj/structure/reagent_dispensers/bloodbarrel, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Of" = ( +/obj/item/weapon/fossil/plant, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"Oh" = ( +/obj/structure/table/alien, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Op" = ( +/obj/structure/table/bench/marble, +/mob/living/simple_mob/vore/vampire/countess, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"OB" = ( +/obj/structure/fence, +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"OE" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"OF" = ( +/turf/simulated/shuttle/wall/alien/blue/hard_corner, +/area/redgate/fantasy/alienbasement) +"OK" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/obj/random/fantasy_item, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Pa" = ( +/obj/structure/table/marble, +/obj/item/weapon/bone/leg, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"Pb" = ( +/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Pt" = ( +/turf/simulated/wall/stonebricks, +/area/redgate/fantasy/castle) +"Px" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"PA" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"PC" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"PG" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/obj/random/potion_ingredient, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"PP" = ( +/obj/structure/balloon/bat, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"PU" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/water/digestive_enzymes, +/area/redgate/fantasy/dungeon) +"PY" = ( +/turf/simulated/floor/weird_things/dark, +/area/redgate/fantasy/dark) +"Qb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Qm" = ( +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"QJ" = ( +/obj/structure/bed/chair/sofa/corp/left, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"QL" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"QT" = ( +/obj/structure/table/alien, +/obj/item/broken_device/random, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Ra" = ( +/obj/structure/flora/underwater/grass2, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"Re" = ( +/obj/random/maintenance/security, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Rf" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Rk" = ( +/mob/living/simple_mob/vore/cryptdrake, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Ry" = ( +/obj/machinery/door/airlock/alien/blue/public, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"RF" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"RW" = ( +/obj/structure/table/hardwoodtable, +/obj/item/clothing/mask/muzzle/ballgag, +/obj/item/clothing/mask/muzzle/ballgag/ringgag, +/obj/item/weapon/material/whip, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"RX" = ( +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"RZ" = ( +/obj/item/weapon/coin/gold, +/turf/simulated/mineral/floor/dirt, +/area/redgate/fantasy/caves) +"Sb" = ( +/obj/structure/table/alien/blue, +/obj/random/tool, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Sd" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"Se" = ( +/obj/machinery/appliance/cooker/oven/yeoldoven, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Sk" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/snacks/bloodsoup, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Sn" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/snacks/bloodsoup, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Sx" = ( +/obj/structure/table/marble, +/obj/item/weapon/surgical/scalpel, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"SA" = ( +/obj/structure/atmospheric_retention_field, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/mines) +"SI" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/handcuffs/cable/plantfiber, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"SJ" = ( +/obj/structure/table/alien, +/obj/random/janusmodule, +/turf/simulated/shuttle/floor/alien/blue, +/area/redgate/fantasy/alienbasement) +"SZ" = ( +/obj/item/weapon/potion_material/folded_dark, +/turf/simulated/floor/weird_things/dark, +/area/redgate/fantasy/dark) +"Tk" = ( +/obj/structure/table/woodentable, +/obj/machinery/alembic{ + pixel_y = 8 + }, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"Tl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"Tn" = ( +/obj/structure/bed/chair/sofa/corp/corner{ + dir = 1 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Tr" = ( +/obj/random/multiple/ore_pile, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"TA" = ( +/obj/structure/table/alien/blue, +/obj/random/tool/alien, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"TB" = ( +/obj/machinery/light/small/torch{ + dir = 1; + light_type = /obj/item/weapon/light/bulb/red + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"TD" = ( +/mob/living/simple_mob/vore/alienanimals/succlet/moss, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"TO" = ( +/obj/random/multiple/underdark/ores, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"TV" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/crypt) +"TX" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"TY" = ( +/obj/structure/table/alien/blue, +/obj/random/gun/random, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Uc" = ( +/obj/structure/table/alien/blue, +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Ul" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"Ux" = ( +/turf/simulated/floor/flesh, +/area/redgate/fantasy/dungeon) +"UC" = ( +/obj/structure/table/marble, +/obj/random/material/refined, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"UI" = ( +/obj/random/outcrop, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"UK" = ( +/obj/structure/prop/fantasy/grindstone, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"UV" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/bone/skull/unknown, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"UW" = ( +/obj/structure/table/alien, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Vl" = ( +/obj/structure/table/alien/blue, +/obj/random/mainttoyloot/nofail, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Vo" = ( +/obj/item/weapon/reagent_containers/food/drinks/golden_cup, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"Vq" = ( +/obj/structure/prop/fantasy/kiln, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Vv" = ( +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/fantasy/alienbasement) +"Vz" = ( +/mob/living/simple_mob/vore/weretiger{ + color = "#ffbe8c"; + name = "dungeon blacksmith" + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"VD" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"VQ" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"VR" = ( +/obj/structure/constructshell/cult, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"VU" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"VZ" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"Wd" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/dungeon) +"Wm" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Wo" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"WB" = ( +/obj/structure/reagent_dispensers/bloodbarrel, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"WE" = ( +/obj/structure/closet/crate/chest, +/obj/random/potion_ingredient, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"WR" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/handcuffs/legcuffs/fuzzy, +/obj/item/weapon/handcuffs/fuzzy, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Xd" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/crypt) +"Xp" = ( +/obj/structure/table/hardwoodtable, +/obj/random/potion_ingredient, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Xr" = ( +/obj/item/weapon/picnic_blankets_carried, +/turf/simulated/floor/beach/sand/desert, +/area/redgate/fantasy/caves) +"Xt" = ( +/obj/item/weapon/material/whip, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"Xy" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Xz" = ( +/obj/structure/table/alien/blue, +/obj/random/energy/sec, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"XE" = ( +/obj/item/prop/alien/junk, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"XO" = ( +/obj/structure/barricade/cutout/cultist, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"XP" = ( +/obj/machinery/door/airlock/angled_tgmc/secure{ + dir = 4; + req_one_access = list(900) + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"XX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"XY" = ( +/obj/structure/bed/alien, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Yf" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Yg" = ( +/obj/structure/bonfire/permanent, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"Yi" = ( +/obj/item/trash/tray, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"Yr" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Yx" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Yy" = ( +/obj/machinery/door/airlock/angled_tgmc/secure, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"YF" = ( +/obj/structure/table/marble, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen/fountain8, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"YP" = ( +/turf/simulated/floor/outdoors/ice{ + outdoors = -1 + }, +/area/redgate/fantasy/mines) +"Zp" = ( +/turf/simulated/flesh, +/area/redgate/fantasy/dungeon) +"Zq" = ( +/obj/structure/table/rack/shelf{ + color = "#A1662F"; + material = "wood" + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"ZA" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"ZB" = ( +/obj/structure/dancepole, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"ZI" = ( +/obj/item/prop/alien/junk, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"ZK" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"ZY" = ( +/turf/simulated/wall/stonebricks{ + can_open = 1 + }, +/area/redgate/fantasy/crypt) + +(1,1,1) = {" +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +vV +"} +(2,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +hu +hu +hu +hu +hu +hu +hu +hu +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +dp +dp +dp +dp +dp +dp +dp +dp +dp +dp +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(3,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +hu +hu +hu +hu +hu +hu +hu +hu +hu +hu +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +dp +CZ +vt +RX +vt +vt +vt +vt +RX +vt +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(4,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +dx +dx +dx +dx +dx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +DR +hu +hu +hu +DX +hu +Xr +hu +hu +hu +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +dp +ox +np +np +np +dp +dp +dp +np +vt +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(5,1,1) = {" +BW +ac +ac +ac +ac +ac +dx +dx +dx +dx +dx +dx +dx +dx +dx +ac +ac +ac +ac +ac +bM +bM +bM +bM +ac +ac +ac +hu +hu +Gh +hu +hu +hu +hu +hu +hu +hu +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +BW +BW +BW +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +dp +rt +np +np +np +np +no +dp +np +vt +dp +BW +dp +dp +dp +dp +dp +dp +dp +dp +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(6,1,1) = {" +BW +ac +ac +ac +ac +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +ac +ac +ac +ac +bM +bM +vX +yF +bM +bM +ac +ac +hu +hu +hu +hu +hu +hu +hu +hu +IR +hu +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +BW +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +dp +dp +dp +dp +dp +TA +np +np +np +dp +dp +dp +np +vt +dp +BW +dp +yV +vt +Vl +vt +AM +zs +zs +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(7,1,1) = {" +BW +ac +ac +ac +dx +dx +dx +dx +dx +dx +dx +dx +tV +dx +dx +tV +ac +ac +ac +bM +fB +fL +tV +fB +bM +bM +ac +ac +hu +hu +hu +tV +tV +hu +hu +hu +ac +ac +ac +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +dp +ox +RX +vt +vt +vt +np +np +np +np +np +np +np +vt +dp +BW +dp +Ku +vt +vt +vt +ok +vt +vt +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(8,1,1) = {" +BW +ac +ac +ac +dx +dx +dx +dx +dx +dx +dx +tV +tV +tV +dx +tV +yF +tV +tV +tV +tV +tV +tV +tV +tV +bM +bM +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +ac +tV +tV +tV +ac +ac +ac +ac +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +dp +Sb +np +np +np +np +np +np +np +np +np +np +np +vt +dp +BW +dp +cO +vt +vt +vt +ok +TY +Mg +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(9,1,1) = {" +BW +ac +ac +dx +dx +dx +dx +dx +dx +dx +dx +tV +dx +dx +dx +tV +tV +tV +ac +bM +tV +tV +tV +tV +tV +yF +bM +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +tV +tV +ac +ac +ac +ac +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +dp +vt +np +sR +sR +sR +Ry +Ry +sR +sR +sR +bw +np +vt +dp +BW +dp +Xz +vt +vt +vt +ok +vt +vt +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(10,1,1) = {" +BW +ac +ac +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +tV +ac +bM +bM +tV +yF +fB +tV +tV +bM +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +dp +vt +sR +OF +fT +bB +bB +bB +bB +Fh +OF +sR +ZI +Mg +dp +BW +dp +Uc +vt +vt +vt +hj +ws +ws +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(11,1,1) = {" +BW +ac +dx +dx +dx +dx +dx +dx +dx +tV +tV +dx +dx +dx +dx +dx +dx +dx +ac +ac +bM +bM +tV +tV +tV +tV +bM +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +tV +tV +tV +ac +ac +ac +ac +tV +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +dp +CD +Le +sI +Mk +bB +Eq +nc +bB +bB +bB +sR +np +vt +dp +dp +dp +dp +dp +XP +dp +dp +dp +dp +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(12,1,1) = {" +BW +ac +dx +dx +dx +dx +dx +dx +dx +tV +tV +tV +dx +dx +dx +dx +dx +dx +dx +ac +ac +bM +bM +vX +tV +bM +bM +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +tV +tV +ac +ac +ac +tV +tV +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +MR +vt +Le +kZ +Mk +bB +nc +SJ +bB +bB +bB +sR +np +vt +Pb +vt +RX +vt +vt +vt +vt +dp +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(13,1,1) = {" +BW +ac +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +ac +ac +ac +bM +bM +bM +bM +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +dX +PY +PY +PY +PY +PY +PY +BW +BW +MR +vt +sR +OF +jB +bB +bB +bB +bB +Mp +OF +sR +np +vt +vt +vt +vt +vt +vt +vt +Mg +dp +dp +dp +dp +dp +dp +dp +dp +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(14,1,1) = {" +BW +ac +dx +dx +dx +dx +dx +dx +dx +tV +dx +dx +dx +dx +dx +dx +dx +dx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +dX +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +MR +vt +np +sR +sR +sR +Ry +Ry +sR +sR +sR +bw +np +vt +dp +dp +dp +dp +dp +vt +vt +vt +vt +vt +RX +vt +vt +vt +Pb +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(15,1,1) = {" +BW +ac +dx +dx +dx +dx +tV +tV +tV +tV +dx +dx +dx +dx +dx +dx +dx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +tV +tV +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +MR +MR +vt +np +np +np +np +np +np +np +np +Fz +np +np +vt +dp +Vv +Vv +Vv +dp +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(16,1,1) = {" +BW +ac +dx +dx +dx +dx +tV +tV +tV +dx +dx +dx +dx +dx +dx +dx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +tV +tV +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +SZ +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +MR +MR +vt +np +np +np +np +np +np +np +np +np +vt +MD +vt +dp +Vv +Vv +Vv +dp +vt +vt +dp +dp +dp +dp +Bh +dp +dp +dp +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(17,1,1) = {" +BW +ac +ac +tV +dx +dx +tV +tV +dx +dx +dx +dx +dx +dx +dx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +tV +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +MR +MR +vt +np +np +np +np +np +np +np +vt +vt +vt +dp +dp +dp +Vv +Vv +Vv +dp +vt +vt +dp +vi +vt +vt +vt +vt +dp +BW +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(18,1,1) = {" +BW +ac +ac +tV +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +dX +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +MR +MR +vt +MD +vt +uv +oP +vt +vt +vt +MD +dp +hs +dp +dp +dp +dp +dp +dp +dp +vt +vt +dp +iU +rM +np +rM +gi +dp +BW +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(19,1,1) = {" +BW +ac +ac +tV +tV +dx +dx +dx +dx +dx +dx +dx +dx +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +MR +MR +dp +dp +dp +dp +dp +dp +Bh +dp +dp +dp +vt +oF +dp +jb +dp +dp +jb +dp +vt +Mg +dp +zh +rM +np +rM +ox +dp +BW +BW +BW +BW +BW +BW +qT +UI +Qm +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(20,1,1) = {" +BW +ac +ac +tV +tV +tV +dx +dx +dx +dx +dx +dx +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +Gu +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +MR +BW +BW +BW +BW +Vv +dp +dp +vt +dp +dp +dp +dp +dp +dp +CD +Au +Au +Mg +dp +vt +vt +dp +ox +rM +DM +rM +uE +dp +BW +BW +BW +BW +BW +BW +qT +Qm +Qm +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(21,1,1) = {" +BW +ac +tV +tV +tV +tV +tV +tV +dx +dx +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +Vv +dp +lc +vt +UW +Oh +eP +vt +vt +dp +vt +vt +vt +vt +dp +vt +vt +dp +cr +rM +np +rM +tI +dp +BW +BW +BW +BW +BW +BW +qT +qT +Qm +Qm +Qm +Qm +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(22,1,1) = {" +BW +ac +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +Vv +dp +mu +vt +nM +Oh +Oh +vt +vt +Yy +vt +vt +vt +vt +Yy +vt +vt +dp +BL +vt +pn +vt +vt +dp +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +UI +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(23,1,1) = {" +BW +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +BW +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +Vv +dp +CD +vt +vt +vt +vt +vt +Mg +dp +CD +ub +ub +Mg +dp +dp +dp +dp +dp +dp +dp +dp +dp +dp +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(24,1,1) = {" +BW +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +Jc +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +BW +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +Vv +dp +GI +vt +Bp +ci +Tl +vt +dO +dp +LL +dp +dp +NN +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(25,1,1) = {" +BW +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +ac +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +dp +xB +vt +XX +bg +uw +vt +IA +dp +Gl +dp +dp +dp +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(26,1,1) = {" +BW +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +Gu +tV +tV +tV +tV +tV +ac +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +BW +dp +Gy +vt +FR +ls +Px +vt +IA +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(27,1,1) = {" +BW +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +tV +tV +ac +ac +tV +tV +ac +BW +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +dp +CD +vt +vt +vt +vt +vt +kx +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(28,1,1) = {" +BW +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +yJ +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +BW +BW +BW +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +dp +uJ +vt +Oh +iQ +tO +vt +IA +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(29,1,1) = {" +BW +ac +ac +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +tV +tV +yJ +uo +tV +Lc +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +dp +vJ +vt +QT +Oh +UW +uW +lp +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(30,1,1) = {" +BW +ac +ac +ac +tV +tV +tV +tV +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +tV +tV +pb +tV +tV +LH +tV +tV +tV +yx +tV +tV +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +dp +dp +dp +dp +dp +dp +dp +dp +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(31,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +tV +tV +tV +tV +tV +tV +NK +Iq +FF +Iq +tV +tV +pb +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(32,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +Gu +tV +tV +tV +tV +tV +tV +tV +ac +ac +tV +tV +ac +ac +tV +pb +tV +tV +Iq +Iq +Iq +Iq +zn +RZ +LH +tV +tV +tV +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +tV +tV +tV +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(33,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +tV +tV +ac +ac +tV +tV +Iq +Iq +Iq +Iq +Iq +Iq +Iq +Iq +Iq +dy +zJ +tV +ac +ac +ac +ac +tV +tV +tV +tV +tV +ac +ac +ac +tV +tV +tV +tV +tV +tV +zV +tV +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +PY +PY +PY +xY +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(34,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +tV +tV +Iq +Iq +Iq +Iq +Iq +Hz +RZ +Iq +Iq +Iq +Vo +tV +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +ac +tV +tV +ac +ac +tV +Cz +tV +tV +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +PY +xY +xY +xY +xY +sb +sb +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(35,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +Iq +Iq +Iq +Iq +Iq +Iq +Iq +Iq +Iq +Iq +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +ac +ac +ac +Of +tV +tV +ac +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +sb +xY +xY +xY +sb +sb +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(36,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +Iq +Iq +yE +Iq +Iq +Iq +Iq +Iq +eW +tV +yJ +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +sb +sb +xY +xY +xY +sb +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(37,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +Iq +Iq +Iq +Iq +Iq +Iq +Iq +tV +zJ +tV +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +sb +sb +sb +sb +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +UI +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(38,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +tV +pb +tV +tV +qV +Iq +Iq +Iq +Iq +MC +kP +ez +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +sb +sb +sb +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(39,1,1) = {" +BW +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +ac +ac +tV +ac +tV +tV +tV +ac +ac +ac +ac +tV +tV +tV +tV +LH +Iq +Iq +Iq +NK +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +sb +sb +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(40,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +tV +ac +IQ +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +zJ +dy +tV +dy +tV +pb +aG +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +sb +sb +sb +sb +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +sb +sb +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(41,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +tV +ac +ac +ac +kS +ac +ac +ac +ac +ac +ac +tV +tV +yJ +tV +pb +tV +kE +yJ +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +sb +sb +sb +xY +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +sb +sb +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +gp +gp +gp +gp +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(42,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +yJ +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +sb +sb +sb +xY +xY +WE +xY +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +sb +sb +BW +BW +BW +BW +BW +BW +BW +BW +BW +gp +gp +gp +gp +gp +uC +uC +gp +gp +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(43,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +sb +sb +sb +xY +xY +xY +Nw +xX +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +gp +uC +uC +uC +uC +uC +uC +uC +gp +gp +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +Qm +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(44,1,1) = {" +BW +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +sb +sb +sb +xY +xY +xY +xY +xY +xY +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +gp +uC +uC +uC +uC +uC +uC +uC +uC +gp +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +Qm +Qm +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(45,1,1) = {" +BW +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +sb +sb +sb +xY +xY +xY +xY +xY +xY +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +gp +gp +uC +uC +Qm +km +Qm +Qm +uC +gp +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +Qm +qT +qT +qT +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(46,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +Gu +tV +tV +tV +tV +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +sb +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +qT +gp +gp +sE +Qm +Qm +Qm +RF +gp +gp +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +qT +qT +Qm +qT +qT +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(47,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +Gu +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +sb +xY +xY +sb +sb +sb +xY +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +qT +gp +gp +fS +Qm +Qm +es +gp +gp +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(48,1,1) = {" +BW +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +sb +sb +xY +xY +xY +xY +sb +sb +sb +sb +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +qT +qT +gp +gp +Qm +Qm +gp +gp +gp +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +BW +BW +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(49,1,1) = {" +BW +ac +ac +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +sb +sb +xY +sb +sb +xY +xY +sb +sb +sb +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +qT +qT +gp +gp +Qm +gp +gp +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(50,1,1) = {" +BW +ac +ac +tV +tV +tV +qY +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +tV +Ja +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +sb +xY +xY +sb +sb +sb +xY +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +sb +xY +xY +xY +sb +sb +sb +sb +sb +sb +xY +xY +sb +qT +qT +gp +gp +Qm +gp +gp +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +BW +BW +qT +qT +Qm +UI +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(51,1,1) = {" +BW +ac +tV +tV +rb +tV +tV +TD +tV +ac +ac +ac +tV +tV +tV +tV +tV +ac +ac +ac +ac +tV +tV +Yg +tV +tV +tV +ac +ac +cy +cy +cy +Jk +cy +cy +cy +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +sb +xY +sb +sb +Tr +xY +xY +sb +sb +sb +xY +xY +xY +xY +xZ +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +wv +xY +sb +sb +sb +sb +sb +sb +xY +xY +sb +qT +gp +gp +gp +Qm +gp +gp +gp +gp +gp +gp +Mx +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +BW +BW +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(52,1,1) = {" +BW +ac +tV +tV +TD +tV +XE +tV +tV +ac +ac +ac +tV +tV +tV +tV +tV +ac +ac +ac +wY +tV +tV +tV +tV +tV +tV +ac +ac +cy +Zq +cW +cW +cW +xV +cy +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +sb +xY +xY +sb +sb +sb +sb +sb +sb +xY +xY +xY +sb +sb +sb +xY +xY +sb +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +xY +xY +zj +gp +gp +gp +YP +YP +YP +YP +YP +YP +YP +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(53,1,1) = {" +BW +ac +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +tV +tV +tV +tV +uR +tV +tV +ac +ac +cy +Dd +cW +cW +cW +BJ +cy +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +sb +sb +xY +xY +sb +sb +xY +xY +xY +xY +xY +xY +sb +sb +sb +xY +xY +sb +sb +sb +sb +xY +xY +xY +jF +sb +sb +sb +xY +xY +xY +xY +BW +qT +qT +gp +et +et +gp +gp +gp +gp +YP +YP +lV +YP +YP +YP +YP +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(54,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +tV +tV +oN +tV +tV +ac +ac +ac +cy +ZK +cW +cW +cW +HO +cy +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +sb +xY +xY +xY +xY +xY +xY +sb +xY +xY +sb +sb +sb +xY +xY +sb +sb +sb +sb +xY +xY +xY +xY +sb +sb +sb +xY +xY +xY +xY +BW +qT +gp +gp +SA +SA +gp +YP +YP +YP +YP +YP +YP +YP +YP +Ar +YP +gp +gp +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(55,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +cy +cW +cW +cW +cW +Sd +cy +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +xY +xY +BW +gp +gp +YP +YP +YP +YP +ou +YP +YP +YP +YP +YP +YP +YP +YP +YP +gp +BW +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(56,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +cy +Nq +qF +az +VZ +GN +cy +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +xY +xY +BW +gp +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +gp +BW +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(57,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +cy +cy +cy +cy +cy +cy +cy +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +Nr +mL +xY +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +xY +xY +BW +gp +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +ii +YP +YP +YP +YP +gp +BW +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(58,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +xY +mL +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +xY +xY +BW +gp +YP +YP +YP +ii +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +gp +BW +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +Qm +Qm +Qm +qT +qT +Qm +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(59,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +oI +oI +oI +oI +Pt +Pt +Pt +Pt +Pt +rS +rS +rS +Pt +Pt +Pt +Pt +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cU +cU +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +xY +xY +xY +oj +Ra +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +BW +gp +lV +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +gp +BW +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(60,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +oI +oI +oI +oI +Pt +EE +EE +oH +EE +oH +oH +oH +oH +oH +EE +Pt +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +xY +mL +xY +fM +Is +xY +xY +xY +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +BW +gp +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +ou +YP +YP +gp +BW +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(61,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +oI +oI +oI +oI +Pt +wn +EE +wn +oH +oH +oH +oH +wn +EE +wn +Pt +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +sb +sb +sb +xY +dc +xY +xY +xY +xY +xY +xY +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +BW +gp +YP +YP +YP +YP +YP +YP +YP +ii +YP +YP +YP +YP +YP +YP +YP +gp +BW +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(62,1,1) = {" +BW +BW +BW +BW +oI +Pt +Pt +Pt +Pt +Pt +Pt +Pt +wn +EE +zB +oH +oH +oH +oH +wn +EE +wn +Pt +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +Yf +kn +kn +vL +cK +cK +cK +yI +cK +cK +cK +cK +cK +cK +cK +cK +wB +xY +xY +xY +xY +xY +xY +mL +xY +xY +sb +sb +xY +xY +xY +xY +xY +xY +sb +sb +sb +BW +gp +YP +Ar +YP +YP +YP +ou +YP +YP +YP +YP +YP +ii +YP +YP +YP +gp +BW +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(63,1,1) = {" +BW +BW +BW +BW +oI +Pt +OE +ky +dP +ky +EE +Pt +EE +oH +oH +oH +EE +EE +EE +oH +EE +EE +Pt +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +gH +MO +MO +MO +MO +MO +MO +cK +cK +cK +cK +cK +cK +wB +xY +xY +xY +xY +xY +xY +xY +bl +xY +sb +sb +sb +sb +sb +sb +xY +xY +sb +sb +sb +BW +gp +YP +YP +ii +YP +lV +YP +YP +YP +Ar +YP +YP +YP +YP +YP +YP +gp +BW +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +EJ +Qm +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(64,1,1) = {" +BW +BW +BW +BW +oI +Pt +EE +zS +bp +zS +EE +Pt +wn +oH +uu +EE +EE +oH +EE +ev +EE +wn +Pt +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +DZ +MO +dI +dI +dI +dI +MO +cK +kn +kn +kn +kn +kn +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +xY +xY +sb +sb +sb +BW +gp +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +gp +BW +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +xA +Qm +UI +Qm +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(65,1,1) = {" +BW +BW +BW +BW +oI +Pt +EE +EE +EE +EE +EE +Pt +EE +EE +pM +EE +EE +EE +EE +pM +EE +EE +Pt +BW +kn +kn +kn +kn +kn +kn +El +ah +ah +ah +Ib +hR +hR +kn +kn +kn +kn +cK +cK +kn +kn +cK +MO +dI +Ai +Ai +dI +MO +cK +kn +kn +kn +kn +kn +BW +BW +BW +sb +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +BW +gp +gp +gp +gp +gp +gp +gp +Qm +gp +gp +gp +gp +gp +gp +gp +gp +gp +BW +qT +qT +UI +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +UI +Qm +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(66,1,1) = {" +BW +BW +BW +BW +Pt +Pt +Pt +Pt +NV +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +NV +Pt +Pt +Pt +Pt +Pt +BW +kn +kn +kn +kn +kn +kn +jI +ah +ah +Hn +ah +Xp +hR +kn +kn +kn +kn +cK +cK +kn +kn +cK +MO +dI +Ai +Ai +dI +MO +cK +kn +kn +kn +kn +kn +BW +BW +BW +sb +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +Ld +xY +sb +sb +sb +BW +qT +qT +qT +gp +gp +gp +gp +Qm +gp +gp +qT +gp +gp +gp +qT +qT +qT +BW +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(67,1,1) = {" +BW +BW +BW +BW +Pt +hY +EE +ky +EE +EE +EE +EE +EE +ky +EE +EE +Pt +EE +Pt +EE +EE +EE +Pt +BW +kn +kn +kn +kn +kn +kn +ah +ah +ah +ah +ah +ah +ah +kn +kn +kn +kn +cK +cK +kn +kn +cK +MO +dI +Ai +Ai +dI +MO +cK +kn +kn +kn +kn +kn +BW +BW +BW +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +sb +sb +sb +sb +sb +BW +qT +qT +qT +qT +qT +gp +Qm +Qm +gp +gp +qT +qT +qT +qT +qT +qT +qT +BW +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(68,1,1) = {" +BW +BW +BW +BW +Pt +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +NV +EE +Pt +Kf +EE +EE +Pt +BW +kn +kn +kn +kn +kn +kn +ah +ah +ah +Hn +ah +ah +ah +ah +ah +ah +zH +cK +cK +cK +cK +cK +MO +dI +dI +dI +dI +MO +cK +kn +kn +kn +kn +kn +BW +BW +BW +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +sb +sb +sb +sb +sb +BW +gp +gp +gp +gp +gp +gp +Qm +Qm +Qm +gp +qT +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(69,1,1) = {" +BW +BW +BW +BW +Pt +gL +KZ +OB +wg +KZ +OB +gL +KZ +OB +gL +KZ +Pt +uy +Pt +Kf +EE +EE +Pt +BW +kn +kn +kn +kn +kn +kn +ah +NL +ah +ah +ah +ah +ah +iu +ah +ah +zH +cK +cK +NU +cK +cK +MO +MO +MO +MO +MO +MO +cK +kn +kn +kn +kn +kn +BW +BW +BW +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +BW +gp +Qm +ed +Qm +Qm +Qm +Qm +Qm +Qm +gp +qT +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(70,1,1) = {" +BW +BW +BW +BW +Pt +lL +bH +PC +lL +jA +PC +lL +bH +PC +lL +bH +Pt +EE +Pt +EE +EE +EE +Pt +BW +kn +kn +kn +kn +kn +kn +jI +ah +ah +ah +ah +Hn +ah +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +NU +cK +cK +cK +kn +kn +kn +kn +kn +BW +BW +BW +sb +sb +sb +sb +sb +sb +sb +WE +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +BW +gp +yP +Qm +Qm +Qm +gp +Qm +Qm +gp +gp +qT +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +UI +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(71,1,1) = {" +BW +BW +BW +BW +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +NV +Pt +Pt +ml +Pt +Pt +BW +kn +kn +kn +kn +kn +kn +hR +EA +hR +ah +ah +ah +ah +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cU +cU +kn +kn +kn +kn +kn +BW +BW +BW +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +BW +gp +Qm +lR +Qm +Qm +gp +gp +gp +gp +qT +qT +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(72,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +oI +oI +oI +Pt +cz +zS +zS +EE +Pt +zS +EE +EE +EE +EE +Ch +Pt +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +ah +ah +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +gp +gp +gp +qB +gp +gp +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(73,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +oI +oI +oI +Pt +EE +Wm +EE +EE +Pt +Kh +EE +Ka +EE +kc +uy +Pt +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +ah +nY +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +gp +gp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(74,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +oI +oI +oI +Pt +qE +EE +EE +EE +NV +EE +EE +Ka +EE +kc +EE +Pt +bW +kn +kn +kn +kn +kn +kn +kn +kn +kn +ah +ah +kn +kn +kn +kn +kn +kn +ah +ah +ah +Ib +ah +ah +kn +kn +kn +kn +cK +Aj +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +xA +Qm +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +UI +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(75,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +oI +oI +oI +Pt +qE +pM +EE +EE +Pt +ew +EE +Ka +EE +kc +EE +Pt +bW +kn +kn +kn +kn +kn +kn +kn +kn +kn +ah +ah +kn +kn +kn +kn +kn +kn +XO +ah +ah +ah +ah +ah +kn +kn +kn +kn +Aj +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +UI +Qm +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(76,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +ZA +EE +Ka +EE +kc +EE +Pt +bW +kn +kn +kn +kn +kn +kn +kn +kn +kn +ah +ah +ah +ah +ah +Ib +ah +ah +ah +ah +tq +ah +ah +ah +kn +kn +kn +kn +Aj +cK +kn +kn +kn +kn +ie +VU +rA +tE +kn +kn +HX +yI +cK +cK +cK +NQ +QL +Bs +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +UI +Qm +Qm +qT +qT +qT +qT +Qm +UI +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(77,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +Pt +Jo +CK +zS +zS +oh +ky +vZ +Pt +MZ +EE +Ka +EE +kc +EE +Pt +bW +kn +kn +kn +kn +kn +kn +kn +kn +kn +ah +Yx +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +VR +ah +kn +kn +kn +kn +Aj +Yf +kn +kn +kn +kn +aR +rA +rA +pW +kn +kn +cK +cK +pg +pg +pg +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +UI +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +EJ +UI +qT +qT +qT +qT +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(78,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +Pt +Ch +Di +PA +zS +oh +EE +EE +Pt +zW +EE +EE +EE +EE +uy +Pt +bW +kn +kn +kn +kn +kn +kn +kn +kn +kn +Yx +ah +kn +kn +kn +kn +kn +kn +ah +ah +ah +me +ah +ah +kn +kn +kn +kn +cK +Aj +kn +kn +kn +kn +rA +Xt +rA +rA +lZ +cK +cK +cK +QL +QL +QL +cK +LO +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(79,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +Pt +EE +Di +zS +gJ +oh +EE +EE +NV +EE +EE +EE +EE +EE +Fs +Pt +bW +kn +kn +kn +Ek +WR +RW +kn +SI +ah +Yx +ah +NY +sw +kn +kn +kn +kn +ah +ah +ah +ah +ah +ah +kn +kn +kn +kn +cK +Aj +kn +kn +kn +kn +rA +rA +rA +rA +lZ +cK +cK +cK +QL +QL +QL +cK +cK +cK +kn +kn +kn +kn +kn +xH +Ga +EZ +rA +rA +kn +kn +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(80,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +Pt +EE +EE +EE +EE +EE +EE +EE +Pt +Ch +Ch +Ch +EE +EE +Fs +Pt +bW +kn +kn +kn +ah +ah +ah +kn +iz +ah +ah +Wo +Hx +ah +kn +kn +kn +kn +aT +ah +ah +ah +ah +ah +kn +kn +kn +kn +cK +Aj +kn +kn +kn +kn +Ah +Ah +Ah +Ah +kn +kn +cK +LO +VQ +VQ +VQ +cK +LO +cK +kn +kn +kn +kn +kn +rA +rA +rA +rA +rA +kn +kn +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(81,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +Pt +ep +Xy +ep +zS +ep +Xy +ep +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +bW +kn +kn +kn +ah +XY +ah +NF +ah +ah +Wo +ah +ah +fR +kn +kn +kn +kn +sZ +ah +VR +ah +ah +FH +kn +kn +kn +kn +cK +Aj +kn +kn +kn +kn +Wd +Kn +HG +xN +kn +kn +cK +NU +cK +cK +cK +NU +cK +cK +kn +kn +kn +kn +kn +pd +rA +IS +sm +pW +kn +kn +BW +BW +BW +BW +BW +BW +qT +qT +xA +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +xA +Qm +UI +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(82,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +rS +rS +rS +rS +rS +rS +rS +bW +kn +kn +kn +ah +ah +ah +kn +ah +Wo +cd +ah +ah +ah +kn +kn +kn +kn +ah +ah +ah +iu +ah +Xp +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +yT +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +UI +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(83,1,1) = {" +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +kn +kn +kn +kn +kn +kn +kn +UV +ah +Wo +ah +Wo +Cc +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +Aj +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +Tn +Bm +cK +Ky +rD +cK +HE +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +qT +EJ +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(84,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +ei +iu +ah +ah +iu +ah +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +KP +QL +cK +Ky +QL +cK +rg +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(85,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +Aj +Aj +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +QJ +QL +LO +Ky +QL +cK +FV +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +KB +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(86,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +Aj +wS +cK +cK +cK +cK +wS +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +cK +cK +Ky +QL +cK +cK +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +KB +Qm +Qm +Qm +Qm +UI +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(87,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +sT +sT +Sk +Sn +Dn +WB +kn +kn +kn +kn +ED +cK +yI +cK +cK +Lh +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cS +Aj +Aj +cK +bj +cK +Aj +Aj +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +LO +cK +cK +QL +QL +cK +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +KB +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(88,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +HB +Bf +cK +cK +cK +cK +kn +kn +kn +kn +cK +cK +cK +cK +cK +MY +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +sh +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +bj +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +hQ +QL +QL +cK +LO +cK +cK +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(89,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +ma +cK +xu +gT +cK +cK +kn +kn +kn +kn +cK +Lh +cK +cK +cK +Lh +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +Aj +Aj +kn +kn +kn +kn +kn +kn +cK +cK +bj +cK +Rk +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +KP +BG +QL +cK +cK +cK +cK +kn +kn +kn +kn +BW +BW +BW +jn +jn +jn +jn +jn +jn +jn +jn +jn +jn +jn +BW +BW +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(90,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +Se +cK +cK +cK +Bf +cK +gT +cK +kn +kn +kH +YF +CP +cK +cK +Lh +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +Aj +Aj +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +bj +cK +Aj +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +lE +ga +cK +cK +NU +cK +Yr +kn +kn +kn +kn +BW +BW +BW +jn +Lo +NC +jn +VD +VD +EV +VD +VD +VD +jn +BW +BW +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(91,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +Lh +yd +ME +yd +Lh +cK +cK +cK +kn +kn +cK +Sn +cK +cK +cK +Lh +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +cK +Aj +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +bj +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +Yf +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +jn +VD +VD +jn +dA +xF +VD +EU +VD +VD +jn +BW +BW +qT +qT +qT +qT +Qm +Qm +Qm +Qm +xA +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +BW +BW +BW +"} +(92,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +cK +cK +cK +cK +cK +yd +kn +kn +kn +kn +cK +cK +kn +kn +cK +cK +cK +cK +cK +kn +cK +cK +kn +kn +kn +kn +kn +kn +cK +cK +wS +cK +cK +cK +cK +wS +cS +cK +kn +kn +kn +kn +kn +kn +IU +MO +PG +kn +kn +cK +cK +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +jn +VD +VD +Nt +VD +VD +VD +VD +VD +xF +jn +BW +BW +qT +qT +qT +qT +Qm +Qm +UI +Qm +Qm +Qm +Qm +Qm +Qm +Qm +UI +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +"} +(93,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +Rf +cK +cK +cK +cK +Lh +kn +kn +kn +kn +cK +cK +kn +kn +cK +Ls +MO +dg +cK +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +Aj +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +Tk +MO +MO +MO +NF +cK +cK +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +jn +VD +pI +jn +VD +VD +xF +VD +VD +VD +jn +BW +BW +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(94,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +cK +Yf +kn +kn +TX +MO +MO +MO +cK +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +Aj +cK +cK +Aj +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +Dh +MO +PG +kn +kn +cK +cK +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +jn +jn +jn +jn +VD +Yi +VD +VD +VD +VD +jn +BW +BW +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +xA +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(95,1,1) = {" +BW +BW +kn +kn +cK +cK +cK +sh +cK +cK +cK +cK +kn +kn +kn +cK +cK +kn +kn +kn +kn +gT +cK +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +cK +MO +MO +cK +cK +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +jn +VD +VD +VD +xF +VD +Am +jn +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +UI +Qm +Qm +Qm +Qm +Qm +UI +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(96,1,1) = {" +BW +BW +kn +kn +cK +wS +cK +cK +cK +cK +PP +cK +kn +kn +kn +cK +cK +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +uT +cK +kn +kn +cK +jD +MO +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +cK +Yf +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +jn +HP +pr +VD +VD +VD +Ul +jn +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(97,1,1) = {" +BW +BW +kn +kn +cK +cK +cK +cK +uT +cK +cK +cK +Aj +cK +yI +cK +cK +cK +cK +cK +cK +uT +cK +cK +cK +yI +cK +cK +cK +cK +cK +kn +kn +cK +jD +MO +cK +cK +cK +cK +cK +kn +id +id +id +id +kn +kn +kn +kn +kn +Aj +cK +kn +kn +Zp +Zp +Zp +Zp +Zp +Zp +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +jn +VD +VD +VD +VD +xF +VD +jn +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(98,1,1) = {" +BW +BW +kn +kn +cK +cK +PP +cK +cK +Aj +cK +cK +cK +cK +cK +Aj +Aj +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +kn +kn +cK +MO +MO +cK +cK +kn +wq +cK +kn +cK +rq +rq +rq +kn +kn +kn +kn +kn +Aj +cK +kn +kn +Zp +lK +lK +lK +Ux +Zp +kn +kn +kn +kn +kn +kn +kn +yT +yT +kn +kn +kn +kn +cK +cK +kn +kn +Tn +df +df +wD +kn +BW +BW +BW +BW +BW +BW +jn +VD +VD +VD +VD +VD +VD +jn +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(99,1,1) = {" +BW +BW +kn +kn +cK +wS +cK +cK +cK +cK +uT +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +TX +MO +MO +MO +cK +kn +cK +cK +NF +cK +rq +rq +rq +kn +kn +kn +kn +kn +Aj +cK +kn +kn +Zp +tt +PU +lK +Ux +Zp +kn +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +kn +kn +cK +cK +kn +kn +HQ +cK +cK +eS +kn +BW +BW +BW +BW +BW +BW +jn +GX +VD +VD +VD +VD +VD +jn +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +EJ +Qm +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(100,1,1) = {" +BW +BW +kn +kn +cK +cK +cK +Aj +Aj +Aj +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +cK +dg +MO +dg +cK +kn +TX +cK +kn +cK +rq +rq +rq +kn +kn +kn +kn +kn +cK +CS +kn +kn +Zp +Zp +Zp +Zp +Ux +cK +NF +cK +Ux +Ux +cK +cK +cK +cK +cK +cK +cK +kn +kn +cK +cK +cK +lZ +cK +ZB +cK +cK +kn +BW +BW +BW +BW +BW +BW +jn +jn +jn +jn +jn +jn +jn +jn +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +"} +(101,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +nI +cK +cK +cK +cK +kn +kn +cK +cK +kn +kn +cK +cK +cK +cK +cK +kn +cK +cK +kn +id +id +id +id +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +lu +Ux +Ux +Ux +cK +cK +kn +kn +cK +Yf +kn +kn +cK +cK +cK +lZ +cK +cK +cK +cK +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +UI +Qm +qT +qT +qT +qT +qT +BW +BW +BW +"} +(102,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +cK +wS +cK +cK +cK +jg +cK +Aj +cK +cK +wS +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cU +cU +kn +nR +cK +kL +Re +kn +kn +kn +kn +Ux +Ux +Ux +Ux +Ux +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +TB +cK +cK +cK +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +"} +(103,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +Aj +cK +kn +kn +kn +kn +kn +kn +cK +KA +cK +xO +Aj +Qb +Aj +Aj +cK +Aj +cK +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +kn +cK +cK +DK +cK +kn +kn +kn +kn +cK +IB +Ux +Ux +Ux +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +Jp +Jp +Jp +Jp +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +BW +BW +BW +"} +(104,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +cK +cK +Aj +cK +cK +Qb +cK +cK +cK +xO +cK +cK +kn +kn +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +kn +kn +NF +kn +kn +kn +kn +kn +kn +cK +Ux +Ux +Ux +Ux +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +UI +Qm +Qm +Qm +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +BW +BW +BW +"} +(105,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +cK +Aj +kn +kn +kn +kn +kn +kn +cK +jg +cK +cK +cK +cK +cK +cK +Aj +cK +Aj +cK +kn +kn +cK +cK +cK +cK +Yf +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +Ux +cK +cK +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +BW +BW +BW +"} +(106,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +TX +Aj +kn +kn +kn +kn +kn +kn +cK +cK +xO +Aj +Aj +cK +cK +cK +xO +Aj +Aj +cK +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +TB +cK +kn +kn +kn +kn +cK +cK +cK +cK +cK +NU +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +BW +BW +BW +"} +(107,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +cK +Aj +kn +kn +kn +kn +kn +kn +cK +wS +cK +cK +cK +Aj +Aj +Aj +cK +cK +wS +cK +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +BW +BW +BW +"} +(108,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +cK +cK +BX +cK +cK +cK +cK +cK +jg +cK +cK +cK +kn +kn +kn +kn +kn +cK +cK +kn +kn +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +Ux +Ux +MO +MO +MO +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +UI +Qm +Qm +Qm +Qm +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +BW +BW +BW +"} +(109,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +Aj +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +Zp +Zp +mS +Ux +Ux +Ux +Ux +Zp +Zp +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +Ux +Ux +Ux +Ux +kM +MO +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +xA +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +xA +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +BW +BW +BW +"} +(110,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +sh +Aj +Aj +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +kn +Zp +Ux +Ux +Ux +oT +Ux +Ux +Ux +Zp +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +Ux +IB +Ux +Ux +Ux +MO +kn +kn +cK +cK +cK +cK +yI +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +UI +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +BW +BW +BW +"} +(111,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +cK +cK +Aj +Aj +cK +cK +uT +Aj +Aj +cK +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +kn +Zp +Ux +Ux +Ux +Ux +Ux +Ux +Ux +Zp +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +Ux +Ux +Ux +Ux +Ux +MO +kn +kn +cK +cK +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(112,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +cK +cK +Aj +Aj +Aj +cK +cK +uT +yI +cK +cK +cK +cK +kn +kn +Zp +Ux +Ux +Ux +Ux +Ux +Ux +Ux +Zp +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +Ux +Ux +Ux +Ux +MO +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +Qm +Qm +UI +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(113,1,1) = {" +BW +BW +kn +Fr +cK +pJ +cK +cK +ER +kn +kn +kn +JA +cK +kn +kn +kn +kn +kn +kn +cK +Aj +Aj +cK +Aj +cK +cK +Aj +Aj +Aj +cK +cK +cK +kn +Zp +Zp +vA +Ux +Ux +Ux +Ux +Ux +Ux +Ux +Ux +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +MO +MO +MO +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(114,1,1) = {" +BW +BW +kn +cI +Aj +Aj +cK +Aj +oO +kn +kn +kn +Aj +cK +kn +kn +kn +kn +kn +kn +kn +NF +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +Zp +lK +Ux +Ux +Ux +Zp +Ux +Ux +Ux +Ux +Ux +Ux +cK +cK +cK +cK +cK +cK +wq +cK +yI +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +Qm +Qm +Qm +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(115,1,1) = {" +BW +BW +kn +Sx +cK +MO +CT +cK +cK +kn +kn +kn +cK +Aj +kn +kn +cK +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +Zp +lK +lK +Ux +Ux +Ux +Ux +Ux +Ux +Zp +kn +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +cK +wq +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +Aj +Aj +cK +cU +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(116,1,1) = {" +BW +BW +kn +Lh +cK +CY +CT +cK +Aj +Aj +cK +cK +cK +Aj +kn +kn +cK +Jq +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +Zp +lK +lK +lK +Ux +Ux +Ux +Ux +Ux +Zp +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +cK +gj +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +Aj +cK +Aj +Aj +Aj +Aj +cU +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(117,1,1) = {" +BW +BW +kn +xI +Aj +Pa +CT +cK +Aj +Aj +Aj +cK +cK +Aj +kn +kn +cK +cK +cK +kL +kn +kn +kn +WB +cK +cK +cK +cK +cK +kn +kn +cK +cK +kn +Zp +Zp +Zp +lK +Ux +Ux +Ux +oT +Ux +Zp +kn +cK +cK +kn +cK +Ux +cK +cK +cK +kn +kn +kn +cK +cK +kn +kn +cK +cK +cK +kn +kn +cK +cK +kn +cK +cK +yI +gT +Lh +Lh +kn +kn +cK +cK +kn +kn +kn +kn +kn +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(118,1,1) = {" +BW +BW +kn +ME +Aj +AH +CT +cK +cK +kn +kn +kn +cK +Aj +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +Bf +Bf +cK +kn +kn +cK +cK +kn +kn +kn +Zp +lK +lK +Ux +Ux +Ux +Ux +Zp +kn +cK +cK +kn +Ux +Ux +Ux +Ux +Ux +Zp +kn +kn +cK +cK +kn +kn +kn +NF +kn +kn +kn +cK +cK +kn +jg +cK +Bf +cK +cK +Bf +kn +kn +TX +cK +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +UI +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +NM +NM +xj +NM +qT +qT +qT +qT +qT +BW +BW +BW +"} +(119,1,1) = {" +BW +BW +kn +sa +Aj +cK +cK +Aj +Ly +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +pt +cK +cK +pJ +pJ +pJ +cK +cK +kn +kn +cK +cK +cK +kn +kn +Zp +lK +lK +lK +lK +Ux +Zp +Zp +kn +cK +cK +NF +cK +Ux +oT +Ux +Ux +Zp +kn +kn +cK +cK +cK +cK +cK +yI +cK +cK +cK +cK +cK +cK +gT +cK +Bf +yS +gT +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +xA +Qm +Qm +qT +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +NM +NM +Av +Av +NM +NM +NM +qT +qT +qT +BW +BW +BW +"} +(120,1,1) = {" +BW +BW +kn +yM +cK +EN +cK +Aj +BM +kn +kn +kn +JA +cK +kn +kn +kn +kn +kn +kn +kn +cK +wS +cK +cK +cK +cK +cK +cK +kn +kn +cK +cK +cK +kn +kn +Zp +lK +lK +lK +lK +lK +Zp +kn +kn +cK +cK +kn +cK +Ux +Ux +Ux +Ux +Zp +kn +kn +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +gT +cK +Bf +cK +Bf +jL +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +NM +Av +Av +Av +Av +Av +NM +NM +qT +qT +BW +BW +BW +"} +(121,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +Aj +cK +kn +kn +kn +kn +kn +kn +kn +MO +MO +MO +pJ +pJ +pJ +cK +cK +kn +kn +kn +cK +cK +kn +kn +Zp +Zp +Zp +Zp +Zp +Zp +Zp +kn +kn +TB +cK +kn +cK +Ux +Ux +Ux +AV +Zp +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +cK +cK +jc +cK +Lh +Lh +kn +kn +cK +cK +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +Qm +Qm +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Av +Av +Av +fK +Av +Av +Av +NM +NM +qT +BW +BW +BW +"} +(122,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +MO +MO +MO +MO +cK +cK +cK +cK +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +Zp +Zp +Zp +Zp +Zp +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +Qm +Qm +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Av +Av +fK +uU +fK +fK +rJ +Av +NM +qT +BW +BW +BW +"} +(123,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +cD +jD +jD +cD +MO +cK +wS +cK +kn +kn +kn +cK +Yf +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +kn +kn +kn +cK +cK +yI +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +Qm +EJ +Qm +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Av +Av +fK +fK +oy +fK +fK +Av +NM +qT +BW +BW +BW +"} +(124,1,1) = {" +BW +BW +BW +BW +BW +xK +xK +xK +xK +xK +xK +xK +ZY +ZY +xK +kn +kn +kn +kn +kn +kn +cD +jD +jD +ae +MO +cK +cK +cK +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +cK +MO +Ux +Ux +MO +MO +cK +kn +kn +kn +cK +Ux +Ux +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Av +Av +fK +fK +fK +fK +Av +xj +qT +BW +BW +BW +"} +(125,1,1) = {" +BW +BW +BW +BW +BW +xK +zv +zv +xK +zv +zv +xK +TV +jR +xK +kn +kn +kn +kn +kn +kn +cD +jD +jD +Op +MO +cK +cK +cK +cK +cK +cK +uT +cK +kn +kn +kn +cK +cK +cK +Ux +Ux +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +cK +Ux +Ux +Ux +Ux +MO +cK +cK +cK +cK +Ux +Ux +Zp +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Av +Av +fK +fK +fK +rJ +Av +NM +qT +BW +BW +BW +"} +(126,1,1) = {" +BW +BW +BW +xK +xK +xK +nD +nD +xK +nD +nD +xK +yW +yW +xK +kn +kn +kn +kn +kn +kn +cD +jD +jD +cD +MO +cK +wS +cK +kn +kn +kn +cK +cK +kn +kn +kn +cK +Ux +Ux +Ux +Ux +lK +lK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +cK +Ux +Ux +Ux +Ux +MO +cK +cK +cK +Ux +Ux +Ux +Zp +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +Qm +qT +qT +Qm +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +NM +Av +Av +rJ +fK +Av +Av +Av +NM +qT +BW +BW +BW +"} +(127,1,1) = {" +BW +BW +BW +xK +nD +mr +nD +nD +mr +nD +nD +mr +nD +nD +xK +kn +kn +kn +kn +kn +kn +MO +MO +MO +MO +cK +cK +cK +cK +kn +kn +kn +cK +cK +kn +kn +kn +KR +Ux +Ux +IB +Ux +lK +lK +lK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +cK +Ux +Ux +IB +Ux +MO +cK +kn +kn +kn +Ux +lK +Zp +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +UI +Qm +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +NM +NM +Av +Av +Av +Av +Av +Av +NM +qT +BW +BW +BW +"} +(128,1,1) = {" +BW +BW +BW +xK +nD +nD +nD +nD +go +nD +nD +go +nD +nD +xK +kn +kn +kn +kn +kn +kn +MO +MO +MO +pJ +pJ +pJ +cK +cK +kn +kn +kn +cK +cK +kn +kn +kn +cK +cK +Ux +Ux +Ux +Ux +Ux +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +Rf +cK +cK +cK +cK +cK +cK +kn +kn +kn +Ux +lK +Zp +kn +kn +UC +cK +cK +cK +cK +pN +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +NM +NM +xj +Av +Av +Av +NM +NM +qT +BW +BW +BW +"} +(129,1,1) = {" +BW +BW +BW +xK +nD +nD +xK +xK +xK +nD +nD +xK +nD +nD +xK +kn +kn +kn +kn +kn +kn +cK +wS +cK +cK +cK +cK +Bf +cK +kn +kn +kn +cK +cK +kn +kn +kn +cK +cK +Ux +Ux +Ux +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +Ux +lK +Zp +kn +kn +Lh +cK +cK +oE +cK +cK +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +NM +NM +NM +NM +NM +qT +qT +BW +BW +BW +"} +(130,1,1) = {" +BW +BW +BW +xK +nD +nD +xK +xK +xK +zv +zv +xK +zv +zv +xK +kn +kn +kn +kn +kn +kn +OK +cK +cK +pJ +pJ +pJ +cK +cK +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +yI +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +yI +Ux +Ux +Ux +Ux +lK +Zp +kn +kn +Vq +cK +cK +cK +cK +Yf +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(131,1,1) = {" +BW +BW +BW +xK +nD +nD +nD +Xd +xK +xK +xK +xK +xK +xK +xK +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +Bf +cK +cK +kn +kn +kn +kn +NF +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +wq +cK +cK +cK +cK +cK +cK +cK +cK +Ux +Ux +lK +lK +lK +lK +Zp +kn +kn +Lh +cK +cK +UK +cK +cK +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +UI +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(132,1,1) = {" +BW +BW +BW +xK +nD +nD +nD +Xd +xK +bW +bW +bW +BW +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +WB +cK +cK +cK +cK +cK +kn +kn +kn +cK +cK +cK +fI +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +NF +kn +kn +kn +kn +kn +Zp +Zp +Zp +Zp +Zp +Zp +kn +kn +Lm +cK +Vz +cK +cK +Lh +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(133,1,1) = {" +BW +BW +BW +xK +xK +xK +xK +xK +xK +bW +bW +bW +BW +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +BX +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +JL +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +Lh +cK +cK +cK +Lh +pH +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(134,1,1) = {" +BW +BW +BW +BW +bW +bW +bW +bW +bW +bW +bW +bW +BW +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +JL +cK +TO +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(135,1,1) = {" +BW +BW +BW +BW +bW +bW +bW +bW +bW +bW +bW +bW +BW +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(136,1,1) = {" +BW +BW +BW +BW +bW +bW +bW +bW +bW +bW +bW +bW +BW +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(137,1,1) = {" +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(138,1,1) = {" +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(139,1,1) = {" +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(140,1,1) = {" +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} diff --git a/maps/stellar_delight/stellar_delight_defines.dm b/maps/stellar_delight/stellar_delight_defines.dm index c14d94e5cf..5046e53112 100644 --- a/maps/stellar_delight/stellar_delight_defines.dm +++ b/maps/stellar_delight/stellar_delight_defines.dm @@ -177,7 +177,8 @@ list("Redgate - Hotsprings"), list("Redgate - Rain City"), list("Redgate - Islands Underwater","Redgate - Islands"), - list("Redgate - Moving Train", "Redgate - Moving Train Upper Level") + list("Redgate - Moving Train", "Redgate - Moving Train Upper Level"), + list("Redgate - Fantasy Dungeon", "Redgate - Fantasy Town") ) ai_shell_restricted = TRUE diff --git a/maps/tether/tether_defines.dm b/maps/tether/tether_defines.dm index 1cbf87a99a..a44d3f285c 100644 --- a/maps/tether/tether_defines.dm +++ b/maps/tether/tether_defines.dm @@ -207,7 +207,8 @@ list("Redgate - Hotsprings"), list("Redgate - Rain City"), list("Redgate - Islands Underwater","Redgate - Islands"), - list("Redgate - Moving Train", "Redgate - Moving Train Upper Level") + list("Redgate - Moving Train", "Redgate - Moving Train Upper Level"), + list("Redgate - Fantasy Dungeon", "Redgate - Fantasy Town") ) ai_shell_restricted = TRUE diff --git a/maps/virgo_minitest/virgo_minitest-1.dmm b/maps/virgo_minitest/virgo_minitest-1.dmm index 8d0de83a25..ba5e5cf890 100644 --- a/maps/virgo_minitest/virgo_minitest-1.dmm +++ b/maps/virgo_minitest/virgo_minitest-1.dmm @@ -2727,12 +2727,14 @@ /obj/machinery/alarm{ pixel_y = 22 }, +/obj/fruitspawner/banana, /turf/simulated/floor/tiled, /area/bridge) "gh" = ( /obj/machinery/light{ dir = 1 }, +/obj/fruitspawner/blackwabback, /turf/simulated/floor/tiled, /area/bridge) "gi" = ( @@ -2740,6 +2742,7 @@ layer = 3.3; pixel_y = 32 }, +/obj/fruitspawner/bloodrose, /turf/simulated/floor/tiled, /area/bridge) "gj" = ( @@ -2751,12 +2754,14 @@ /obj/structure/cable{ icon_state = "0-4" }, +/obj/fruitspawner/bluespacetomato, /turf/simulated/floor/tiled, /area/bridge) "gk" = ( /obj/structure/cable{ icon_state = "4-8" }, +/obj/fruitspawner/bluetomato, /turf/simulated/floor/tiled, /area/bridge) "gl" = ( @@ -2765,12 +2770,14 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/fruitspawner/carpet, /turf/simulated/floor/tiled, /area/bridge) "gm" = ( /obj/structure/cable{ icon_state = "1-8" }, +/obj/fruitspawner/carrot, /turf/simulated/floor/tiled, /area/bridge) "gn" = ( @@ -2779,6 +2786,7 @@ departmentType = 7; pixel_y = 28 }, +/obj/fruitspawner/cherry, /turf/simulated/floor/tiled, /area/bridge) "go" = ( @@ -2790,18 +2798,21 @@ "gp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/fruitspawner/diona, /turf/simulated/floor/tiled, /area/bridge) "gq" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, +/obj/fruitspawner/lime, /turf/simulated/floor/tiled, /area/bridge) "gr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/fruitspawner/mold, /turf/simulated/floor/tiled, /area/bridge) "gs" = ( @@ -2811,18 +2822,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, +/obj/fruitspawner/orange, /turf/simulated/floor/tiled, /area/bridge) "gt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/fruitspawner/peanut, /turf/simulated/floor/tiled, /area/bridge) "gu" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, +/obj/fruitspawner/plastic, /turf/simulated/floor/tiled, /area/bridge) "gv" = ( @@ -2868,6 +2882,7 @@ /obj/effect/landmark{ name = "JoinLateCryo" }, +/obj/fruitspawner/lettuce, /turf/simulated/floor/tiled, /area/bridge) "gD" = ( @@ -3187,6 +3202,14 @@ }, /turf/simulated/floor, /area/engineering/engine_room) +"hX" = ( +/obj/fruitspawner/siflettuce, +/turf/simulated/floor/tiled, +/area/bridge) +"hY" = ( +/obj/fruitspawner/tobacco, +/turf/simulated/floor/tiled, +/area/bridge) "il" = ( /obj/effect/floor_decal/industrial/warning/cee{ dir = 1 @@ -3206,6 +3229,10 @@ nitrogen = 82.1472 }, /area/engineering/workshop) +"ip" = ( +/obj/fruitspawner/redcap, +/turf/simulated/floor/tiled, +/area/bridge) "iy" = ( /obj/structure/lattice, /turf/simulated/floor/airless, @@ -3247,6 +3274,13 @@ /obj/effect/floor_decal/industrial/outline, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) +"iV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/fruitspawner/mtear, +/turf/simulated/floor/tiled, +/area/bridge) "jc" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 8 @@ -3362,6 +3396,10 @@ }, /turf/simulated/floor, /area/engineering/workshop) +"km" = ( +/obj/fruitspawner/whitebeet, +/turf/simulated/floor/tiled, +/area/bridge) "kr" = ( /obj/structure/table/steel, /obj/item/weapon/storage/box/lights/mixed, @@ -3440,6 +3478,10 @@ /obj/structure/shuttle, /turf/simulated/shuttle/wall/voidcraft/green, /area/shuttle/overmapdemo) +"kX" = ( +/obj/fruitspawner/soybean, +/turf/simulated/floor/tiled, +/area/bridge) "kY" = ( /obj/item/modular_computer/console/preset/engineering{ dir = 1 @@ -3465,6 +3507,10 @@ "lx" = ( /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) +"lA" = ( +/obj/fruitspawner/towercap, +/turf/simulated/floor/tiled, +/area/bridge) "lD" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -3484,6 +3530,13 @@ /obj/machinery/atmospherics/pipe/manifold4w/visible/black, /turf/simulated/floor, /area/engineering/workshop) +"lJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/fruitspawner/mushrooms, +/turf/simulated/floor/tiled, +/area/bridge) "lS" = ( /obj/structure/table/reinforced, /obj/fiftyspawner/rods, @@ -3514,6 +3567,17 @@ }, /turf/simulated/floor/tiled, /area/submap/pa_room) +"me" = ( +/obj/fruitspawner/destroyingangel, +/turf/simulated/floor/tiled, +/area/bridge) +"mh" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/fruitspawner/stimbush, +/turf/simulated/floor/tiled, +/area/bridge) "mj" = ( /obj/machinery/camera/network/civilian{ dir = 10 @@ -3579,6 +3643,10 @@ }, /turf/simulated/floor, /area/engineering/workshop) +"na" = ( +/obj/fruitspawner/tomato, +/turf/simulated/floor/tiled, +/area/bridge) "nb" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -3692,6 +3760,10 @@ }, /turf/simulated/floor/tiled/techfloor, /area/submap/pa_room) +"ol" = ( +/obj/fruitspawner/grass, +/turf/simulated/floor/tiled, +/area/bridge) "ov" = ( /obj/structure/closet/emcloset, /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ @@ -3705,6 +3777,14 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/engine_room) +"oA" = ( +/obj/fruitspawner/lemon, +/turf/simulated/floor/tiled, +/area/bridge) +"oD" = ( +/obj/fruitspawner/wurmwoad, +/turf/simulated/floor/tiled, +/area/bridge) "oG" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 10 @@ -3774,6 +3854,17 @@ }, /turf/simulated/floor, /area/engineering/workshop) +"pi" = ( +/obj/fruitspawner/sporeshroom, +/turf/simulated/floor/tiled, +/area/bridge) +"pn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/fruitspawner/cabbage, +/turf/simulated/floor/tiled, +/area/bridge) "pp" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor, @@ -3898,6 +3989,10 @@ }, /turf/simulated/floor, /area/engineering/workshop) +"qc" = ( +/obj/fruitspawner/greengrapes, +/turf/simulated/floor/tiled, +/area/bridge) "qd" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 1 @@ -3917,6 +4012,10 @@ }, /turf/simulated/shuttle/floor/voidcraft/light, /area/shuttle/overmapdemo) +"qo" = ( +/obj/fruitspawner/poppies, +/turf/simulated/floor/tiled, +/area/bridge) "qt" = ( /obj/structure/cable/cyan{ icon_state = "1-2" @@ -4131,6 +4230,7 @@ /obj/effect/landmark{ name = "JoinLateCyborg" }, +/obj/fruitspawner/lavender, /turf/simulated/floor/tiled, /area/bridge) "sC" = ( @@ -4151,6 +4251,10 @@ /obj/machinery/meter, /turf/simulated/floor, /area/engineering/workshop) +"sI" = ( +/obj/fruitspawner/vanilla, +/turf/simulated/floor/tiled, +/area/bridge) "sM" = ( /obj/machinery/door/blast/regular{ dir = 4; @@ -4190,6 +4294,13 @@ }, /turf/simulated/floor/tiled/techfloor, /area/submap/pa_room) +"ty" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/fruitspawner/celery, +/turf/simulated/floor/tiled, +/area/bridge) "tz" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_gas) @@ -4326,6 +4437,10 @@ }, /turf/simulated/floor, /area/engineering/workshop) +"vm" = ( +/obj/fruitspawner/wheat, +/turf/simulated/floor/tiled, +/area/bridge) "vr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -4358,6 +4473,10 @@ nitrogen = 82.1472 }, /area/engineering/workshop) +"vH" = ( +/obj/fruitspawner/watermelon, +/turf/simulated/floor/tiled, +/area/bridge) "vI" = ( /obj/effect/landmark/start{ name = "AI" @@ -4436,6 +4555,10 @@ /obj/machinery/portable_atmospherics/canister/empty, /turf/simulated/floor, /area/engineering/workshop) +"wt" = ( +/obj/fruitspawner/amanita, +/turf/simulated/floor/tiled, +/area/bridge) "wv" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 5 @@ -4448,6 +4571,10 @@ }, /turf/simulated/floor, /area/engineering/workshop) +"wC" = ( +/obj/fruitspawner/rose, +/turf/simulated/floor/tiled, +/area/bridge) "wE" = ( /obj/structure/cable{ icon_state = "0-8" @@ -4473,6 +4600,10 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_monitoring) +"wV" = ( +/obj/fruitspawner/corn, +/turf/simulated/floor/tiled, +/area/bridge) "wW" = ( /obj/structure/lattice, /turf/space, @@ -4586,6 +4717,17 @@ nitrogen = 82.1472 }, /area/engineering/workshop) +"xw" = ( +/obj/fruitspawner/glowshroom, +/turf/simulated/floor/tiled, +/area/bridge) +"xx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/fruitspawner/nettle, +/turf/simulated/floor/tiled, +/area/bridge) "xB" = ( /obj/machinery/door/airlock/hatch{ icon_state = "door_locked"; @@ -4828,6 +4970,10 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) +"zO" = ( +/obj/fruitspawner/pumpkin, +/turf/simulated/floor/tiled, +/area/bridge) "zT" = ( /obj/machinery/computer/security/engineering{ dir = 4 @@ -4861,12 +5007,20 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_monitoring) +"Ah" = ( +/obj/fruitspawner/cabbage, +/turf/simulated/floor/tiled, +/area/bridge) "Ai" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 10 }, /turf/simulated/floor, /area/engineering/workshop) +"Al" = ( +/obj/fruitspawner/telriis, +/turf/simulated/floor/tiled, +/area/bridge) "At" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 10 @@ -5236,6 +5390,13 @@ }, /turf/simulated/floor/airless, /area/space) +"EN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/fruitspawner/onion, +/turf/simulated/floor/tiled, +/area/bridge) "ES" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor{ @@ -5276,6 +5437,14 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/engine_room) +"Fk" = ( +/obj/fruitspawner/potato, +/turf/simulated/floor/tiled, +/area/bridge) +"Fw" = ( +/obj/fruitspawner/wildwabback, +/turf/simulated/floor/tiled, +/area/bridge) "FA" = ( /obj/machinery/atmospherics/unary/heat_exchanger{ dir = 8 @@ -5367,6 +5536,7 @@ /area/space) "GC" = ( /obj/machinery/camera/network/civilian, +/obj/fruitspawner/bloodtomato, /turf/simulated/floor/tiled, /area/bridge) "GM" = ( @@ -5431,6 +5601,10 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_monitoring) +"Hk" = ( +/obj/fruitspawner/berry, +/turf/simulated/floor/tiled, +/area/bridge) "Hr" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/structure/grille, @@ -5467,6 +5641,13 @@ /obj/item/weapon/tank/jetpack/carbondioxide, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_monitoring) +"HG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/fruitspawner/pineapple, +/turf/simulated/floor/tiled, +/area/bridge) "HQ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -5542,6 +5723,10 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_monitoring) +"Ji" = ( +/obj/fruitspawner/gnomes, +/turf/simulated/floor/tiled, +/area/bridge) "Jn" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -5557,6 +5742,10 @@ }, /turf/space, /area/space) +"Jv" = ( +/obj/fruitspawner/apple, +/turf/simulated/floor/tiled, +/area/bridge) "Jx" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 1 @@ -5609,6 +5798,10 @@ /obj/structure/cable/yellow, /turf/simulated/floor/airless, /area/space) +"Kf" = ( +/obj/fruitspawner/chili, +/turf/simulated/floor/tiled, +/area/bridge) "Ki" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -5796,6 +5989,10 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/engine_room) +"Ms" = ( +/obj/fruitspawner/harebells, +/turf/simulated/floor/tiled, +/area/bridge) "MC" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -5844,6 +6041,10 @@ }, /turf/simulated/floor, /area/engineering/workshop) +"MQ" = ( +/obj/fruitspawner/weeds, +/turf/simulated/floor/tiled, +/area/bridge) "MU" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -5912,6 +6113,10 @@ /obj/machinery/light/floortube, /turf/simulated/floor, /area/engineering/workshop) +"NB" = ( +/obj/fruitspawner/libertycap, +/turf/simulated/floor/tiled, +/area/bridge) "ND" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor, @@ -6163,6 +6368,10 @@ }, /turf/space, /area/space) +"Py" = ( +/obj/fruitspawner/kudzu, +/turf/simulated/floor/tiled, +/area/bridge) "PH" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Power - Main"; @@ -6238,6 +6447,10 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay2) +"QH" = ( +/obj/fruitspawner/cocoa, +/turf/simulated/floor/tiled, +/area/bridge) "QR" = ( /obj/effect/floor_decal/techfloor/orange/corner, /obj/structure/cable/yellow{ @@ -6409,6 +6622,13 @@ "Si" = ( /turf/simulated/floor, /area/engineering/workshop) +"St" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/fruitspawner/icechili, +/turf/simulated/floor/tiled, +/area/bridge) "Sw" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/multi_tile/glass, @@ -6452,6 +6672,14 @@ /obj/item/weapon/stock_parts/capacitor/super, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_monitoring) +"SH" = ( +/obj/fruitspawner/grapes, +/turf/simulated/floor/tiled, +/area/bridge) +"SK" = ( +/obj/fruitspawner/sunflowers, +/turf/simulated/floor/tiled, +/area/bridge) "SN" = ( /obj/machinery/door/airlock/external{ frequency = 1379; @@ -6537,6 +6765,10 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay2) +"TP" = ( +/obj/fruitspawner/deathnettle, +/turf/simulated/floor/tiled, +/area/bridge) "TR" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 @@ -6553,6 +6785,10 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor, /area/engineering/workshop) +"TX" = ( +/obj/fruitspawner/rice, +/turf/simulated/floor/tiled, +/area/bridge) "Uf" = ( /obj/structure/cable/cyan{ icon_state = "2-8" @@ -6603,6 +6839,10 @@ /obj/effect/floor_decal/industrial/outline, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) +"Us" = ( +/obj/fruitspawner/ambrosia, +/turf/simulated/floor/tiled, +/area/bridge) "Ut" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ @@ -6633,6 +6873,13 @@ }, /turf/simulated/floor/airless, /area/space) +"UR" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/fruitspawner/plumphelmet, +/turf/simulated/floor/tiled, +/area/bridge) "US" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -6674,6 +6921,10 @@ /obj/machinery/power/grounding_rod, /turf/simulated/floor/airless, /area/space) +"Vl" = ( +/obj/fruitspawner/spineapple, +/turf/simulated/floor/tiled, +/area/bridge) "Vp" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ dir = 4 @@ -6738,6 +6989,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_room) +"Wh" = ( +/obj/fruitspawner/shand, +/turf/simulated/floor/tiled, +/area/bridge) +"Wp" = ( +/obj/fruitspawner/whitewabback, +/turf/simulated/floor/tiled, +/area/bridge) "WP" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -6760,6 +7019,10 @@ }, /turf/simulated/floor/tiled/techfloor, /area/submap/pa_room) +"Xe" = ( +/obj/fruitspawner/durian, +/turf/simulated/floor/tiled, +/area/bridge) "Xg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -6769,6 +7032,10 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_room) +"Xh" = ( +/obj/fruitspawner/eggplant, +/turf/simulated/floor/tiled, +/area/bridge) "Xm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -6795,6 +7062,10 @@ }, /turf/simulated/floor/tiled, /area/submap/pa_room) +"Xq" = ( +/obj/fruitspawner/rhubarb, +/turf/simulated/floor/tiled, +/area/bridge) "Xv" = ( /obj/machinery/power/terminal{ dir = 4 @@ -6892,6 +7163,10 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_monitoring) +"Yk" = ( +/obj/fruitspawner/ghostchili, +/turf/simulated/floor/tiled, +/area/bridge) "Yp" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -6971,6 +7246,10 @@ }, /turf/simulated/floor, /area/engineering/workshop) +"Zg" = ( +/obj/fruitspawner/thaadra, +/turf/simulated/floor/tiled, +/area/bridge) "Zi" = ( /obj/structure/particle_accelerator/power_box{ dir = 8 @@ -6996,6 +7275,10 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) +"Zz" = ( +/obj/fruitspawner/reishi, +/turf/simulated/floor/tiled, +/area/bridge) "ZG" = ( /obj/machinery/power/apc{ dir = 4; @@ -7013,6 +7296,10 @@ }, /turf/simulated/floor, /area/engineering/workshop) +"ZM" = ( +/obj/fruitspawner/sugarcane, +/turf/simulated/floor/tiled, +/area/bridge) (1,1,1) = {" aa @@ -8315,11 +8602,11 @@ aa aa aa fY -gf -go -gf -gf -go +wt +St +Py +pi +mh gf gf gf @@ -8417,11 +8704,11 @@ aa aa aa fY -gf +Us rn sB nQ -gf +ZM gf gf gf @@ -8519,11 +8806,11 @@ sA Pg aa fY -gf -gf -gf -gf -gf +Jv +Ms +oA +Vl +SK gf gf gf @@ -8622,10 +8909,10 @@ aa aa fY gg -gf +qc gC jA -gf +Al gx gA gB @@ -8723,11 +9010,11 @@ gY aa aa fY -gf -gf -gf -gf -gf +Hk +ol +NB +kX +Zg gf go gf @@ -8826,10 +9113,10 @@ aa aa fY gh -gf +SH gq -gf -gf +hX +hY gy gf gf @@ -8928,10 +9215,10 @@ aa aa fY gi -gf +Ji gr -gf -gf +Wh +na gf gf gf @@ -9030,10 +9317,10 @@ Pg aa fY GC -gf -gr -gf -gf +xw +iV +Ah +lA gz gf gf @@ -9132,10 +9419,10 @@ aa aa fY gj -gf -gr -gf -gf +Yk +lJ +wC +sI gz gf gf @@ -9234,10 +9521,10 @@ aa aa fY gk -gf -gr -gf -gf +Xh +xx +TX +vH gf gf gf @@ -9335,11 +9622,11 @@ eM eM eM fZ -gk -gf -gr -gf -gf +pn +Xe +EN +Xq +MQ gy gf gf @@ -9440,8 +9727,8 @@ ga gl gp gs -gf -gf +Zz +vm gf gv gf @@ -9540,10 +9827,10 @@ eO eO gb gm -gf +me gt -gf -gf +ip +km gx gA hp @@ -9641,11 +9928,11 @@ eM eM eM gc -gh -gf -gt -gf -gf +ty +TP +HG +zO +Wp gf gf gf @@ -9744,10 +10031,10 @@ aa aa fY gn -gf +wV gu -gf -gf +Fk +Fw gf gf gf @@ -9845,11 +10132,11 @@ aa aa aa fY -gf -gf -gv -gf -gf +Kf +QH +UR +qo +oD pG gv hk diff --git a/vorestation.dme b/vorestation.dme index 7c0e8783ea..a4d11c4449 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -1598,6 +1598,7 @@ #include "code\game\objects\structures\props\blackbox.dm" #include "code\game\objects\structures\props\esoteric.dm" #include "code\game\objects\structures\props\fake_ai.dm" +#include "code\game\objects\structures\props\fantasy.dm" #include "code\game\objects\structures\props\fences.dm" #include "code\game\objects\structures\props\machines.dm" #include "code\game\objects\structures\props\nest.dm" @@ -2360,6 +2361,7 @@ #include "code\modules\food\food\drinks\bottle\robot.dm" #include "code\modules\food\food\snacks\meat.dm" #include "code\modules\food\glass\bottle.dm" +#include "code\modules\food\glass\bottle_potion.dm" #include "code\modules\food\glass\bottle_vr.dm" #include "code\modules\food\glass\bottle\robot.dm" #include "code\modules\food\kitchen\gibber.dm" @@ -2447,6 +2449,7 @@ #include "code\modules\holomap\holomap_datum.dm" #include "code\modules\holomap\mapper.dm" #include "code\modules\holomap\station_holomap.dm" +#include "code\modules\hydroponics\fruit_spawner.dm" #include "code\modules\hydroponics\grown.dm" #include "code\modules\hydroponics\grown_inedible.dm" #include "code\modules\hydroponics\grown_predefined.dm" @@ -3214,12 +3217,14 @@ #include "code\modules\mob\living\simple_mob\subtypes\slime\xenobio\subtypes.dm" #include "code\modules\mob\living\simple_mob\subtypes\slime\xenobio\xenobio.dm" #include "code\modules\mob\living\simple_mob\subtypes\slime\xenobio\xenobio_vr.dm" +#include "code\modules\mob\living\simple_mob\subtypes\vore\bat.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\bee.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\bigdragon.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\c_pet.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\catgirl.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\cookiegirl.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\corrupt_hounds.dm" +#include "code\modules\mob\living\simple_mob\subtypes\vore\cryptdrake.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\deathclaw.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\dino.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\dominated_brain.dm" @@ -3238,6 +3243,7 @@ #include "code\modules\mob\living\simple_mob\subtypes\vore\otie.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\pakkun.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\panther.dm" +#include "code\modules\mob\living\simple_mob\subtypes\vore\peasant.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\rabbit.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\rat.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\redpanda.dm" @@ -3249,6 +3255,8 @@ #include "code\modules\mob\living\simple_mob\subtypes\vore\softdog.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\solargrub.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\solargrub_larva.dm" +#include "code\modules\mob\living\simple_mob\subtypes\vore\succubi.dm" +#include "code\modules\mob\living\simple_mob\subtypes\vore\vampire.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\vore.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\vore_hostile.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\weretiger.dm" @@ -3735,6 +3743,7 @@ #include "code\modules\reagents\hoses\connector.dm" #include "code\modules\reagents\hoses\hose.dm" #include "code\modules\reagents\hoses\hose_connector.dm" +#include "code\modules\reagents\machinery\alembic.dm" #include "code\modules\reagents\machinery\chem_master.dm" #include "code\modules\reagents\machinery\chemalyzer.dm" #include "code\modules\reagents\machinery\distillery.dm" @@ -4252,6 +4261,7 @@ #include "maps\southern_cross\loadout\loadout_suit.dm" #include "maps\southern_cross\loadout\loadout_uniform.dm" #include "maps\southern_cross\loadout\loadout_vr.dm" +#include "maps\stellar_delight\stellar_delight.dm" #include "maps\submaps\_helpers.dm" #include "maps\submaps\_readme.dm" #include "maps\submaps\admin_use_vr\event_autonomous_drone.dm" @@ -4262,6 +4272,5 @@ #include "maps\submaps\space_submaps\debrisfield\debrisfield.dm" #include "maps\submaps\surface_submaps\wilderness\wilderness.dm" #include "maps\submaps\surface_submaps\wilderness\wilderness_areas.dm" -#include "maps\tether\tether.dm" #include "maps\~map_system\maps.dm" // END_INCLUDE