mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 21:18:37 +01:00
Adds 3 (well, technically 4) More Infinite Dorms Maps (#3140)
## About The Pull Request Hello! Since I've been bored, I decided to test my mapping muscles, and so I come to you with 3 Infinite Dorms maps. **1. Corporate Office** First one's quite easy and simple, a rather large Corporate Office, comes with all the expected amenities; fake bookcases, coffee, donuts, luxury alcohol, cigars, stamps, paperwork, intercoms, Italian maple desks, comfy chairs, secure consoles, motion-sensitive camera that keeps blinking red for whatever reason. Ideal for anyone with more interests in the 'corpo' side, or just for people who want to ERP in an office environment.  **2. Recovery Wing** A more hospital-themed dorm, thought of as the Recovery Ward of the whatever Facility that NT uses to keep putting spessmen together after they have been blown up twenty times during one shift. Comes with two separate Patient rooms, a small Nurse station and a similarly small commons area.  **3. Secluded Grotto** Did notice there was no real "outdoors" area, this map tries to- and kinda fails to rectify this issue, as in-lore the map takes a place in a small, secluded and remote grotto, perfect for running away from everyone, comes with a small picnic space, with a freezer full of snacks, a small pond to the upper right and the center-piece in the form of a fire pit, complete with a guitar and some stools. Also comes in a night version.   ## Why It's Good For The Game well, more varied dorms are better since they (theoretically) allow for more varied RP. ## Proof Of Testing it do the compile thing without melting my poor poor computer  ## Changelog 🆑 map: Added "Corporate Office" Infidorm map map: Added "Recovery Wing" Infidorm map map: Added "Grotto" Infidorm map map: Added "Grotto (night)" Infidorm map /🆑
This commit is contained in:
@@ -9,7 +9,7 @@ GLOBAL_VAR_INIT(hhMysteryRoomNumber, rand(1, 999999))
|
||||
w_class = WEIGHT_CLASS_SMALL
|
||||
resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF
|
||||
//SKYRAT EDIT ADDITION - GHOST HOTEL UPDATE + EXTRA STUFF
|
||||
var/static/list/hotel_maps = list("Generic", "Apartment", "Beach Condo", "Station Side", "Library", "Cultist's Cavern", "Winter Woods", "Evacuated Station", "Prison")
|
||||
var/static/list/hotel_maps = list("Generic", "Apartment", "Beach Condo", "Station Side", "Library", "Cultist's Cavern", "Winter Woods", "Evacuated Station", "Prison", "Corporate Office", "Recovery Wing", "Grotto", "Grotto (Night)")
|
||||
//standart - hilber's hotel room
|
||||
//apartment - see /datum/map_template/ghost_cafe_rooms
|
||||
//beach condo - Beach themed apartment
|
||||
@@ -25,6 +25,10 @@ GLOBAL_VAR_INIT(hhMysteryRoomNumber, rand(1, 999999))
|
||||
var/datum/map_template/ghost_cafe_rooms/winterwoods/ghost_cafe_rooms_winterwoods
|
||||
var/datum/map_template/ghost_cafe_rooms/evacuationstation/ghost_cafe_rooms_evacuationstation
|
||||
var/datum/map_template/ghost_cafe_rooms/prisoninfdorm/ghost_cafe_rooms_prisoninfdorm
|
||||
var/datum/map_template/ghost_cafe_rooms/corporateoffice/ghost_cafe_rooms_corporateoffice
|
||||
var/datum/map_template/ghost_cafe_rooms/recwing/ghost_cafe_rooms_recwing
|
||||
var/datum/map_template/ghost_cafe_rooms/grotto/ghost_cafe_rooms_grotto
|
||||
var/datum/map_template/ghost_cafe_rooms/grotto2/ghost_cafe_rooms_grotto2
|
||||
//BUBBER EDIT END
|
||||
|
||||
var/datum/map_template/hilbertshotel/hotelRoomTemp
|
||||
@@ -56,6 +60,10 @@ GLOBAL_VAR_INIT(hhMysteryRoomNumber, rand(1, 999999))
|
||||
ghost_cafe_rooms_winterwoods = new()
|
||||
ghost_cafe_rooms_evacuationstation = new()
|
||||
ghost_cafe_rooms_prisoninfdorm = new()
|
||||
ghost_cafe_rooms_corporateoffice = new()
|
||||
ghost_cafe_rooms_recwing = new()
|
||||
ghost_cafe_rooms_grotto = new()
|
||||
ghost_cafe_rooms_grotto2 = new()
|
||||
//BUBBER EDIT END
|
||||
|
||||
var/area/currentArea = get_area(src)
|
||||
@@ -223,6 +231,18 @@ GLOBAL_VAR_INIT(hhMysteryRoomNumber, rand(1, 999999))
|
||||
else if(chosen_room == "Prison")
|
||||
load_from = ghost_cafe_rooms_prisoninfdorm
|
||||
|
||||
else if(chosen_room == "Corporate Office")
|
||||
load_from = ghost_cafe_rooms_corporateoffice
|
||||
|
||||
else if(chosen_room == "Recovery Wing")
|
||||
load_from = ghost_cafe_rooms_recwing
|
||||
|
||||
else if(chosen_room == "Grotto")
|
||||
load_from = ghost_cafe_rooms_grotto
|
||||
|
||||
else if(chosen_room == "Grotto (Night)")
|
||||
load_from = ghost_cafe_rooms_grotto2
|
||||
|
||||
//BUBBER EDIT END
|
||||
|
||||
|
||||
|
||||
@@ -58,3 +58,19 @@
|
||||
/datum/map_template/ghost_cafe_rooms/prisoninfdorm
|
||||
name = "Prison"
|
||||
mappath = "modular_skyrat/modules/hotel_rooms/prisoninfdorm.dmm"
|
||||
|
||||
/datum/map_template/ghost_cafe_rooms/corporateoffice
|
||||
name = "Corporate Office"
|
||||
mappath = "modular_skyrat/modules/hotel_rooms/corporateoffice.dmm"
|
||||
|
||||
/datum/map_template/ghost_cafe_rooms/recwing
|
||||
name = "Recovery Wing"
|
||||
mappath = "modular_skyrat/modules/hotel_rooms/recovery.dmm"
|
||||
|
||||
/datum/map_template/ghost_cafe_rooms/grotto
|
||||
name = "Grotto"
|
||||
mappath = "modular_skyrat/modules/hotel_rooms/grotto.dmm"
|
||||
|
||||
/datum/map_template/ghost_cafe_rooms/grotto2
|
||||
name = "Grotto (Night)"
|
||||
mappath = "modular_skyrat/modules/hotel_rooms/grottoalt.dmm"
|
||||
|
||||
@@ -0,0 +1,798 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"ax" = (
|
||||
/obj/effect/turf_decal/siding/wood{
|
||||
dir = 8
|
||||
},
|
||||
/obj/effect/turf_decal/siding/wood{
|
||||
dir = 4
|
||||
},
|
||||
/obj/machinery/light/floor,
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"aN" = (
|
||||
/obj/structure/sign/painting{
|
||||
pixel_y = 32
|
||||
},
|
||||
/obj/item/banner/command/mundane,
|
||||
/obj/effect/turf_decal/tile/neutral/fourcorners,
|
||||
/obj/machinery/light/directional/north,
|
||||
/obj/effect/turf_decal/siding/wood{
|
||||
dir = 4
|
||||
},
|
||||
/turf/open/indestructible/dark,
|
||||
/area/misc/hilbertshotel)
|
||||
"bA" = (
|
||||
/obj/structure/window/reinforced/survival_pod/spawner/directional/north,
|
||||
/obj/structure/showcase/mecha/marauder,
|
||||
/obj/effect/turf_decal/tile/neutral/full,
|
||||
/obj/structure/sign/nanotrasen{
|
||||
pixel_y = -32
|
||||
},
|
||||
/turf/open/indestructible/dark/smooth_large,
|
||||
/area/misc/hilbertshotel)
|
||||
"ca" = (
|
||||
/obj/structure/table/wood,
|
||||
/obj/machinery{
|
||||
icon = 'modular_skyrat/modules/aesthetics/intercom/icons/intercom.dmi';
|
||||
icon_state = "intercom";
|
||||
name = "Intercom";
|
||||
pixel_y = -1
|
||||
},
|
||||
/turf/open/indestructible/carpet,
|
||||
/area/misc/hilbertshotel)
|
||||
"dE" = (
|
||||
/turf/closed/indestructible/fakeglass,
|
||||
/area/misc/hilbertshotel)
|
||||
"dZ" = (
|
||||
/obj/structure/table/wood,
|
||||
/obj/item/reagent_containers/cup/glass/bottle/cognac{
|
||||
pixel_y = 18;
|
||||
pixel_x = -7
|
||||
},
|
||||
/obj/item/reagent_containers/cup/glass/bottle/whiskey{
|
||||
pixel_x = 7;
|
||||
pixel_y = 16
|
||||
},
|
||||
/obj/item/reagent_containers/cup/glass/flask/gold{
|
||||
pixel_x = 5;
|
||||
name = "Golden Flask";
|
||||
desc = "A gold flask belonging to the one who owns this office."
|
||||
},
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"go" = (
|
||||
/obj/item/kirbyplants/organic/plant22,
|
||||
/obj/effect/turf_decal/tile/dark_blue/opposingcorners,
|
||||
/turf/open/indestructible/dark,
|
||||
/area/misc/hilbertshotel)
|
||||
"gK" = (
|
||||
/obj/item/banner/command/mundane,
|
||||
/obj/machinery/light_switch/directional/south,
|
||||
/turf/open/indestructible/dark/smooth_large,
|
||||
/area/misc/hilbertshotel)
|
||||
"hu" = (
|
||||
/obj/item/banner/command/mundane,
|
||||
/obj/effect/turf_decal/tile/neutral/fourcorners,
|
||||
/obj/machinery/light/directional/south,
|
||||
/obj/structure/secure_safe/directional/south{
|
||||
pixel_y = -22
|
||||
},
|
||||
/obj/effect/turf_decal/siding/wood{
|
||||
dir = 4
|
||||
},
|
||||
/turf/open/indestructible/dark,
|
||||
/area/misc/hilbertshotel)
|
||||
"hN" = (
|
||||
/turf/closed/indestructible/hoteldoor{
|
||||
icon_state = "door_closed";
|
||||
icon = 'icons/obj/doors/puzzledoor/default.dmi'
|
||||
},
|
||||
/area/misc/hilbertshotel)
|
||||
"ij" = (
|
||||
/obj/structure/table/wood,
|
||||
/obj/effect/turf_decal/tile/neutral/fourcorners,
|
||||
/obj/machinery/recharger{
|
||||
pixel_x = -6;
|
||||
pixel_y = 6
|
||||
},
|
||||
/obj/item/flashlight/lamp/green{
|
||||
pixel_y = 12;
|
||||
pixel_x = 6
|
||||
},
|
||||
/obj/item/cigarette/cigar/havana{
|
||||
pixel_x = 5;
|
||||
pixel_y = 1
|
||||
},
|
||||
/turf/open/indestructible/dark,
|
||||
/area/misc/hilbertshotel)
|
||||
"jh" = (
|
||||
/obj/structure/table/wood,
|
||||
/obj/item/paper_bin{
|
||||
pixel_y = 4;
|
||||
pixel_x = -4
|
||||
},
|
||||
/obj/item/pen/fountain/captain{
|
||||
pixel_y = 4;
|
||||
pixel_x = -5;
|
||||
name = "Golden Fountain Pen"
|
||||
},
|
||||
/obj/item/book/manual/wiki/security_space_law{
|
||||
pixel_y = 3;
|
||||
pixel_x = 10
|
||||
},
|
||||
/obj/effect/turf_decal/tile/neutral/fourcorners,
|
||||
/turf/open/indestructible/dark,
|
||||
/area/misc/hilbertshotel)
|
||||
"ks" = (
|
||||
/obj/structure/table/wood,
|
||||
/obj/effect/turf_decal/tile/neutral/fourcorners,
|
||||
/obj/item/phone{
|
||||
desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
|
||||
pixel_x = 19;
|
||||
pixel_y = -4
|
||||
},
|
||||
/obj/machinery{
|
||||
icon = 'modular_skyrat/modules/aesthetics/intercom/icons/intercom.dmi';
|
||||
icon_state = "intercom";
|
||||
pixel_x = 1;
|
||||
name = "Intercom"
|
||||
},
|
||||
/turf/open/indestructible/dark,
|
||||
/area/misc/hilbertshotel)
|
||||
"kL" = (
|
||||
/obj/structure/chair/comfy/beige{
|
||||
dir = 1
|
||||
},
|
||||
/turf/open/indestructible/carpet,
|
||||
/area/misc/hilbertshotel)
|
||||
"le" = (
|
||||
/obj/structure/table/wood,
|
||||
/obj/item/lighter{
|
||||
color = "#d4af37";
|
||||
desc = "A gold-plated Zippo lighter";
|
||||
name = "Golden Lighter";
|
||||
pixel_x = 10;
|
||||
pixel_y = -15
|
||||
},
|
||||
/obj/item/cigarette/cigar/premium{
|
||||
pixel_x = -6
|
||||
},
|
||||
/obj/item/cigarette/cigar/havana{
|
||||
pixel_x = 3;
|
||||
pixel_y = 1
|
||||
},
|
||||
/obj/item/cigarette/cigar/premium{
|
||||
pixel_x = 9;
|
||||
pixel_y = -2
|
||||
},
|
||||
/obj/item/reagent_containers/cup/glass/drinkingglass{
|
||||
pixel_x = -8;
|
||||
pixel_y = 15
|
||||
},
|
||||
/obj/item/reagent_containers/cup/glass/drinkingglass{
|
||||
pixel_x = 1;
|
||||
pixel_y = 15
|
||||
},
|
||||
/obj/item/reagent_containers/cup/glass/drinkingglass{
|
||||
pixel_x = 10;
|
||||
pixel_y = 15
|
||||
},
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"ng" = (
|
||||
/obj/effect/turf_decal/siding/wood{
|
||||
dir = 4
|
||||
},
|
||||
/obj/effect/turf_decal/siding/wood{
|
||||
dir = 8
|
||||
},
|
||||
/obj/machinery/light/floor,
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"nh" = (
|
||||
/obj/effect/turf_decal/siding/wood{
|
||||
dir = 5
|
||||
},
|
||||
/obj/effect/turf_decal/siding/wood/corner{
|
||||
dir = 8
|
||||
},
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"oO" = (
|
||||
/obj/effect/turf_decal/tile/neutral/fourcorners,
|
||||
/obj/effect/turf_decal/siding/wood{
|
||||
dir = 1
|
||||
},
|
||||
/turf/open/indestructible/dark,
|
||||
/area/misc/hilbertshotel)
|
||||
"pD" = (
|
||||
/turf/closed/indestructible/riveted,
|
||||
/area/misc/hilbertshotel)
|
||||
"pO" = (
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"qR" = (
|
||||
/obj/structure/bookcase{
|
||||
icon_state = "book-5"
|
||||
},
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"rg" = (
|
||||
/obj/effect/turf_decal/siding/wood{
|
||||
dir = 4
|
||||
},
|
||||
/obj/effect/turf_decal/siding/wood{
|
||||
dir = 8
|
||||
},
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"rz" = (
|
||||
/obj/structure/showcase/fakeid{
|
||||
dir = 1;
|
||||
name = "\improper CentComm Oversight Console";
|
||||
desc = "You can use this to watch the watchers."
|
||||
},
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"uM" = (
|
||||
/obj/item/banner/command/mundane,
|
||||
/obj/structure/extinguisher_cabinet/directional/north,
|
||||
/turf/open/indestructible/dark/smooth_large,
|
||||
/area/misc/hilbertshotel)
|
||||
"wV" = (
|
||||
/obj/structure/window/reinforced/survival_pod/spawner/directional/north,
|
||||
/obj/structure/showcase/perfect_employee,
|
||||
/obj/effect/turf_decal/tile/neutral/full,
|
||||
/obj/machinery/light/floor,
|
||||
/turf/open/indestructible/dark/smooth_large,
|
||||
/area/misc/hilbertshotel)
|
||||
"xF" = (
|
||||
/obj/effect/turf_decal/tile/neutral/fourcorners,
|
||||
/obj/effect/turf_decal/siding/wood/corner{
|
||||
dir = 8
|
||||
},
|
||||
/obj/item/kirbyplants/organic/plant21,
|
||||
/obj/structure/sign/poster/official/state_laws/directional/south,
|
||||
/turf/open/indestructible/dark,
|
||||
/area/misc/hilbertshotel)
|
||||
"yM" = (
|
||||
/obj/machinery/vending/boozeomat/cafe,
|
||||
/turf/closed/indestructible/riveted,
|
||||
/area/misc/hilbertshotel)
|
||||
"yX" = (
|
||||
/obj/structure/table/wood,
|
||||
/obj/effect/turf_decal/tile/neutral/fourcorners,
|
||||
/obj/item/stamp{
|
||||
pixel_x = -9;
|
||||
pixel_y = 11
|
||||
},
|
||||
/obj/item/stamp/denied{
|
||||
pixel_y = 7;
|
||||
pixel_x = -9
|
||||
},
|
||||
/obj/item/stamp/void{
|
||||
pixel_x = -9;
|
||||
pixel_y = 3
|
||||
},
|
||||
/obj/item/stamp/centcom{
|
||||
pixel_x = -9;
|
||||
pixel_y = -1
|
||||
},
|
||||
/turf/open/indestructible/dark,
|
||||
/area/misc/hilbertshotel)
|
||||
"zb" = (
|
||||
/turf/open/space/basic,
|
||||
/area/misc/hilbertshotel)
|
||||
"AN" = (
|
||||
/obj/machinery/jukebox{
|
||||
icon = 'modular_skyrat/modules/aesthetics/intercom/icons/intercom.dmi';
|
||||
icon_state = "intercom";
|
||||
pixel_y = -10;
|
||||
name = "Enviroment Sound System";
|
||||
desc = "It's hip to be square!"
|
||||
},
|
||||
/turf/closed/indestructible/riveted,
|
||||
/area/misc/hilbertshotel)
|
||||
"AU" = (
|
||||
/obj/structure/table/wood,
|
||||
/obj/item/documents/nanotrasen{
|
||||
pixel_y = 3
|
||||
},
|
||||
/turf/open/indestructible/carpet,
|
||||
/area/misc/hilbertshotel)
|
||||
"Bo" = (
|
||||
/obj/effect/turf_decal/siding/wood{
|
||||
dir = 8
|
||||
},
|
||||
/obj/effect/turf_decal/siding/wood{
|
||||
dir = 4
|
||||
},
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"Ct" = (
|
||||
/obj/effect/turf_decal/siding/wood{
|
||||
dir = 10
|
||||
},
|
||||
/obj/effect/turf_decal/siding/wood/corner{
|
||||
dir = 4
|
||||
},
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"CA" = (
|
||||
/obj/machinery/light/directional/north,
|
||||
/obj/structure/sign/poster/official/work_for_a_future/directional/north,
|
||||
/obj/structure/bookcase{
|
||||
icon_state = "book-5"
|
||||
},
|
||||
/turf/open/indestructible/dark,
|
||||
/area/misc/hilbertshotel)
|
||||
"CQ" = (
|
||||
/obj/effect/turf_decal/tile/neutral/fourcorners,
|
||||
/obj/structure/chair/comfy{
|
||||
dir = 8
|
||||
},
|
||||
/turf/open/indestructible/dark,
|
||||
/area/misc/hilbertshotel)
|
||||
"Ew" = (
|
||||
/obj/effect/turf_decal/siding/wood{
|
||||
dir = 1
|
||||
},
|
||||
/obj/effect/turf_decal/siding/wood,
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"FC" = (
|
||||
/obj/effect/turf_decal/siding/wood{
|
||||
dir = 6
|
||||
},
|
||||
/obj/effect/turf_decal/siding/wood/corner{
|
||||
dir = 1
|
||||
},
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"II" = (
|
||||
/obj/machinery/light/floor,
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"Jh" = (
|
||||
/obj/structure/table/wood,
|
||||
/obj/item/paper_bin{
|
||||
pixel_y = 3
|
||||
},
|
||||
/obj/item/pen/fountain{
|
||||
pixel_y = 4
|
||||
},
|
||||
/turf/open/indestructible/carpet,
|
||||
/area/misc/hilbertshotel)
|
||||
"Kd" = (
|
||||
/obj/structure/table/wood,
|
||||
/obj/item/storage/fancy/cigarettes/cigars/cohiba{
|
||||
pixel_x = -2;
|
||||
pixel_y = 15
|
||||
},
|
||||
/obj/item/storage/fancy/cigarettes/cigars/havana{
|
||||
pixel_x = 2;
|
||||
pixel_y = 2
|
||||
},
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"Na" = (
|
||||
/obj/structure/table/wood,
|
||||
/obj/effect/turf_decal/tile/neutral/fourcorners,
|
||||
/obj/item/folder/blue{
|
||||
pixel_x = -3;
|
||||
pixel_y = 5
|
||||
},
|
||||
/obj/item/folder/syndicate/blue{
|
||||
pixel_x = -5;
|
||||
pixel_y = 2
|
||||
},
|
||||
/turf/open/indestructible/dark,
|
||||
/area/misc/hilbertshotel)
|
||||
"Nc" = (
|
||||
/obj/structure/showcase/fakeid{
|
||||
name = "\improper CentComm Communications Console";
|
||||
desc = "You can use this to communicate... if you know the password."
|
||||
},
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"Pb" = (
|
||||
/obj/effect/turf_decal/tile/neutral/fourcorners,
|
||||
/obj/machinery/photocopier/gratis,
|
||||
/obj/machinery/light_switch/directional/south,
|
||||
/turf/open/indestructible/dark,
|
||||
/area/misc/hilbertshotel)
|
||||
"Ps" = (
|
||||
/obj/effect/turf_decal/tile/neutral/full,
|
||||
/obj/structure/table/wood,
|
||||
/obj/item/storage/box/drinkingglasses{
|
||||
pixel_y = 8;
|
||||
pixel_x = 2
|
||||
},
|
||||
/obj/item/reagent_containers/cup/glass/coffee{
|
||||
pixel_x = -12;
|
||||
pixel_y = 12
|
||||
},
|
||||
/obj/item/reagent_containers/cup/glass/coffee{
|
||||
pixel_x = -12;
|
||||
pixel_y = 5
|
||||
},
|
||||
/obj/item/reagent_containers/cup/glass/coffee{
|
||||
pixel_x = -12;
|
||||
pixel_y = -1
|
||||
},
|
||||
/obj/item/reagent_containers/condiment/pack/sugar{
|
||||
pixel_x = 11;
|
||||
pixel_y = -1
|
||||
},
|
||||
/obj/item/reagent_containers/condiment/pack/sugar{
|
||||
pixel_x = 4;
|
||||
pixel_y = -1
|
||||
},
|
||||
/obj/item/reagent_containers/condiment/pack/sugar{
|
||||
pixel_x = -4;
|
||||
pixel_y = -1
|
||||
},
|
||||
/turf/open/indestructible/dark/smooth_large,
|
||||
/area/misc/hilbertshotel)
|
||||
"Pv" = (
|
||||
/obj/effect/turf_decal/tile/dark_blue/opposingcorners,
|
||||
/turf/open/indestructible/dark,
|
||||
/area/misc/hilbertshotel)
|
||||
"PO" = (
|
||||
/obj/effect/turf_decal/tile/neutral/full,
|
||||
/obj/machinery/vending/cigarette/beach,
|
||||
/turf/open/indestructible/dark/smooth_large,
|
||||
/area/misc/hilbertshotel)
|
||||
"Qd" = (
|
||||
/obj/effect/turf_decal/tile/neutral/fourcorners,
|
||||
/obj/effect/turf_decal/siding/wood/corner{
|
||||
dir = 1
|
||||
},
|
||||
/obj/item/kirbyplants/organic/plant10,
|
||||
/obj/structure/sign/poster/official/fruit_bowl/directional/north,
|
||||
/turf/open/indestructible/dark,
|
||||
/area/misc/hilbertshotel)
|
||||
"QQ" = (
|
||||
/obj/structure/table/wood,
|
||||
/obj/item/storage/fancy/donut_box{
|
||||
pixel_y = 12
|
||||
},
|
||||
/obj/item/storage/fancy/donut_box{
|
||||
pixel_y = 1
|
||||
},
|
||||
/obj/effect/turf_decal/tile/neutral/full,
|
||||
/turf/open/indestructible/dark/smooth_large,
|
||||
/area/misc/hilbertshotel)
|
||||
"Sq" = (
|
||||
/obj/effect/turf_decal/tile/neutral/full,
|
||||
/obj/machinery/vending/coffee,
|
||||
/turf/open/indestructible/dark/smooth_large,
|
||||
/area/misc/hilbertshotel)
|
||||
"Sx" = (
|
||||
/obj/effect/turf_decal/tile/neutral/fourcorners,
|
||||
/obj/effect/turf_decal/siding/wood,
|
||||
/turf/open/indestructible/dark,
|
||||
/area/misc/hilbertshotel)
|
||||
"UC" = (
|
||||
/obj/effect/turf_decal/tile/neutral/fourcorners,
|
||||
/turf/open/indestructible/dark,
|
||||
/area/misc/hilbertshotel)
|
||||
"UR" = (
|
||||
/obj/structure/chair/comfy/beige,
|
||||
/turf/open/indestructible/carpet,
|
||||
/area/misc/hilbertshotel)
|
||||
"Xc" = (
|
||||
/obj/effect/turf_decal/siding/wood{
|
||||
dir = 9
|
||||
},
|
||||
/obj/effect/turf_decal/siding/wood/corner,
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"Xi" = (
|
||||
/obj/effect/turf_decal/siding/wood,
|
||||
/obj/effect/turf_decal/siding/wood{
|
||||
dir = 1
|
||||
},
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"XQ" = (
|
||||
/obj/machinery/light/directional/south,
|
||||
/obj/structure/sign/poster/official/obey/directional/south,
|
||||
/obj/structure/bookcase{
|
||||
icon_state = "book-5"
|
||||
},
|
||||
/turf/open/indestructible/dark,
|
||||
/area/misc/hilbertshotel)
|
||||
"Zn" = (
|
||||
/obj/effect/turf_decal/tile/neutral/fourcorners,
|
||||
/obj/effect/turf_decal/siding/wood{
|
||||
dir = 4
|
||||
},
|
||||
/turf/open/indestructible/dark,
|
||||
/area/misc/hilbertshotel)
|
||||
"Zo" = (
|
||||
/obj/structure/window/reinforced/survival_pod/spawner/directional/north,
|
||||
/obj/effect/turf_decal/tile/neutral/full,
|
||||
/obj/structure/table/wood/fancy/black,
|
||||
/obj/item/sign/flag/galfed{
|
||||
pixel_y = 3;
|
||||
pixel_x = 4
|
||||
},
|
||||
/obj/item/sign/flag/nanotrasen{
|
||||
pixel_y = 1
|
||||
},
|
||||
/turf/open/indestructible/dark/smooth_large,
|
||||
/area/misc/hilbertshotel)
|
||||
|
||||
(1,1,1) = {"
|
||||
zb
|
||||
pD
|
||||
pD
|
||||
pD
|
||||
dE
|
||||
dE
|
||||
hN
|
||||
dE
|
||||
dE
|
||||
pD
|
||||
pD
|
||||
pD
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
pD
|
||||
pD
|
||||
pD
|
||||
pD
|
||||
uM
|
||||
go
|
||||
Pv
|
||||
go
|
||||
gK
|
||||
pD
|
||||
pD
|
||||
pD
|
||||
pD
|
||||
zb
|
||||
zb
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
pD
|
||||
pD
|
||||
pD
|
||||
CA
|
||||
Pv
|
||||
Pv
|
||||
Pv
|
||||
Pv
|
||||
Pv
|
||||
XQ
|
||||
pD
|
||||
pD
|
||||
pD
|
||||
zb
|
||||
zb
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
pD
|
||||
pD
|
||||
PO
|
||||
oO
|
||||
Xc
|
||||
ax
|
||||
Bo
|
||||
ax
|
||||
Ct
|
||||
Sx
|
||||
bA
|
||||
pD
|
||||
pD
|
||||
zb
|
||||
zb
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
pD
|
||||
pD
|
||||
Sq
|
||||
oO
|
||||
Ew
|
||||
UR
|
||||
AU
|
||||
kL
|
||||
Xi
|
||||
Sx
|
||||
wV
|
||||
pD
|
||||
pD
|
||||
zb
|
||||
zb
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
pD
|
||||
pD
|
||||
AN
|
||||
oO
|
||||
Ew
|
||||
UR
|
||||
Jh
|
||||
kL
|
||||
Xi
|
||||
Sx
|
||||
Zo
|
||||
pD
|
||||
pD
|
||||
zb
|
||||
zb
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
pD
|
||||
pD
|
||||
QQ
|
||||
oO
|
||||
Ew
|
||||
UR
|
||||
ca
|
||||
kL
|
||||
Xi
|
||||
Sx
|
||||
wV
|
||||
pD
|
||||
pD
|
||||
zb
|
||||
zb
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
pD
|
||||
pD
|
||||
Ps
|
||||
oO
|
||||
nh
|
||||
ng
|
||||
rg
|
||||
ng
|
||||
FC
|
||||
Sx
|
||||
bA
|
||||
pD
|
||||
pD
|
||||
zb
|
||||
zb
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
pD
|
||||
pD
|
||||
pD
|
||||
Qd
|
||||
UC
|
||||
ks
|
||||
Na
|
||||
jh
|
||||
UC
|
||||
xF
|
||||
pD
|
||||
pD
|
||||
pD
|
||||
zb
|
||||
zb
|
||||
"}
|
||||
(10,1,1) = {"
|
||||
zb
|
||||
pD
|
||||
yM
|
||||
UC
|
||||
UC
|
||||
ij
|
||||
CQ
|
||||
yX
|
||||
UC
|
||||
Pb
|
||||
pD
|
||||
pD
|
||||
pD
|
||||
zb
|
||||
zb
|
||||
"}
|
||||
(11,1,1) = {"
|
||||
zb
|
||||
pD
|
||||
pD
|
||||
aN
|
||||
Zn
|
||||
Zn
|
||||
Zn
|
||||
Zn
|
||||
Zn
|
||||
hu
|
||||
pD
|
||||
pD
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
"}
|
||||
(12,1,1) = {"
|
||||
zb
|
||||
pD
|
||||
pD
|
||||
qR
|
||||
Nc
|
||||
pO
|
||||
II
|
||||
pO
|
||||
rz
|
||||
qR
|
||||
pD
|
||||
pD
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
"}
|
||||
(13,1,1) = {"
|
||||
zb
|
||||
pD
|
||||
pD
|
||||
dE
|
||||
dE
|
||||
dZ
|
||||
le
|
||||
Kd
|
||||
dE
|
||||
dE
|
||||
pD
|
||||
pD
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
"}
|
||||
(14,1,1) = {"
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
dE
|
||||
dE
|
||||
dE
|
||||
dE
|
||||
dE
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
"}
|
||||
(15,1,1) = {"
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
"}
|
||||
(16,1,1) = {"
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
zb
|
||||
"}
|
||||
@@ -0,0 +1,821 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"aD" = (
|
||||
/obj/structure/flora/rock/pile/jungle/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 8
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"bC" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 10
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"cw" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 9
|
||||
},
|
||||
/obj/structure/flora/rock/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"cP" = (
|
||||
/obj/structure/flora/bush/reed/style_random,
|
||||
/turf/open/water,
|
||||
/area/misc/hilbertshotel)
|
||||
"dv" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/obj/structure/flora/bush/flowers_br/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"ef" = (
|
||||
/obj/structure/flora/rock/pile/style_2,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"ez" = (
|
||||
/obj/structure/flora/bush/large/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 8
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"eR" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/flora/bush/flowers_yw/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"fp" = (
|
||||
/obj/structure/flora/bush/flowers_br/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 5
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"gu" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 1
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"hi" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 4
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"iF" = (
|
||||
/obj/structure/spacevine{
|
||||
name = "thick vines";
|
||||
opacity = 1
|
||||
},
|
||||
/turf/closed/indestructible/rock,
|
||||
/area/misc/hilbertshotel)
|
||||
"js" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 6
|
||||
},
|
||||
/obj/effect/decal/cleanable/ants,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"ka" = (
|
||||
/obj/structure/flora/bush/flowers_pp/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"kf" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"kr" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/flora/rock/pile/jungle/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"lf" = (
|
||||
/obj/structure/flora/rock/pile{
|
||||
pixel_x = -3;
|
||||
pixel_y = -4
|
||||
},
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 5
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"lr" = (
|
||||
/obj/structure/flora/bush/jungle/b/style_random,
|
||||
/obj/structure/flora/bush/flowers_pp/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"lO" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 8
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"mt" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 8
|
||||
},
|
||||
/obj/structure/flora/rock/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"mW" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 8
|
||||
},
|
||||
/obj/structure/flora/bush/sparsegrass/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"ot" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 8
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"oy" = (
|
||||
/obj/structure/fluff/beach_umbrella,
|
||||
/turf/open/floor/carpet/red,
|
||||
/area/misc/hilbertshotel)
|
||||
"oK" = (
|
||||
/obj/structure/flora/bush/jungle/c/style_random,
|
||||
/obj/structure/flora/bush/flowers_pp/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 6
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"oN" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 6
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"pg" = (
|
||||
/obj/structure/spacevine{
|
||||
name = "thick vines";
|
||||
opacity = 1
|
||||
},
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"pu" = (
|
||||
/obj/structure/flora/bush/jungle/a/style_random,
|
||||
/obj/structure/flora/bush/flowers_br/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"pW" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"qK" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/structure/flora/bush/flowers_yw/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"qV" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 10
|
||||
},
|
||||
/obj/structure/flora/bush/flowers_br/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"ri" = (
|
||||
/obj/structure/flora/bush/reed/style_random,
|
||||
/obj/structure/spacevine{
|
||||
name = "thick vines";
|
||||
opacity = 1
|
||||
},
|
||||
/turf/open/water,
|
||||
/area/misc/hilbertshotel)
|
||||
"rj" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 4
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"rC" = (
|
||||
/obj/structure/flora/tree/jungle,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"rD" = (
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"sI" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 9
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"tv" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 9
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"up" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 10
|
||||
},
|
||||
/obj/structure/flora/bush/reed/style_random,
|
||||
/turf/open/water,
|
||||
/area/misc/hilbertshotel)
|
||||
"uM" = (
|
||||
/obj/structure/flora/bush/flowers_yw/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 1
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"vg" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 10
|
||||
},
|
||||
/obj/structure/flora/rock/pile/jungle/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"vh" = (
|
||||
/turf/closed/indestructible/rock,
|
||||
/area/misc/hilbertshotel)
|
||||
"wa" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/structure/flora/bush/flowers_pp/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"wI" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"xs" = (
|
||||
/obj/structure/flora/bush/jungle/c/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"xw" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 6
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"xy" = (
|
||||
/obj/structure/chair/sofa/bench/right,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 10
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"xM" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/structure/flora/bush/flowers_br/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"yb" = (
|
||||
/obj/structure/flora/bush/flowers_br/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"zx" = (
|
||||
/obj/structure/flora/rock/pile/jungle/style_random,
|
||||
/obj/item/flashlight/lantern,
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"AY" = (
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"CZ" = (
|
||||
/obj/item/clothing/head/costume/garland/rainbowbunch,
|
||||
/turf/open/floor/carpet/red,
|
||||
/area/misc/hilbertshotel)
|
||||
"Dg" = (
|
||||
/obj/structure/bonfire,
|
||||
/obj/effect/light_emitter/fake_outdoors,
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"Di" = (
|
||||
/turf/closed/indestructible/hoteldoor{
|
||||
icon_state = "door_closed";
|
||||
icon = 'icons/obj/doors/puzzledoor/default.dmi'
|
||||
},
|
||||
/area/misc/hilbertshotel)
|
||||
"DL" = (
|
||||
/turf/open/floor/carpet/red,
|
||||
/area/misc/hilbertshotel)
|
||||
"EI" = (
|
||||
/obj/structure/flora/bush/sparsegrass/style_random,
|
||||
/obj/structure/spacevine{
|
||||
name = "thick vines";
|
||||
opacity = 1
|
||||
},
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"EQ" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 10
|
||||
},
|
||||
/turf/open/water,
|
||||
/area/misc/hilbertshotel)
|
||||
"FM" = (
|
||||
/obj/structure/flora/biolumi/lamp/weaklight,
|
||||
/turf/open/water,
|
||||
/area/misc/hilbertshotel)
|
||||
"Gb" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 4
|
||||
},
|
||||
/obj/structure/flora/rock/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Gx" = (
|
||||
/obj/structure/closet/crate/freezer{
|
||||
name = "Cooler"
|
||||
},
|
||||
/obj/item/reagent_containers/cup/glass/bottle/beer,
|
||||
/obj/item/reagent_containers/cup/glass/bottle/beer,
|
||||
/obj/item/reagent_containers/cup/glass/bottle/beer,
|
||||
/obj/item/reagent_containers/cup/glass/bottle/beer/light,
|
||||
/obj/item/reagent_containers/cup/glass/bottle/beer/light,
|
||||
/obj/item/reagent_containers/cup/glass/bottle/beer/light,
|
||||
/obj/item/reagent_containers/cup/soda_cans/cola,
|
||||
/obj/item/reagent_containers/cup/soda_cans/cola,
|
||||
/obj/item/reagent_containers/cup/soda_cans/cola,
|
||||
/obj/item/reagent_containers/cup/glass/waterbottle,
|
||||
/obj/item/reagent_containers/cup/glass/waterbottle,
|
||||
/obj/item/reagent_containers/cup/soda_cans/dr_gibb,
|
||||
/obj/item/reagent_containers/cup/soda_cans/dr_gibb,
|
||||
/obj/item/reagent_containers/cup/soda_cans/blood_tea,
|
||||
/obj/item/reagent_containers/cup/soda_cans/blood_tea,
|
||||
/obj/item/reagent_containers/cup/soda_cans/blood_tea,
|
||||
/obj/item/reagent_containers/cup/soda_cans/dr_gibb,
|
||||
/obj/item/reagent_containers/cup/glass/waterbottle,
|
||||
/obj/item/reagent_containers/cup/soda_cans/lemon_lime,
|
||||
/obj/item/reagent_containers/cup/soda_cans/lemon_lime,
|
||||
/obj/item/reagent_containers/cup/soda_cans/lemon_lime,
|
||||
/obj/item/reagent_containers/cup/soda_cans/melon_soda,
|
||||
/obj/item/reagent_containers/cup/soda_cans/melon_soda,
|
||||
/obj/item/reagent_containers/cup/soda_cans/melon_soda,
|
||||
/turf/open/floor/carpet/red,
|
||||
/area/misc/hilbertshotel)
|
||||
"GS" = (
|
||||
/obj/item/lighter,
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"Hq" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/flora/bush/flowers_br/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"IB" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 1
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Jr" = (
|
||||
/obj/item/storage/basket,
|
||||
/turf/open/floor/carpet/red,
|
||||
/area/misc/hilbertshotel)
|
||||
"Jy" = (
|
||||
/obj/structure/flora/rock/pile/jungle/style_random,
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"JG" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/flora/bush/flowers_pp/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"JL" = (
|
||||
/obj/structure/flora/bush/jungle/c/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 5
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"KH" = (
|
||||
/turf/open/water,
|
||||
/area/misc/hilbertshotel)
|
||||
"KS" = (
|
||||
/obj/structure/flora/bush/jungle/a/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"LE" = (
|
||||
/obj/effect/light_emitter/fake_outdoors,
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"LK" = (
|
||||
/obj/structure/spacevine{
|
||||
name = "thick vines";
|
||||
opacity = 1
|
||||
},
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 9
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Mx" = (
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/structure/flora/rock/pile/jungle/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Nv" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 5
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Of" = (
|
||||
/obj/structure/flora/bush/large/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 10
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Qt" = (
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/obj/structure/chair/sofa/bench/left,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Qy" = (
|
||||
/obj/structure/flora/bush/large/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"QA" = (
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"RK" = (
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/turf/open/water,
|
||||
/area/misc/hilbertshotel)
|
||||
"RO" = (
|
||||
/obj/structure/flora/bush/jungle/b/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Tf" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 10
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Tr" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/structure/flora/bush/flowers_yw/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"TO" = (
|
||||
/obj/structure/flora/bush/flowers_yw/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Vk" = (
|
||||
/obj/structure/chair/stool/directional/north,
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"Vw" = (
|
||||
/obj/structure/chair/stool/directional/south,
|
||||
/obj/item/instrument/guitar,
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"Vx" = (
|
||||
/obj/structure/flora/bush/flowers_br/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 4
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Wb" = (
|
||||
/obj/structure/chair/stool/directional/west,
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"WX" = (
|
||||
/obj/structure/flora/rock/pile{
|
||||
pixel_x = -3;
|
||||
pixel_y = -4
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Xm" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 5
|
||||
},
|
||||
/obj/structure/flora/bush/jungle/b/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Xz" = (
|
||||
/obj/structure/flora/tree/jungle,
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Yq" = (
|
||||
/obj/structure/flora/rock/pile/style_2,
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"YD" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 5
|
||||
},
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Zq" = (
|
||||
/obj/structure/flora/bush/sparsegrass/style_random,
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"Zv" = (
|
||||
/obj/structure/flora/rock/style_random,
|
||||
/obj/structure/flora/bush/jungle/c/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
|
||||
(1,1,1) = {"
|
||||
vh
|
||||
iF
|
||||
iF
|
||||
iF
|
||||
vh
|
||||
iF
|
||||
Di
|
||||
iF
|
||||
vh
|
||||
iF
|
||||
iF
|
||||
iF
|
||||
iF
|
||||
iF
|
||||
vh
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
iF
|
||||
iF
|
||||
tv
|
||||
mt
|
||||
bC
|
||||
iF
|
||||
rD
|
||||
zx
|
||||
vh
|
||||
iF
|
||||
iF
|
||||
cw
|
||||
Of
|
||||
iF
|
||||
vh
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
iF
|
||||
sI
|
||||
RO
|
||||
yb
|
||||
rC
|
||||
iF
|
||||
EI
|
||||
pg
|
||||
LK
|
||||
aD
|
||||
ez
|
||||
TO
|
||||
Mx
|
||||
vh
|
||||
vh
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
iF
|
||||
uM
|
||||
pW
|
||||
ka
|
||||
RO
|
||||
xy
|
||||
rD
|
||||
rD
|
||||
qK
|
||||
pu
|
||||
rC
|
||||
yb
|
||||
AY
|
||||
vh
|
||||
vh
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
vh
|
||||
gu
|
||||
pW
|
||||
pW
|
||||
pW
|
||||
Qt
|
||||
rD
|
||||
rD
|
||||
Nv
|
||||
QA
|
||||
pW
|
||||
pW
|
||||
xs
|
||||
iF
|
||||
vh
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
vh
|
||||
IB
|
||||
pW
|
||||
rC
|
||||
QA
|
||||
dv
|
||||
rD
|
||||
rD
|
||||
Yq
|
||||
JG
|
||||
ef
|
||||
KS
|
||||
AY
|
||||
iF
|
||||
iF
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
vh
|
||||
Xm
|
||||
pW
|
||||
CZ
|
||||
oy
|
||||
oN
|
||||
rD
|
||||
rD
|
||||
rD
|
||||
Nv
|
||||
RO
|
||||
QA
|
||||
xM
|
||||
vg
|
||||
iF
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
vh
|
||||
vh
|
||||
kr
|
||||
Gx
|
||||
DL
|
||||
rD
|
||||
rD
|
||||
LE
|
||||
rD
|
||||
rD
|
||||
kf
|
||||
QA
|
||||
rC
|
||||
Zv
|
||||
iF
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
vh
|
||||
iF
|
||||
gu
|
||||
Jr
|
||||
DL
|
||||
Vw
|
||||
LE
|
||||
Dg
|
||||
LE
|
||||
Vk
|
||||
IB
|
||||
pW
|
||||
QA
|
||||
js
|
||||
vh
|
||||
"}
|
||||
(10,1,1) = {"
|
||||
vh
|
||||
iF
|
||||
fp
|
||||
pW
|
||||
Tf
|
||||
rD
|
||||
Zq
|
||||
LE
|
||||
GS
|
||||
Jy
|
||||
Hq
|
||||
pW
|
||||
wI
|
||||
iF
|
||||
vh
|
||||
"}
|
||||
(11,1,1) = {"
|
||||
vh
|
||||
iF
|
||||
up
|
||||
lf
|
||||
ka
|
||||
qV
|
||||
rD
|
||||
Wb
|
||||
rD
|
||||
sI
|
||||
KS
|
||||
QA
|
||||
Tr
|
||||
iF
|
||||
vh
|
||||
"}
|
||||
(12,1,1) = {"
|
||||
vh
|
||||
vh
|
||||
KH
|
||||
EQ
|
||||
YD
|
||||
Qy
|
||||
ot
|
||||
mW
|
||||
lO
|
||||
lr
|
||||
QA
|
||||
pW
|
||||
ef
|
||||
Of
|
||||
vh
|
||||
"}
|
||||
(13,1,1) = {"
|
||||
vh
|
||||
vh
|
||||
cP
|
||||
KH
|
||||
EQ
|
||||
eR
|
||||
WX
|
||||
TO
|
||||
QA
|
||||
Qy
|
||||
QA
|
||||
QA
|
||||
QA
|
||||
oK
|
||||
vh
|
||||
"}
|
||||
(14,1,1) = {"
|
||||
vh
|
||||
ri
|
||||
FM
|
||||
KH
|
||||
RK
|
||||
kf
|
||||
QA
|
||||
QA
|
||||
wa
|
||||
QA
|
||||
QA
|
||||
QA
|
||||
Xz
|
||||
iF
|
||||
vh
|
||||
"}
|
||||
(15,1,1) = {"
|
||||
vh
|
||||
vh
|
||||
KH
|
||||
cP
|
||||
RK
|
||||
JL
|
||||
Vx
|
||||
hi
|
||||
Gb
|
||||
rj
|
||||
rj
|
||||
Gb
|
||||
xw
|
||||
iF
|
||||
vh
|
||||
"}
|
||||
(16,1,1) = {"
|
||||
vh
|
||||
vh
|
||||
vh
|
||||
vh
|
||||
vh
|
||||
vh
|
||||
vh
|
||||
iF
|
||||
iF
|
||||
iF
|
||||
iF
|
||||
vh
|
||||
vh
|
||||
vh
|
||||
vh
|
||||
"}
|
||||
@@ -0,0 +1,816 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"aD" = (
|
||||
/obj/structure/flora/rock/pile/jungle/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 8
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"bC" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 10
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"cw" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 9
|
||||
},
|
||||
/obj/structure/flora/rock/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"cP" = (
|
||||
/obj/structure/flora/bush/reed/style_random,
|
||||
/turf/open/water,
|
||||
/area/misc/hilbertshotel)
|
||||
"dv" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/obj/structure/flora/bush/flowers_br/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"ef" = (
|
||||
/obj/structure/flora/rock/pile/style_2,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"ez" = (
|
||||
/obj/structure/flora/bush/large/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 8
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"eR" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/flora/bush/flowers_yw/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"fp" = (
|
||||
/obj/structure/flora/bush/flowers_br/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 5
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"gu" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 1
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"hi" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 4
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"iF" = (
|
||||
/obj/structure/spacevine{
|
||||
name = "thick vines";
|
||||
opacity = 1
|
||||
},
|
||||
/turf/closed/indestructible/rock,
|
||||
/area/misc/hilbertshotel)
|
||||
"js" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 6
|
||||
},
|
||||
/obj/effect/decal/cleanable/ants,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"ka" = (
|
||||
/obj/structure/flora/bush/flowers_pp/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"kf" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"kr" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/flora/rock/pile/jungle/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"lf" = (
|
||||
/obj/structure/flora/rock/pile{
|
||||
pixel_x = -3;
|
||||
pixel_y = -4
|
||||
},
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 5
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"lr" = (
|
||||
/obj/structure/flora/bush/jungle/b/style_random,
|
||||
/obj/structure/flora/bush/flowers_pp/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"lO" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 8
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"mt" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 8
|
||||
},
|
||||
/obj/structure/flora/rock/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"mW" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 8
|
||||
},
|
||||
/obj/structure/flora/bush/sparsegrass/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"ot" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 8
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"oy" = (
|
||||
/obj/structure/fluff/beach_umbrella,
|
||||
/turf/open/floor/carpet/red,
|
||||
/area/misc/hilbertshotel)
|
||||
"oK" = (
|
||||
/obj/structure/flora/bush/jungle/c/style_random,
|
||||
/obj/structure/flora/bush/flowers_pp/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 6
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"oN" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 6
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"pg" = (
|
||||
/obj/structure/spacevine{
|
||||
name = "thick vines";
|
||||
opacity = 1
|
||||
},
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"pu" = (
|
||||
/obj/structure/flora/bush/jungle/a/style_random,
|
||||
/obj/structure/flora/bush/flowers_br/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"pW" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"qK" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/structure/flora/bush/flowers_yw/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"qV" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 10
|
||||
},
|
||||
/obj/structure/flora/bush/flowers_br/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"ri" = (
|
||||
/obj/structure/flora/bush/reed/style_random,
|
||||
/obj/structure/spacevine{
|
||||
name = "thick vines";
|
||||
opacity = 1
|
||||
},
|
||||
/turf/open/water,
|
||||
/area/misc/hilbertshotel)
|
||||
"rj" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 4
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"rC" = (
|
||||
/obj/structure/flora/tree/jungle,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"rD" = (
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"sI" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 9
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"tv" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 9
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"up" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 10
|
||||
},
|
||||
/obj/structure/flora/bush/reed/style_random,
|
||||
/turf/open/water,
|
||||
/area/misc/hilbertshotel)
|
||||
"uM" = (
|
||||
/obj/structure/flora/bush/flowers_yw/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 1
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"vg" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 10
|
||||
},
|
||||
/obj/structure/flora/rock/pile/jungle/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"vh" = (
|
||||
/turf/closed/indestructible/rock,
|
||||
/area/misc/hilbertshotel)
|
||||
"wa" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/structure/flora/bush/flowers_pp/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"wI" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"xs" = (
|
||||
/obj/structure/flora/bush/jungle/c/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"xw" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 6
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"xy" = (
|
||||
/obj/structure/chair/sofa/bench/right,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 10
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"xM" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/structure/flora/bush/flowers_br/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"yb" = (
|
||||
/obj/structure/flora/bush/flowers_br/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"AY" = (
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Cw" = (
|
||||
/obj/structure/flora/rock/pile/jungle/style_random,
|
||||
/obj/item/flashlight/lantern,
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"CZ" = (
|
||||
/obj/item/clothing/head/costume/garland/rainbowbunch,
|
||||
/turf/open/floor/carpet/red,
|
||||
/area/misc/hilbertshotel)
|
||||
"Dg" = (
|
||||
/obj/structure/bonfire/prelit,
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"Di" = (
|
||||
/turf/closed/indestructible/hoteldoor{
|
||||
icon_state = "door_closed";
|
||||
icon = 'icons/obj/doors/puzzledoor/default.dmi'
|
||||
},
|
||||
/area/misc/hilbertshotel)
|
||||
"DL" = (
|
||||
/turf/open/floor/carpet/red,
|
||||
/area/misc/hilbertshotel)
|
||||
"EI" = (
|
||||
/obj/structure/flora/bush/sparsegrass/style_random,
|
||||
/obj/structure/spacevine{
|
||||
name = "thick vines";
|
||||
opacity = 1
|
||||
},
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"EQ" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 10
|
||||
},
|
||||
/turf/open/water,
|
||||
/area/misc/hilbertshotel)
|
||||
"FM" = (
|
||||
/obj/structure/flora/biolumi/lamp/weaklight,
|
||||
/turf/open/water,
|
||||
/area/misc/hilbertshotel)
|
||||
"Gb" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 4
|
||||
},
|
||||
/obj/structure/flora/rock/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Gx" = (
|
||||
/obj/structure/closet/crate/freezer{
|
||||
name = "Cooler"
|
||||
},
|
||||
/obj/item/reagent_containers/cup/glass/bottle/beer,
|
||||
/obj/item/reagent_containers/cup/glass/bottle/beer,
|
||||
/obj/item/reagent_containers/cup/glass/bottle/beer,
|
||||
/obj/item/reagent_containers/cup/glass/bottle/beer/light,
|
||||
/obj/item/reagent_containers/cup/glass/bottle/beer/light,
|
||||
/obj/item/reagent_containers/cup/glass/bottle/beer/light,
|
||||
/obj/item/reagent_containers/cup/soda_cans/cola,
|
||||
/obj/item/reagent_containers/cup/soda_cans/cola,
|
||||
/obj/item/reagent_containers/cup/soda_cans/cola,
|
||||
/obj/item/reagent_containers/cup/glass/waterbottle,
|
||||
/obj/item/reagent_containers/cup/glass/waterbottle,
|
||||
/obj/item/reagent_containers/cup/soda_cans/dr_gibb,
|
||||
/obj/item/reagent_containers/cup/soda_cans/dr_gibb,
|
||||
/obj/item/reagent_containers/cup/soda_cans/blood_tea,
|
||||
/obj/item/reagent_containers/cup/soda_cans/blood_tea,
|
||||
/obj/item/reagent_containers/cup/soda_cans/blood_tea,
|
||||
/obj/item/reagent_containers/cup/soda_cans/dr_gibb,
|
||||
/obj/item/reagent_containers/cup/glass/waterbottle,
|
||||
/obj/item/reagent_containers/cup/soda_cans/lemon_lime,
|
||||
/obj/item/reagent_containers/cup/soda_cans/lemon_lime,
|
||||
/obj/item/reagent_containers/cup/soda_cans/lemon_lime,
|
||||
/obj/item/reagent_containers/cup/soda_cans/melon_soda,
|
||||
/obj/item/reagent_containers/cup/soda_cans/melon_soda,
|
||||
/obj/item/reagent_containers/cup/soda_cans/melon_soda,
|
||||
/turf/open/floor/carpet/red,
|
||||
/area/misc/hilbertshotel)
|
||||
"Hq" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/flora/bush/flowers_br/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"IB" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 1
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Jr" = (
|
||||
/obj/item/storage/basket,
|
||||
/turf/open/floor/carpet/red,
|
||||
/area/misc/hilbertshotel)
|
||||
"Jy" = (
|
||||
/obj/structure/flora/rock/pile/jungle/style_random,
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"JG" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/flora/bush/flowers_pp/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"JL" = (
|
||||
/obj/structure/flora/bush/jungle/c/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 5
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"KH" = (
|
||||
/turf/open/water,
|
||||
/area/misc/hilbertshotel)
|
||||
"KS" = (
|
||||
/obj/structure/flora/bush/jungle/a/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"LK" = (
|
||||
/obj/structure/spacevine{
|
||||
name = "thick vines";
|
||||
opacity = 1
|
||||
},
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 9
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Mx" = (
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/structure/flora/rock/pile/jungle/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Nv" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 5
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Of" = (
|
||||
/obj/structure/flora/bush/large/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 10
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Ov" = (
|
||||
/obj/item/flashlight/lantern,
|
||||
/turf/open/floor/carpet/red,
|
||||
/area/misc/hilbertshotel)
|
||||
"Qt" = (
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/obj/structure/chair/sofa/bench/left,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Qy" = (
|
||||
/obj/structure/flora/bush/large/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"QA" = (
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"RK" = (
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/turf/open/water,
|
||||
/area/misc/hilbertshotel)
|
||||
"RO" = (
|
||||
/obj/structure/flora/bush/jungle/b/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Tf" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 10
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Tr" = (
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/obj/structure/flora/bush/flowers_yw/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"TO" = (
|
||||
/obj/structure/flora/bush/flowers_yw/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Vk" = (
|
||||
/obj/structure/chair/stool/directional/north,
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"Vw" = (
|
||||
/obj/structure/chair/stool/directional/south,
|
||||
/obj/item/instrument/guitar,
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"Vx" = (
|
||||
/obj/structure/flora/bush/flowers_br/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 4
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Wb" = (
|
||||
/obj/structure/chair/stool/directional/west,
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"WX" = (
|
||||
/obj/structure/flora/rock/pile{
|
||||
pixel_x = -3;
|
||||
pixel_y = -4
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Xm" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 5
|
||||
},
|
||||
/obj/structure/flora/bush/jungle/b/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Xz" = (
|
||||
/obj/structure/flora/tree/jungle,
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Yq" = (
|
||||
/obj/structure/flora/rock/pile/style_2,
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"YD" = (
|
||||
/obj/effect/turf_decal/weather/dirt{
|
||||
dir = 5
|
||||
},
|
||||
/obj/structure/flora/bush/fullgrass/style_random,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"Zq" = (
|
||||
/obj/structure/flora/bush/sparsegrass/style_random,
|
||||
/turf/open/misc/dirt/station,
|
||||
/area/misc/hilbertshotel)
|
||||
"Zv" = (
|
||||
/obj/structure/flora/rock/style_random,
|
||||
/obj/structure/flora/bush/jungle/c/style_random,
|
||||
/obj/effect/turf_decal/weather/dirt,
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
|
||||
(1,1,1) = {"
|
||||
vh
|
||||
iF
|
||||
iF
|
||||
iF
|
||||
vh
|
||||
iF
|
||||
Di
|
||||
iF
|
||||
vh
|
||||
iF
|
||||
iF
|
||||
iF
|
||||
iF
|
||||
iF
|
||||
vh
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
iF
|
||||
iF
|
||||
tv
|
||||
mt
|
||||
bC
|
||||
iF
|
||||
rD
|
||||
Cw
|
||||
vh
|
||||
iF
|
||||
iF
|
||||
cw
|
||||
Of
|
||||
iF
|
||||
vh
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
iF
|
||||
sI
|
||||
RO
|
||||
yb
|
||||
rC
|
||||
iF
|
||||
EI
|
||||
pg
|
||||
LK
|
||||
aD
|
||||
ez
|
||||
TO
|
||||
Mx
|
||||
vh
|
||||
vh
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
iF
|
||||
uM
|
||||
pW
|
||||
ka
|
||||
RO
|
||||
xy
|
||||
rD
|
||||
rD
|
||||
qK
|
||||
pu
|
||||
rC
|
||||
yb
|
||||
AY
|
||||
vh
|
||||
vh
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
vh
|
||||
gu
|
||||
pW
|
||||
pW
|
||||
pW
|
||||
Qt
|
||||
rD
|
||||
rD
|
||||
Nv
|
||||
QA
|
||||
pW
|
||||
pW
|
||||
xs
|
||||
iF
|
||||
vh
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
vh
|
||||
IB
|
||||
pW
|
||||
rC
|
||||
QA
|
||||
dv
|
||||
rD
|
||||
rD
|
||||
Yq
|
||||
JG
|
||||
ef
|
||||
KS
|
||||
AY
|
||||
iF
|
||||
iF
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
vh
|
||||
Xm
|
||||
pW
|
||||
CZ
|
||||
oy
|
||||
oN
|
||||
rD
|
||||
rD
|
||||
rD
|
||||
Nv
|
||||
RO
|
||||
QA
|
||||
xM
|
||||
vg
|
||||
iF
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
vh
|
||||
vh
|
||||
kr
|
||||
Gx
|
||||
DL
|
||||
rD
|
||||
rD
|
||||
rD
|
||||
rD
|
||||
rD
|
||||
kf
|
||||
QA
|
||||
rC
|
||||
Zv
|
||||
iF
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
vh
|
||||
iF
|
||||
gu
|
||||
Jr
|
||||
Ov
|
||||
Vw
|
||||
rD
|
||||
Dg
|
||||
rD
|
||||
Vk
|
||||
IB
|
||||
pW
|
||||
QA
|
||||
js
|
||||
vh
|
||||
"}
|
||||
(10,1,1) = {"
|
||||
vh
|
||||
iF
|
||||
fp
|
||||
pW
|
||||
Tf
|
||||
rD
|
||||
Zq
|
||||
rD
|
||||
rD
|
||||
Jy
|
||||
Hq
|
||||
pW
|
||||
wI
|
||||
iF
|
||||
vh
|
||||
"}
|
||||
(11,1,1) = {"
|
||||
vh
|
||||
iF
|
||||
up
|
||||
lf
|
||||
ka
|
||||
qV
|
||||
rD
|
||||
Wb
|
||||
rD
|
||||
sI
|
||||
KS
|
||||
QA
|
||||
Tr
|
||||
iF
|
||||
vh
|
||||
"}
|
||||
(12,1,1) = {"
|
||||
vh
|
||||
vh
|
||||
KH
|
||||
EQ
|
||||
YD
|
||||
Qy
|
||||
ot
|
||||
mW
|
||||
lO
|
||||
lr
|
||||
QA
|
||||
pW
|
||||
ef
|
||||
Of
|
||||
vh
|
||||
"}
|
||||
(13,1,1) = {"
|
||||
vh
|
||||
vh
|
||||
cP
|
||||
KH
|
||||
EQ
|
||||
eR
|
||||
WX
|
||||
TO
|
||||
QA
|
||||
Qy
|
||||
QA
|
||||
QA
|
||||
QA
|
||||
oK
|
||||
vh
|
||||
"}
|
||||
(14,1,1) = {"
|
||||
vh
|
||||
ri
|
||||
FM
|
||||
KH
|
||||
RK
|
||||
kf
|
||||
QA
|
||||
QA
|
||||
wa
|
||||
QA
|
||||
QA
|
||||
QA
|
||||
Xz
|
||||
iF
|
||||
vh
|
||||
"}
|
||||
(15,1,1) = {"
|
||||
vh
|
||||
vh
|
||||
KH
|
||||
cP
|
||||
RK
|
||||
JL
|
||||
Vx
|
||||
hi
|
||||
Gb
|
||||
rj
|
||||
rj
|
||||
Gb
|
||||
xw
|
||||
iF
|
||||
vh
|
||||
"}
|
||||
(16,1,1) = {"
|
||||
vh
|
||||
vh
|
||||
vh
|
||||
vh
|
||||
vh
|
||||
vh
|
||||
vh
|
||||
iF
|
||||
iF
|
||||
iF
|
||||
iF
|
||||
vh
|
||||
vh
|
||||
vh
|
||||
vh
|
||||
"}
|
||||
@@ -0,0 +1,883 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"aY" = (
|
||||
/obj/effect/turf_decal/siding/thinplating_new/light{
|
||||
dir = 6
|
||||
},
|
||||
/obj/structure/window/spawner/directional/south,
|
||||
/obj/structure/window/spawner/directional/east,
|
||||
/obj/structure/table,
|
||||
/obj/item/reagent_containers/cup/glass/coffee{
|
||||
pixel_x = 5;
|
||||
pixel_y = 14
|
||||
},
|
||||
/obj/item/reagent_containers/cup/glass/coffee{
|
||||
pixel_x = -7;
|
||||
pixel_y = 2
|
||||
},
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"bv" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/line,
|
||||
/obj/structure/table,
|
||||
/obj/effect/spawner/random/entertainment/plushie,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"dh" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/line,
|
||||
/obj/item/kirbyplants/random/fullysynthetic,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"ds" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/corner{
|
||||
dir = 4
|
||||
},
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"dA" = (
|
||||
/obj/machinery/computer{
|
||||
icon_screen = "crew"
|
||||
},
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/turf/open/indestructible/white/textured,
|
||||
/area/misc/hilbertshotel)
|
||||
"eu" = (
|
||||
/obj/structure/bed/pod{
|
||||
dir = 4
|
||||
},
|
||||
/obj/item/bedsheet/medical{
|
||||
dir = 4
|
||||
},
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"eR" = (
|
||||
/obj/structure/bookcase/random,
|
||||
/obj/structure/sign/clock/directional/west,
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"gE" = (
|
||||
/obj/structure/table,
|
||||
/obj/machinery/computer/security/telescreen/entertainment/directional/north,
|
||||
/obj/item/toy/cards/deck{
|
||||
pixel_x = -7;
|
||||
pixel_y = 11
|
||||
},
|
||||
/obj/machinery/light/cold/directional/north,
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"gY" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/warning{
|
||||
dir = 1
|
||||
},
|
||||
/turf/open/indestructible/white/smooth_large,
|
||||
/area/misc/hilbertshotel)
|
||||
"hJ" = (
|
||||
/obj/machinery/computer{
|
||||
icon_screen = "medcomp"
|
||||
},
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/turf/open/indestructible/white/textured,
|
||||
/area/misc/hilbertshotel)
|
||||
"jt" = (
|
||||
/turf/open/indestructible/white/smooth_large,
|
||||
/area/misc/hilbertshotel)
|
||||
"kJ" = (
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/obj/machinery/light/cold/directional/south,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"kN" = (
|
||||
/obj/structure/table,
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/obj/item/reagent_containers/cup/glass/waterbottle/large{
|
||||
pixel_x = -7;
|
||||
pixel_y = 7
|
||||
},
|
||||
/obj/machinery/computer/security/telescreen/entertainment/directional/south,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"ld" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/line,
|
||||
/obj/structure/chair{
|
||||
dir = 1
|
||||
},
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"lS" = (
|
||||
/obj/structure/table,
|
||||
/obj/machinery/microwave{
|
||||
pixel_y = 6
|
||||
},
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"mn" = (
|
||||
/obj/structure/table,
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/obj/item/clipboard{
|
||||
pixel_y = 4;
|
||||
pixel_x = -5
|
||||
},
|
||||
/obj/item/paper{
|
||||
pixel_x = -5;
|
||||
pixel_y = 3
|
||||
},
|
||||
/obj/item/pen/blue{
|
||||
pixel_x = -5;
|
||||
pixel_y = 3
|
||||
},
|
||||
/obj/item/clothing/glasses/hud/health{
|
||||
pixel_x = 10;
|
||||
pixel_y = 10
|
||||
},
|
||||
/turf/open/indestructible/white/textured,
|
||||
/area/misc/hilbertshotel)
|
||||
"mL" = (
|
||||
/obj/effect/turf_decal/siding/thinplating_new/light{
|
||||
dir = 4
|
||||
},
|
||||
/obj/item/banner/medical/mundane,
|
||||
/obj/structure/window/spawner/directional/east,
|
||||
/obj/structure/sign/poster/official/random/directional/north,
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"mV" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/line{
|
||||
dir = 1
|
||||
},
|
||||
/obj/item/kirbyplants/random/fullysynthetic,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"nb" = (
|
||||
/turf/closed/indestructible/fakedoor{
|
||||
name = "Rooms 3-11"
|
||||
},
|
||||
/area/misc/hilbertshotel)
|
||||
"nZ" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/warning{
|
||||
dir = 8
|
||||
},
|
||||
/obj/machinery/light/cold/directional/west,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"ph" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/line,
|
||||
/obj/item/kirbyplants/random/fullysynthetic,
|
||||
/obj/structure/sign/poster/official/random/directional/south,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"pZ" = (
|
||||
/turf/closed/indestructible/fakeglass,
|
||||
/area/misc/hilbertshotel)
|
||||
"qR" = (
|
||||
/obj/machinery/vending/imported,
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"rY" = (
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"sn" = (
|
||||
/turf/open/space/basic,
|
||||
/area/misc/hilbertshotel)
|
||||
"so" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/warning{
|
||||
dir = 8
|
||||
},
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"ue" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/corner{
|
||||
dir = 8
|
||||
},
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"uM" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/line,
|
||||
/obj/machinery/light/cold/directional/south,
|
||||
/obj/structure/reagent_dispensers/water_cooler,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"uW" = (
|
||||
/obj/structure/flora/bush/flowers_br/style_random,
|
||||
/obj/structure/flora/bush/flowers_yw/style_random,
|
||||
/obj/structure/flora/bush/flowers_pp/style_random,
|
||||
/obj/structure/window/reinforced/fulltile{
|
||||
icon_state = "reinforced_window-3"
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"uZ" = (
|
||||
/obj/structure/noticeboard/directional/north,
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"vt" = (
|
||||
/obj/machinery/vending/medical,
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/obj/structure/sign/poster/official/random/directional/south,
|
||||
/turf/open/indestructible/white/textured,
|
||||
/area/misc/hilbertshotel)
|
||||
"vJ" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/line{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/chair,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"wh" = (
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/obj/structure/chair{
|
||||
dir = 1
|
||||
},
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"xz" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/line{
|
||||
dir = 6
|
||||
},
|
||||
/obj/item/kirbyplants/random/fullysynthetic,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"zf" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/warning{
|
||||
dir = 9
|
||||
},
|
||||
/obj/item/kirbyplants/random/fullysynthetic,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"zE" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/line{
|
||||
dir = 4
|
||||
},
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"AV" = (
|
||||
/obj/machinery/door/airlock/medical{
|
||||
name = "Nurse Room"
|
||||
},
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/turf/open/indestructible/white/textured,
|
||||
/area/misc/hilbertshotel)
|
||||
"BJ" = (
|
||||
/obj/item/kirbyplants/random/fullysynthetic,
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/turf/open/indestructible/white/textured,
|
||||
/area/misc/hilbertshotel)
|
||||
"CF" = (
|
||||
/obj/machinery/light/cold/directional/west,
|
||||
/obj/machinery/vending/coffee,
|
||||
/obj/structure/sign/poster/official/random/directional/west,
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"DY" = (
|
||||
/obj/effect/turf_decal/siding/thinplating_new/light{
|
||||
dir = 4
|
||||
},
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"Es" = (
|
||||
/obj/structure/table,
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/obj/item/reagent_containers/spray/cleaner{
|
||||
pixel_x = 9;
|
||||
pixel_y = 4
|
||||
},
|
||||
/obj/item/folder/white{
|
||||
pixel_x = -4;
|
||||
pixel_y = 2
|
||||
},
|
||||
/obj/item/clothing/gloves/latex/nitrile{
|
||||
pixel_x = -13
|
||||
},
|
||||
/obj/machinery/digital_clock/directional/south,
|
||||
/turf/open/indestructible/white/textured,
|
||||
/area/misc/hilbertshotel)
|
||||
"ES" = (
|
||||
/obj/item/kirbyplants/random/fullysynthetic,
|
||||
/obj/effect/turf_decal/trimline/blue/filled/line{
|
||||
dir = 10
|
||||
},
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"Fh" = (
|
||||
/obj/item/clothing/suit/toggle/labcoat/hospitalgown,
|
||||
/obj/structure/closet,
|
||||
/obj/item/clothing/glasses/regular/hipster,
|
||||
/obj/item/clothing/shoes/sneakers/white,
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"Ge" = (
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/obj/structure/chair{
|
||||
dir = 4
|
||||
},
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"GK" = (
|
||||
/turf/closed/indestructible/steel,
|
||||
/area/misc/hilbertshotel)
|
||||
"Ht" = (
|
||||
/obj/machinery/door/window/left/directional/west{
|
||||
name = "Nurse Control Windoor"
|
||||
},
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/obj/structure/table/reinforced,
|
||||
/turf/open/indestructible/white/textured,
|
||||
/area/misc/hilbertshotel)
|
||||
"HD" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/warning{
|
||||
dir = 9
|
||||
},
|
||||
/obj/item/banner/medical/mundane,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"Ij" = (
|
||||
/turf/closed/indestructible/hoteldoor{
|
||||
icon_state = "door_closed";
|
||||
icon = 'icons/obj/doors/puzzledoor/default.dmi'
|
||||
},
|
||||
/area/misc/hilbertshotel)
|
||||
"KO" = (
|
||||
/obj/structure/flora/bush/flowers_br/style_random,
|
||||
/obj/structure/flora/bush/flowers_yw/style_random,
|
||||
/obj/structure/flora/bush/flowers_pp/style_random,
|
||||
/obj/structure/window/reinforced/fulltile{
|
||||
icon_state = "reinforced_window-12"
|
||||
},
|
||||
/turf/open/floor/grass,
|
||||
/area/misc/hilbertshotel)
|
||||
"KT" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/line{
|
||||
dir = 6
|
||||
},
|
||||
/obj/item/banner/medical/mundane,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"Lq" = (
|
||||
/obj/structure/sign/departments/medbay/alt,
|
||||
/turf/closed/indestructible/steel,
|
||||
/area/misc/hilbertshotel)
|
||||
"LY" = (
|
||||
/obj/effect/turf_decal/siding/thinplating_new/light{
|
||||
dir = 4
|
||||
},
|
||||
/obj/structure/chair,
|
||||
/obj/structure/window/spawner/directional/east,
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"Mo" = (
|
||||
/obj/structure/chair/office/light{
|
||||
dir = 1
|
||||
},
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/turf/open/indestructible/white/textured,
|
||||
/area/misc/hilbertshotel)
|
||||
"MH" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/line{
|
||||
dir = 8
|
||||
},
|
||||
/obj/machinery/light/cold/directional/west,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"OM" = (
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/obj/machinery/door/airlock/medical{
|
||||
name = "Recovery Room"
|
||||
},
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"PG" = (
|
||||
/turf/open/indestructible/carpet,
|
||||
/area/misc/hilbertshotel)
|
||||
"PM" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/corner,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"PQ" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/warning,
|
||||
/turf/open/indestructible/white/smooth_large,
|
||||
/area/misc/hilbertshotel)
|
||||
"PU" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/line{
|
||||
dir = 4
|
||||
},
|
||||
/obj/item/banner/medical/mundane,
|
||||
/obj/machinery/light/cold/directional/east,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"Qk" = (
|
||||
/obj/structure/closet,
|
||||
/obj/item/clothing/suit/toggle/labcoat/hospitalgown,
|
||||
/obj/item/clothing/glasses/regular/hipster,
|
||||
/obj/item/clothing/shoes/sneakers/white,
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"Qv" = (
|
||||
/turf/closed/indestructible/fakedoor{
|
||||
name = "Recovery Wing Staff Room"
|
||||
},
|
||||
/area/misc/hilbertshotel)
|
||||
"QX" = (
|
||||
/obj/item/kirbyplants/random/fullysynthetic,
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"Ri" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/warning{
|
||||
dir = 8
|
||||
},
|
||||
/turf/open/indestructible/white/smooth_large,
|
||||
/area/misc/hilbertshotel)
|
||||
"Rp" = (
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/obj/machinery/iv_drip,
|
||||
/obj/machinery/digital_clock/directional/south,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"Rv" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/line{
|
||||
dir = 5
|
||||
},
|
||||
/obj/item/kirbyplants/random/fullysynthetic,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"Rx" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/line{
|
||||
dir = 4
|
||||
},
|
||||
/obj/vehicle/ridden/wheelchair{
|
||||
dir = 8
|
||||
},
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"RE" = (
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/obj/vehicle/ridden/wheelchair{
|
||||
dir = 8
|
||||
},
|
||||
/obj/machinery/digital_clock/directional/north,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"RM" = (
|
||||
/obj/item/kirbyplants/random/fullysynthetic,
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/obj/machinery/light/cold/directional/north,
|
||||
/turf/open/indestructible/white/textured,
|
||||
/area/misc/hilbertshotel)
|
||||
"RX" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/warning{
|
||||
dir = 1
|
||||
},
|
||||
/obj/item/kirbyplants/random/fullysynthetic,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"Sb" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/line{
|
||||
dir = 4
|
||||
},
|
||||
/obj/machinery/iv_drip,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"Sh" = (
|
||||
/obj/effect/spawner/structure/window/reinforced,
|
||||
/obj/structure/curtain/bounty,
|
||||
/turf/open/floor/plating,
|
||||
/area/misc/hilbertshotel)
|
||||
"Sr" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/line{
|
||||
dir = 10
|
||||
},
|
||||
/obj/item/banner/medical/mundane,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"Sx" = (
|
||||
/obj/effect/turf_decal/siding/thinplating_new/light,
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"SD" = (
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/turf/open/indestructible/white/textured,
|
||||
/area/misc/hilbertshotel)
|
||||
"SU" = (
|
||||
/obj/structure/table,
|
||||
/obj/item/storage/box/cups{
|
||||
pixel_x = 5;
|
||||
pixel_y = 15
|
||||
},
|
||||
/obj/item/reagent_containers/cup/glass/waterbottle/large{
|
||||
pixel_x = -8;
|
||||
pixel_y = 20
|
||||
},
|
||||
/obj/item/reagent_containers/cup/glass/waterbottle/large{
|
||||
pixel_x = -8;
|
||||
pixel_y = 11
|
||||
},
|
||||
/obj/item/reagent_containers/cup/glass/mug/nanotrasen{
|
||||
pixel_x = 4;
|
||||
pixel_y = 2
|
||||
},
|
||||
/obj/effect/turf_decal/siding/thinplating_new/light,
|
||||
/obj/structure/window/spawner/directional/south,
|
||||
/obj/structure/sign/calendar/directional/west,
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"TB" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/corner{
|
||||
dir = 1
|
||||
},
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"TV" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/line,
|
||||
/obj/machinery/light/cold/directional/south,
|
||||
/obj/structure/chair{
|
||||
dir = 1
|
||||
},
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"Ut" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/line{
|
||||
dir = 8
|
||||
},
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"Ux" = (
|
||||
/obj/machinery/vending/wardrobe/medi_wardrobe/ghost_cafe,
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/turf/open/indestructible/white/textured,
|
||||
/area/misc/hilbertshotel)
|
||||
"UC" = (
|
||||
/obj/structure/table,
|
||||
/obj/item/book/manual/random{
|
||||
pixel_x = -5;
|
||||
pixel_y = 3
|
||||
},
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/obj/item/reagent_containers/cup/glass/mug/coco{
|
||||
pixel_x = 8
|
||||
},
|
||||
/obj/machinery/computer/security/telescreen/entertainment/directional/north,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"Vd" = (
|
||||
/obj/machinery/door/airlock/medical{
|
||||
name = "Recovery Room"
|
||||
},
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"Wi" = (
|
||||
/obj/effect/turf_decal/siding/thinplating_new/light,
|
||||
/obj/structure/chair{
|
||||
dir = 4
|
||||
},
|
||||
/obj/structure/window/spawner/directional/south,
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"WN" = (
|
||||
/obj/structure/chair{
|
||||
dir = 4
|
||||
},
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
"Xk" = (
|
||||
/obj/effect/spawner/structure/window/reinforced,
|
||||
/turf/open/floor/plating,
|
||||
/area/misc/hilbertshotel)
|
||||
"Xw" = (
|
||||
/obj/effect/turf_decal/trimline/blue/filled/warning{
|
||||
dir = 1
|
||||
},
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"Yy" = (
|
||||
/obj/effect/turf_decal/tile/blue/opposingcorners,
|
||||
/obj/machinery/light/cold/directional/north,
|
||||
/turf/open/indestructible/white,
|
||||
/area/misc/hilbertshotel)
|
||||
"YB" = (
|
||||
/obj/structure/chair{
|
||||
dir = 1
|
||||
},
|
||||
/turf/open/indestructible/carpet,
|
||||
/area/misc/hilbertshotel)
|
||||
"ZV" = (
|
||||
/obj/structure/chair{
|
||||
dir = 8
|
||||
},
|
||||
/turf/open/indestructible/hotelwood,
|
||||
/area/misc/hilbertshotel)
|
||||
|
||||
(1,1,1) = {"
|
||||
GK
|
||||
GK
|
||||
GK
|
||||
GK
|
||||
GK
|
||||
GK
|
||||
pZ
|
||||
Ij
|
||||
pZ
|
||||
GK
|
||||
pZ
|
||||
Qv
|
||||
pZ
|
||||
GK
|
||||
GK
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
GK
|
||||
eR
|
||||
qR
|
||||
CF
|
||||
lS
|
||||
SU
|
||||
HD
|
||||
Ri
|
||||
Sr
|
||||
Xk
|
||||
Ux
|
||||
SD
|
||||
vt
|
||||
GK
|
||||
sn
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
GK
|
||||
uZ
|
||||
PG
|
||||
PG
|
||||
PG
|
||||
Sx
|
||||
Xw
|
||||
jt
|
||||
PQ
|
||||
AV
|
||||
SD
|
||||
SD
|
||||
SD
|
||||
KO
|
||||
sn
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
GK
|
||||
WN
|
||||
PG
|
||||
PG
|
||||
PG
|
||||
Sx
|
||||
Xw
|
||||
jt
|
||||
TV
|
||||
Xk
|
||||
RM
|
||||
SD
|
||||
BJ
|
||||
KO
|
||||
sn
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
GK
|
||||
gE
|
||||
YB
|
||||
PG
|
||||
PG
|
||||
Sx
|
||||
Xw
|
||||
jt
|
||||
bv
|
||||
Xk
|
||||
hJ
|
||||
SD
|
||||
mn
|
||||
KO
|
||||
sn
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
GK
|
||||
ZV
|
||||
PG
|
||||
PG
|
||||
PG
|
||||
Wi
|
||||
Xw
|
||||
jt
|
||||
ld
|
||||
Xk
|
||||
dA
|
||||
Mo
|
||||
Es
|
||||
GK
|
||||
sn
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
GK
|
||||
mL
|
||||
DY
|
||||
DY
|
||||
LY
|
||||
aY
|
||||
RX
|
||||
jt
|
||||
dh
|
||||
Lq
|
||||
Xk
|
||||
Ht
|
||||
Xk
|
||||
GK
|
||||
sn
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
pZ
|
||||
zf
|
||||
so
|
||||
so
|
||||
so
|
||||
nZ
|
||||
TB
|
||||
jt
|
||||
ue
|
||||
MH
|
||||
Ut
|
||||
Ri
|
||||
ES
|
||||
KO
|
||||
sn
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
nb
|
||||
gY
|
||||
jt
|
||||
jt
|
||||
jt
|
||||
jt
|
||||
jt
|
||||
jt
|
||||
jt
|
||||
jt
|
||||
jt
|
||||
jt
|
||||
uM
|
||||
KO
|
||||
sn
|
||||
"}
|
||||
(10,1,1) = {"
|
||||
pZ
|
||||
Rv
|
||||
Rx
|
||||
Sb
|
||||
Rx
|
||||
zE
|
||||
ds
|
||||
jt
|
||||
PM
|
||||
zE
|
||||
zE
|
||||
zE
|
||||
KT
|
||||
KO
|
||||
sn
|
||||
"}
|
||||
(11,1,1) = {"
|
||||
GK
|
||||
Sh
|
||||
Sh
|
||||
Sh
|
||||
Sh
|
||||
GK
|
||||
mV
|
||||
jt
|
||||
ph
|
||||
GK
|
||||
Sh
|
||||
Sh
|
||||
Sh
|
||||
GK
|
||||
GK
|
||||
"}
|
||||
(12,1,1) = {"
|
||||
GK
|
||||
UC
|
||||
eu
|
||||
wh
|
||||
QX
|
||||
Sh
|
||||
vJ
|
||||
jt
|
||||
ld
|
||||
Sh
|
||||
QX
|
||||
Ge
|
||||
eu
|
||||
kN
|
||||
GK
|
||||
"}
|
||||
(13,1,1) = {"
|
||||
GK
|
||||
Yy
|
||||
rY
|
||||
rY
|
||||
rY
|
||||
OM
|
||||
gY
|
||||
jt
|
||||
PQ
|
||||
Vd
|
||||
rY
|
||||
rY
|
||||
rY
|
||||
kJ
|
||||
GK
|
||||
"}
|
||||
(14,1,1) = {"
|
||||
GK
|
||||
RE
|
||||
rY
|
||||
rY
|
||||
Fh
|
||||
Sh
|
||||
Rv
|
||||
PU
|
||||
xz
|
||||
Sh
|
||||
Qk
|
||||
rY
|
||||
rY
|
||||
Rp
|
||||
GK
|
||||
"}
|
||||
(15,1,1) = {"
|
||||
GK
|
||||
uW
|
||||
uW
|
||||
uW
|
||||
uW
|
||||
GK
|
||||
uW
|
||||
uW
|
||||
uW
|
||||
GK
|
||||
uW
|
||||
uW
|
||||
uW
|
||||
uW
|
||||
GK
|
||||
"}
|
||||
(16,1,1) = {"
|
||||
sn
|
||||
sn
|
||||
sn
|
||||
sn
|
||||
sn
|
||||
sn
|
||||
sn
|
||||
sn
|
||||
sn
|
||||
sn
|
||||
sn
|
||||
sn
|
||||
sn
|
||||
sn
|
||||
sn
|
||||
"}
|
||||
Reference in New Issue
Block a user